0 votes
in Cassandra by

Explain What Is Memtable In Cassandra?

1 Answer

0 votes
by

Cassandra writes the data to a in memory structure known as Memtable

It is an in-memory cache with content stored as key/column

By key Memtable data are sorted

There is a separate Memtable for each ColumnFamily, and it retrieves column data from the key

...