Cassandra
1. Introduction
Apache Cassandra is a typical AP Wide Column store, NoSQL DDBMS. It can handle heavy writes and allows for low latency reads. Every node in a Cassandra cluster has the same role, so there's no single point of failure. Data is distributed across the cluster so each node contains different data. Apple uses more than 100.000 Cassandra nodes! Cassandra has:
Distributed nodes
Linear performance gains through adding nodes
No need for separate caching layer
Flexible schema design
Data compression
Easy replication
Scalability
Fault-tolerance
Tunable consistency
MapReduce support
Query language (CQL)
No special hardware or software
2. CQL
A KEYSPACE is similar to a SCHEMA or DATABASE. A COLUMNFAMILY is comparable to a TABLE.
tombstones
token-ring
Last updated