Database / Mnesia basics Interview questions
How do you replicate a table across multiple Mnesia nodes?
Replication is set up simply by listing more than one node in a table's storage type option when creating (or later reconfiguring) the table — Mnesia then keeps all listed nodes' copies in sync automatically as part of every transaction.
mnesia:create_table(session, [{disc_copies, [nodea@host1, nodeb@host2, nodec@host3]}, {attributes, [id, user, expiry]}]).
Every write inside a transaction is propagated to all listed nodes as part of that same transaction's
commit, using two-phase commit coordination so all replicas agree before the write is considered durable. To
add a new replica to an already-running table, mnesia:add_table_copy/3 lets you extend
replication to another node without recreating the table from scratch, copying the existing data to the new
node as part of that operation.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
