Database / Apache Cassandra Interview Questions
Difference between Memtable and SSTable.
MemTable doesn't store the data. It temporarily accumulates 'write data', while SStable, store the data from Memtable into the Cassandra database. The data stored in SSTable is permanent and cannot be changed.
More Related questions...