Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

secondary index on column store dbs

Tags:

store

hbase

Is there any column store database that supports secondary index ? I know HBase does, but it's not there yet.

Haggai.


1 Answers

By storing overlapping projections in different sort orders, column stores based on the C-Store architecture (so, as far as commericial implementations go, Vertica) natively support secondary indexes. See http://db.csail.mit.edu/projects/cstore/vldb.pdf

Also check out MonetDb, which treats "create index" statements as hints for its self-organizing engine.

like image 112
SquareCog Avatar answered Dec 01 '25 15:12

SquareCog