reight
Hello all,
Is there an idiomatic way to destroy all records in the table with Ash Framework, similar to read_all()?
Or maybe some escape hatch to Ecto?
I tried to do it with manual action, but it requires changeset.
The only way I could think of is to do it with generic action, something like
action :destroy_all, :string do
argument :dummy, :string, allow_nil?: true
run(fn _input, _context ->
read_all!()
|> Enum.map(&destroy!(&1))
{:ok, []}
end)
end
But that’s suboptimal, to say the least.
EDIT: clarification that the question is Ash related
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
egze
Have a look at the docs: Repo.delete_all/2
EDIT: re-read the question and it seems it’s more about the Ash way of doing it. But the docs above is how to do it with raw Ecto, just need to figure out how to call it from Ash. Maybe: Manual Actions — ash v3.29.3
benwilson512
Yeah I am also not super sure about how to do this in Ash, but as a minor database note
TRUNCATEis the ideal way to delete all rows in a table.delete_allhas to essentially write an update for every row, marking it as deleted, where asTRUNCATEbasically just deletes the file associated with the table data.sbuttgereit
I would agree that
TRUNCATEwould be the first choice if all conditions allow… and in many basic scenarios you’ll be fine; but one needs to useTRUNCATEwith some care in more complex scenarios. (Assuming PostgreSQL)There are special considerations if the table is used in other table foreign key references.
If you have
ON DELETEtriggers, they will not fire.TRUNCATEis not fully MVCC safe in relation to certain concurrent transactions.and there are one or two other more subtle issues as well (PostgreSQL: Documentation: 18: TRUNCATE).
Because of the special nature of
TRUNCATEand the efficiency it tries to bring to mass delete operations, there can be similar issues in other vendor’s databases as well. For example, in PostgreSQL, while fully not MVCC safe, you can roll back aTRUNCATEoperation, but in Oracle you cannot.So I would advise anyone needing to delete all the data in a table to
TRUNCATEif they can, but it’s one of those commands that you really need to understand and use with care.zachdaniel
Ash doesn’t have a bulk delete or truncate, so you’d use ecto directly to either delete everything with
TRUNCATEorRepo.delete_allreight
Thank you all for your help!
So just to close the case, I ended up using following generic action:
And that gives me
MyApp.Api.Resource.destroy_all()netto
If anyone else comes across this like I did, there is now a
bulk_destroyfunction.