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

回眸只為那壹抹淺笑 提交于 2019-12-10 02:13:45

问题


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.


回答1:


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



来源:https://stackoverflow.com/questions/6418181/cassandra-and-secondary-indexes-how-do-they-work-internally

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!