Tuesday 24 July 2018

How Data is Updated in Cassandra?

How Data is Updated in Cassandra?

When you insert a new row in Cassandra, it is added to the database without checking on whether a duplicate record exists. Therefore if a row with same primary key exist, it will be updated otherwise a new row will be created. This process is called upsert.
Cassandra use compaction to merge smaller SSTables into larger SSTables and if during this process two or more versions of the same row is found, Cassandra only writes the most recent version to the new SSTable.

0 comments:

Post a Comment