Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cassandra and Secondary-Indexes, how do they work internally?

How does a Cassandra Secondary-Index work internally? The docs state it is some kind of Hash Index:

Given i have the colum username="foobar" (Column username will be scondary index) in a CF User with RandomOrderingPartitioner

  1. Is my asumption correct, that cassandra uses a "Distributed Hash Index" (=so the index is not on one single node=the index is splitted)?
  2. On how many nodes are the index-parts held (the same amout as the replicatio factor)?
  3. On which nodes are the index-parts held (does Cassandra split the index by the same logic as the key with RandomOrderingPartitioner)?

  4. In case the index is hold on only one node (and of course replicated), how does cassandra "determin" the node that is responsible for the index (By hashing the columname and then using the randompartitioner logik to determine the node)?

  5. Is it really true, that this index is optimized for low cardinality? If yes, what is a rough estimate ( is there a concrete figure that i can use to judge), that I should not use a secondary index (and rather use a seperate CF for the index)? Or said differently how to calculate the cardinality and make the right decision?

I am trying to understand this.

like image 931
Markus Avatar asked Jun 20 '11 22:06

Markus


Video Answer


1 Answers

Secondary indexes are basically just another column family. They are not directly accessible to users, but you can see statistics via the JMX bean: org.apache.cassandra.db.IndexedColumnFamilies

You can consult the statistics here to gauge the effectiveness of your index as you would a normal column family.

For more details see these previous posts:

How are Cassandra's 0.7 Secondary Indexes stored?

How scalable are automatic secondary indexes in Cassandra 0.7?

And since you have a hector tag, here is a link to the test case for IndexedSlicesQuery: https://github.com/rantav/hector/blob/master/core/src/test/java/me/prettyprint/cassandra/model/IndexedSlicesQueryTest.java

like image 122
zznate Avatar answered Nov 18 '22 09:11

zznate