Database / ScyllaDB Interview questions
What is the difference between memtables and SSTables?
| Memtable | SSTable |
| In-memory, mutable structure holding recent writes. | Immutable, on-disk file holding flushed data. |
| Lost on crash unless replayed from the commit log. | Durable; survives restarts. |
| One active memtable per table per shard at a time. | Many SSTables accumulate over time and get merged via compaction. |
Every write lands first in the memtable (alongside the commit log for durability), so recent data is served straight from memory, which is fast. When a memtable fills up, it's flushed to disk as a new, immutable SSTable, and a read for a given row may need to check the memtable plus one or more SSTables, merging results together, since a row's data can be spread across several SSTables written at different times. Compaction periodically merges multiple SSTables into fewer, larger ones to keep this per-read merge work bounded.
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...
