Google News
logo
Cassandra - Interview Questions
Explain the concept of compaction in Cassandra.
Compaction refers to a maintenance process in Cassandra, in which the SSTables are reorganized for data optimization of data structures on the disk. The compaction process is useful during interacting with memtables. There are two types of compaction in Cassandra.
 
* Minor compaction : It gets started automatically when a new SSTable is created. Here, Cassandra condenses all the equally sized SSTables into one.
 
* Major compaction : It is triggered manually using the nodetool. It compacts all SSTables of a column family into one.
Advertisement