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

1 Answer

0 votes
by

Cassandra performs the write function by applying two commits:

First commit is applied on disk and then second commit to an in-memory structure known as memtable.

When the both commits are applied successfully, the write is achieved.

Writes are written in the table structure as SSTable (sorted string table).

Related questions

0 votes
asked Jan 31, 2020 in Cassandra by MBarbieri
0 votes
asked Jan 31, 2020 in Cassandra by MBarbieri
...