RDBMS vs Cassandra
- No Joins #81
- No Referential Integrity
- ie Foreign key & Cascading deletes are not available
- Denormalized
- Can be achieved through,
- Classic Denormalization
- Materialized Views (Starting from Cassandra v3.0)
- Query first Design
- Data Storage Consideration
- In Cassandra, a table might be partitioned across multiple nodes
- A Query that only search for a data in a single partition(Single Node) will be more faster that searching in multiple partition(Multiple nodes) #83
- Sorting Order
- Is fixed in Cassandra (we cannot change the order of data using queries as we can do in RDBMS...Ex ; select * from ... ORDER BY)
- Is determined based on Clustering Columns #84
No comments:
Post a Comment