Monthly Archives: August 2020
Apache Cassandra Secondary Indices
How are Secondary Indices really stored ? This is based on the article from Datastax found here; https://www.datastax.com/blog/2016/04/cassandra-native-secondary-index-deep-dive Let’s just create a simple table
1 2 3 4 5 |
CREATE TABLE customer ( id int PRIMARY KEY, city text, name text ) |
Or visualized as a table : Column Type Key id int Primary Key city text name … Continue reading
Posted in Cassandra
3 Comments