unfode
Suppose I have two states. In C, I can mutate them atomically (either all or none are mutated) using locks:
bool atomic_mutation() {
lock(state1_lock);
lock(state2_lock);
bool success = mutate1(state1);
if (!success) {
unlock(state1_lock);
unlock(state2_lock);
return false;
}
success = mutate2(state2);
if (!success) {
// revert mutate1(state1)
unlock(state1_lock);
unlock(state2_lock);
return false;
}
unlock(state1_lock);
unlock(state2_lock);
return true;
}
I’m new to Elixir. What I’ve learned is that I normally use an Agent to manage a state. But how to achieve atomicity shown above in Elixir? Thanks!
Edit: I fixed the bug in the C code above as pointed out by @al2o3cr
Trending in Questions
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,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
- #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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
Hey welcome! The short answer is that if you need shared state and you need to control changes to that state then yeah you would use an agent or GenServer (more generally) and put the state inside that.
In general though as a functional language much of your program design will be avoiding such shared state at all.
unfode
I understand that the functional style avoids shared states as much as possible. But shared states can’t be eliminated in many applications, like databases.
Suppose I have two tables in a database. I need to mutate both tables atomically in a transaction. How to achieve this in Elixir using
AgentorGenServer?One solution is to have an
Agentmanage both tables as one state. However, the downside is poor performance — when processA mutates table1 and processB mutates table2, the two mutations can’t be done in parallel, even if they are independent of each other.benwilson512
I would simply use the database itself for this, it will provide a ton of dedicated tooling for it.
LostKobrakai
How do you make sure multiple actors changes are actually independent?
In the end you’ll surely get to the fact that immutability prevents certain optimizations, but generally the question should be how much those matter to the endproduct.
unfode
Good point.
Mutations of two tables seem surely independent. Can you provide an example?
unfode
Maybe someone wants to build a database in Elixir
LostKobrakai
Put each table in a separate process and they’re independent.
dimitarvp
GenServer.:modify_twenty_things_inside_the_state.Or if a database need be involved, they have their own transaction primitives as others said.
al2o3cr
The BEAM provides the infrastructure, but you need to write the code to glue things together into a consistent distributed system - and to be clear, once you have TWO GenServers you’re trying to make change together you’re in distributed-system territory.
For instance, here’s a very basic “table with a lock” GenServer (see below for notes):
There are a LOT of places where this could be work better / handle concurrency better:
lockand pick the next one to reply to inunlock.handle_callthat the implementation ofunlock/1could use to crash the calling process, since unlocking a table that you haven’t locked is a logic errorProcess.monitorcan help with this, at the cost of additional complexity.Expanding this setup to TWO tables adds some extra complications:
if process A takes lock 1 and then tries to take lock 2, while at the same time process B takes lock 2 and tries to take lock 1 the system is in a classic DEADLOCK situation. The default 5s timeout on
GenServer.callwill eventually pick a winner, but real systems will detect this and complaincoordinating changes to ensure that they either all appear or all do not is still just as tricky as always. You’d need a third process to coordinate the
TableWithLocksand roll back changes if a future change fails.Note that even the code in your example does not produce atomicity - if
mutate2returnsfalse, the changes frommutate1are still visible.Solving this problem correctly is capital-H Hard and the solutions are highly sensitive to exactly what tradeoffs your particular application can tolerate.
unfode
Really appreciate your comprehensive answer!