Elixir alternative to AWS SQS?

I would advise against using Mnesia because in fact Mnesia doesn’t give the ACID guarantees it advertises in the docs, as its not durable and you can loose data with netsplits, due to unexpected failures(it has a delay to write to disk) or when you start it(my case).

Some posts:

http://erlang.2086793.n4.nabble.com/mnesia-sync-transactions-not-fsynced-td4673313.html

I am ditching Mnesia in favor of Mnevis, aka Mnesia with the RAFT consensus:

1 Like