fireproofsocks
A fairly simple use-case: a user has one or more email addresses, stored in the database in 2 separate tables (users, emails) such that the emails table has a foreign key for user_id. (In reality, my use case is more complex, but this illustrates the problem).
Ecto.Multi lets us create a single transaction for adding both the user record and an email record, and we can rollback if either one of those operations fail. I’m looking at the docs for the run/3 and run/5 functions Ecto.Multi — Ecto v3.14.0 but I can’t figure out how these are supposed to be used. From the docs, I’m not at all clear on what value the run function is supposed to return or how that gets ingested by the next operation.
I know I could (sometimes) do this with a single insert operation by leveraging the relationships defined in the schema, but I’m more interested in the principle of the thing.
Thanks as always!
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
abitdodgy
Edit: I’d use @idi527’s example as it’s much more idiomatic.
Here’s a contrived example that should give you the general idea.
When you use
Multi.run, you tag the operation using the second argument. For example, the|> Ecto.Multi.run(:user ...makes the result ofcreate_useravailable under the:userkey in the next the function.idi527
create_user!(user_params)andcreate_email!(user, email_params)would need to return{:ok, resource}or{:error, reason}, so these are unlikely to be “bang” operations.And the last
|> Repo.insert()would need to be replaced withRepo.transaction().@fireproofsocks note that
Multi.runs are not automatically rolled back on errors, I’d probably use inserts instead. Modifying @abitdodgy’s example:abitdodgy
Good catch. I just cooked that example up!
LostKobrakai
Are you sure? A Multi is executed in a transaction and for as long as the command in a Multi.run does only cause side effects to the db and nothing else it should just be rolled back like any other db operation, which happened in that transaction. I‘ve even some places in my projects, where Multis are effectively nested, as the inner multis are executed in named functions which a outer multi composes.
OvermindDL1
Precisely, DB actions are rolled back because of a transaction, but
run/3,5is often used to perform non-db actions that need to be run only if the DB succeeds, however there is not version ofrun/?that allows you to pass both a ‘do’ and an ‘undo’ function, which would be a huge help personally. as right now you have to check it ‘after’ runningRepo.transaction, thus meaning the actions of the multi have to ‘leak’ out of where they are defined. We could really use arun/4;8as well to support both a do and undo…LostKobrakai
How would you ensure that the cleanup doesn’t fail? For the database part it’s a guarantee of the database, but for other side effects ecto cannot do that.
Ecto.Multi.runexist because before ecto 3 you could only pass a callback toEcto.Multi.runand it’s the only way to compose function which do their own database operations.OvermindDL1
That would be on the onus of the one writing their own cleanup function. Some things are just not undoable of course, thus keep using the currently existing functions for those.
LostKobrakai
That’s exactly why
Ecto.Multiis not the tool to use imo. You’re no longer orchestrating database operations within a transaction, but arbitrary operations. This is a different requirement, which should be handled by a more appropriate tool like sage.OvermindDL1
Well in my case I’m orchestrating things that need to stay in sync between 2 different databases and an LDAP system, where if any of them fail I can and do need to roll them all back. It’s still a database transaction, just spread across 3 databases (one of which is not transactional, LDAP, so have to roll it back manually)… ^.^;
What is this sage thing and most curiously how would it handle this?
LostKobrakai
https://github.com/Nebo15/sage