|
|
|
|
|
by barrkel
2288 days ago
|
|
I was reading the details on inverted index usage in Druid, but what is described seems to be bitmap indexes, not inverted indexes. Inverted indexes map distinct values in a column to a list of document ids containing the value. Bitmap indexes map distinct values to an array of booleans the same length as the number of documents, with true for presence and false for absence. Both index types can be highly compressed, of course. Can you clarify what Druid is using? |
|