0 votes
in Cassandra by
How does Cassandra perform write operations?

1 Answer

0 votes
by

Commit log: The Commit log is a crash-recovery mechanism that supports Cassandra’s durability goals

MemTable: MemTable is an in-memory data structure that corresponds to a CQL table

SSTable: The contents of the memtable are flushed to disk in a file called an SSTable.

...