Database / ScyllaDB Interview questions
How is repair implemented in ScyllaDB?
Repair is ScyllaDB's anti-entropy process for reconciling data drift between replicas that can build up from missed writes, expired hints, or clock/network issues. It compares data across replicas, typically using Merkle trees, hash-tree structures that let two replicas efficiently find which ranges of data actually differ without transferring and comparing every row.
Each replica builds a Merkle tree over its data for a given token range; comparing trees quickly narrows down to the specific sub-ranges that are out of sync, and only those are streamed and reconciled, rather than re-transferring the entire dataset. Repair is typically scheduled and orchestrated cluster-wide through ScyllaDB Manager rather than triggered manually per node, since running it on a rolling, regular basis (well within gc_grace_seconds) is what guarantees that tombstones are consistent across all replicas before they're purged by compaction, preventing deleted data from silently reappearing.
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...
