Database / Mnesia intermediate to advanced Interview questions
What is the where_to_read table_info item used for?
mnesia:table_info(Table, where_to_read) returns which node the local Mnesia instance would
currently read that table from — useful for diagnosing read-routing behavior directly, rather than
inferring it indirectly from latency measurements.
mnesia:table_info(session, where_to_read). %% -> node() | 'nonode@nohost' (no copy currently reachable) | some_remote_node@host
If it returns the local node itself, reads are being served locally with no network involved; if it returns a remote node, every read for that table is crossing the network to reach it, which is worth knowing when investigating unexpectedly high read latency on a specific table. It's mainly a diagnostic tool for understanding cluster behavior at a point in time, not something application logic typically branches on directly.
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...
