Database / Mnesia intermediate to advanced Interview questions
How do you merge two previously-separate Mnesia clusters into one?
Mnesia doesn't provide a single built-in "merge two schemas" command — merging two independently created databases is a deliberate, mostly manual migration process, since each side already has its own complete schema and potentially overlapping table names or keys.
%% typical approach: export data from cluster B, import into cluster A mnesia:backup("/tmp/cluster_b_backup.bak"), %% on cluster A, restore selectively: mnesia:restore("/tmp/cluster_b_backup.bak", [{default_op, keep_tables}]).
The practical approach is usually: back up the data you want to bring over from the smaller/secondary cluster, then restore it into the target cluster with restore options chosen carefully to avoid clobbering tables that already exist there, resolving any key collisions in application code rather than relying on Mnesia to reconcile them automatically. For genuinely live merges (both clusters staying up throughout), this typically means a staged migration table-by-table, rather than attempting a single atomic cutover.
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...
