reight

reight

How do I destroy all records?

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

Marked As Solved

reight

reight

Thank you all for your help!

So just to close the case, I ended up using following generic action:

  actions do
    defaults [:create, :read, :update, :destroy]

    action :destroy_all, :term do
      run(fn _, _ ->
        case __MODULE__
             |> MyApp.Repo.to_ecto()
             |> MyApp.Repo.delete_all() do
          {n, result} when is_integer(n) -> {:ok, result}
          error -> {:error, error}
        end
      end)
    end
  end

And that gives me MyApp.Api.Resource.destroy_all()

Also Liked

sbuttgereit

sbuttgereit

I would agree that TRUNCATE would be the first choice if all conditions allow… and in many basic scenarios you’ll be fine; but one needs to use TRUNCATE with 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 DELETE triggers, they will not fire.

  • TRUNCATE is not fully MVCC safe in relation to certain concurrent transactions.

and there are one or two other more subtle issues as well (PostgreSQL: Documentation: 16: TRUNCATE).

Because of the special nature of TRUNCATE and 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 a TRUNCATE operation, but in Oracle you cannot.

So I would advise anyone needing to delete all the data in a table to TRUNCATE if they can, but it’s one of those commands that you really need to understand and use with care.

netto

netto

If anyone else comes across this like I did, there is now a bulk_destroy function.

Where Next?

Popular in Questions Top

Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
siddhant3030
Hi, I have to write a raw query for one of my project. But till now I have used ecto queries and don’t have much experience writing raw ...
New
greenz1
I have a phoenix application from which a user can download multiple(5-6) files of size 1MB. I couldn’t find anything related to sending ...
New
New
freewebwithme
Using vs code and installed ElixirLS: support and debugger. And I got an error popped up on start up says Failed to run ‘elixir’ comma...
New
vegabook
I'm brand new to Phoenix and I have stripped one of the demo applications to the bone. I just want to get an svg up on the screen. Here i...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
jason.o
In the code below, if the create action is not set to accept “extra_key” as an input, it errors out with a message shown above. Is there ...
New
srinivasu
How to handle excepions in elixir? Suppose i have A, B, C ,D, E modules. and each module has get() function. A.get() method will call th...
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New

Other popular topics Top

chrismccord
As promised, the first release candidate of Phoenix 1.3.0 is out! This release focuses on code generators with improved project structure...
New
AstonJ
Posting this to see if we can make things easier for people to get into Neovim. If you use Neovim and have a favourite distro please let ...
New
stefanluptak
Hello everybody, usually, I use a 29" ultra-wide monitor for VSCode which can easily accomodate explorer (files panel) + file with code ...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
Emily
I have VueJS GUIs with the project generated using Webpack. I have Elixir modules that will need to be used by the VueJS GUIs. I fore...
New
Lily
In templates/appointment/index.html.eex: <%= for appointment <- @appointments do %> <tr> <td><%= appoi...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New
hariharasudhan94
lets say i have a sample like a = 20; b = 10; if (a > b) do {:ok, "a"} end if (a < b) do {:ok, b} end if (a == b) do {:ok, "eq...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 47849 226
New

We're in Beta

About us Mission Statement