Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do secondary indexes work in Cassandra?

Suppose I have a column family:

CREATE TABLE update_audit (   scopeid bigint,   formid bigint,   time timestamp,   record_link_id bigint,   ipaddress text,   user_zuid bigint,   value text,   PRIMARY KEY ((scopeid, formid), time)   ) WITH CLUSTERING ORDER BY (time DESC) 

With two secondary indexes, where record_link_id is a high-cardinality column:

CREATE INDEX update_audit_id_idx ON update_audit (record_link_id);  CREATE INDEX update_audit_user_zuid_idx ON update_audit (user_zuid); 

According to my knowledge Cassandra will create two hidden column families like so:

CREATE TABLE update_audit_id_idx(     record_link_id bigint,     scopeid bigint,     formid bigint,     time timestamp     PRIMARY KEY ((record_link_id), scopeid, formid, time) );  CREATE TABLE update_audit_user_zuid_idx(     user_zuid bigint,     scopeid bigint,     formid bigint,     time timestamp     PRIMARY KEY ((user_zuid), scopeid, formid, time) ); 

Cassandra secondary indexes are implemented as local indexes rather than being distributed like normal tables. Each node only stores an index for the data it stores.

Consider the following query:

select * from update_audit where scopeid=35 and formid=78005 and record_link_id=9897; 
  1. How will this query execute 'under the hood' in Cassandra?
  2. How will a high-cardinality column index (record_link_id) affect its performance?
  3. Will Cassandra touch all nodes for the above query? Why?
  4. Which criteria will be executed first, base table partition_key or secondary index partition_key? How will Cassandra intersect these two results?
like image 490
Aftab Avatar asked Apr 17 '15 07:04

Aftab


People also ask

How do secondary indexes work?

A secondary index is a data structure that contains a subset of attributes from a table, along with an alternate key to support Query operations. You can retrieve data from the index using a Query , in much the same way as you use Query with a table.

How do I add a secondary index in Cassandra?

Using CQL to create a secondary index on a column after defining a table. Using CQL, you can create an index on a column after defining a table. You can also index a collection column. Secondary indexes are used to query a table using a column that is not normally queryable.

How does Cassandra indexing work?

An index provides a means to access data in Cassandra using attributes other than the partition key. The benefit is fast, efficient lookup of data matching a given condition. The index indexes column values in a separate, hidden table from the one that contains the values being indexed.

Does Cassandra support multiple indexes?

As you may know, Cassandra has a second secondary-index implementation, known as SASI.


2 Answers

select * from update_audit where scopeid=35 and formid=78005 and record_link_id=9897; 

How the above query will work internally in cassandra?

Essentially, all data for partition scopeid=35 and formid=78005 will be returned, and then filtered by the record_link_id index. It will look for the record_link_id entry for 9897, and attempt to match-up entries that match the rows returned where scopeid=35 and formid=78005. The intersection of the rows for the partition keys and the index keys will be returned.

How high-cardinality column (record_link_id)index will affect the query performance for the above query?

High-cardinality indexes essentially create a row for (almost) each entry in the main table. Performance is affected, because Cassandra is designed to perform sequential reads for query results. An index query essentially forces Cassandra to perform random reads. As cardinality of your indexed value increases, so does the time it takes to find the queried value.

Does cassandra will touch all nodes for the above query? WHY?

No. It should only touch a node that is responsible for the scopeid=35 and formid=78005 partition. Indexes likewise are stored locally, only contain entries that are valid for the local node.

creating index over high-cardinality columns will be the fastest and best data model

The problem here is that approach does not scale, and will be slow if update_audit is a large dataset. MVP Richard Low has a great article on secondary indexes(The Sweet Spot For Cassandra Secondary Indexing), and particularly on this point:

If your table was significantly larger than memory, a query would be very slow even to return just a few thousand results. Returning potentially millions of users would be disastrous even though it would appear to be an efficient query.

...

In practice, this means indexing is most useful for returning tens, maybe hundreds of results. Bear this in mind when you next consider using a secondary index.

Now, your approach of first restricting by a specific partition will help (as your partition should certainly fit into memory). But I feel the better-performing choice here would be to make record_link_id a clustering key, instead of relying on a secondary index.

Edit

How does having index on low cardinality index when there are millions of users scale even when we provide the primary key

It will depend on how wide your rows are. The tricky thing about extremely low cardinality indexes, is that the % of rows returned is usually greater. For instance, consider a wide-row users table. You restrict by the partition key in your query, but there are still 10,000 rows returned. If your index is on something like gender, your query will have to filter-out about half of those rows, which won't perform well.

Secondary indexes tend to work best on (for lack of a better description) "middle of the road" cardinality. Using the above example of a wide-row users table, an index on country or state should perform much better than an index on gender (assuming that most of those users don't all live in the same country or state).

Edit 20180913

For your answer to 1st question "How the above query will work internally in cassandra?", do you know what's the behavior when query with pagination?

Consider the following diagram, taken from the Java Driver documentation (v3.6):

enter image description here

Basically, paging will cause the query to break itself up and return to the cluster for the next iteration of results. It'd be less likely to timeout, but performance will trend downward, proportional to the size of the total result set and the number of nodes in the cluster.

TL;DR; The more requested results spread over more nodes, the longer it will take.

like image 154
Aaron Avatar answered Oct 08 '22 05:10

Aaron


Query with only secondary index is also possible in Cassandra 2.x

select * from update_audit where record_link_id=9897;

But this has a large impact on fetching data, because it reads all partitions on distributed environment. The data fetched by this query is also not consistent and could not relay on it.

Suggestion:
Use of Secondary index is considered to be a DIRT query from NoSQL Data Model view.

To avoid secondary index, we could create a new table and copy data to it. Since this is a query of the application, Tables are derived from queries.

like image 22
Swam Guru Avatar answered Oct 08 '22 04:10

Swam Guru