About writes
To manage and access data in Cassandra, it is important to understand how Casssandra writes and reads data, the hinted handoff feature, areas of conformance and non-conformance to the ACID (atomic, consistent, isolated, durable) database properties. In Cassandra, consistency refers to how up-to-date and synchronized a row of data is on all of its replicas.
Cassandra includes client utilities and application programming interfaces (APIs) for developing applications for data storage and retrieval.
- The role of replication
Cassandra stores replicas on multiple nodes to ensure reliability and fault tolerance. - How Cassandra stores data
A brief description and illustration of how Cassandra stores and distributes data. - Compaction
During compaction, Cassandra combines multiple data files to improve the performance of partition scans and to reclaim space from deleted data. - About index updates
A brief description about index updates.