Cassandra Usage and Needs
- Cassandra lot of API's ready available for map reducing queries (like materialized queries).
- Cassandra uses ring architecture approach, there is no master-slave approach (like HBase). If data is published on the node, the data will get synced with other nodes in the ring architecture, compared to HBase which has a dedicated master node to orchestrate the data into its slaves.
- Write Speed
- Multi Data Center Replication
- Tunable Consistency
- Integrates with JVM because it's written in Java
- Cassandra Query Language is a subset of SQL query (less learning curve)
Cons
- No Ad-Hoc Queries: Cassandra data storage layer is basically a key-value storage system. This means that you must "model" your data around the queries you want to surface, rather than around the structure of the data itself.
- There are no aggregations queries available in Cassandra.
- Not fit for transactional data.