Cassandra/HBase: write-optimized, partitioned, big.
Wide-Column Stores: cassandra/hbase
match the datastore to the access pattern
Excellent writes; reads need partition awareness.
Wide-column stores group columns into rows, organized by partition (where the row lives) and clustering keys (sort within partition). LSM-tree storage absorbs huge write throughput.
Cassandra: leaderless replication, tunable consistency, AP.
Schema is per-table but rows can have varying columns.
Compaction merges SSTables; tune to avoid surprise spikes.
Time-series event ingestion.