Indexes
An index stores the row locations for each value of the target column in order
to provide faster read access. It allows you to bypass full table scans by
directly accessing the relevant rows during queries with WHERE
conditions.
Indexing is available for symbol columns. Index support for other types will be added over time.
#
Index creation and deletionThe following are ways to index a symbol
column:
- At table creation time using CREATE TABLE
- Using
ALTER TABLE ALTER COLUMN ADD INDEX
to index an existing
symbol
column
To delete an index:
#
How indexes workIndex creates a table of row locations for each distinct value for the target symbol. Once the index is created, inserting data into the table will update the index. Lookups on indexed values will be performed in the index table directly which will provide the memory locations of the items, thus avoiding unnecessary table scans.
Here is an example of a table and its index table.
INSERT INTO Table values(B, 1);
would trigger two updates: one for the Table,
and one for the Index.
#
Index capacityWhen a symbol column is indexed, an additional index capacity can be defined to specify how many row IDs to store in a single storage block on disk:
- Server-wide setting:
cairo.index.value.block.size
with a default of256
- Column-wide setting: The
index
option forCREATE TABLE
- Column-wide setting: ALTER TABLE COLUMN ADD INDEX
Fewer blocks used to store row IDs achieves better performance. At the same time over-sizing the setting will result in higher than necessary disk space usage.
note
- The index capacity and symbol capacity are different settings.
- The index capacity value should not be changed, unless an user is aware of all the implications.
#
AdvantagesIndex allows you to greatly reduce the complexity of queries that span a subset
of an indexed column, typically when using WHERE
clauses.
Consider the following query applied to the above table
SELECT sum(Value) FROM Table WHERE Symbol='A';
- Without Index, the query engine would scan the whole table in order to perform the query. It will need to perform 6 operations (read each of the 6 rows once).
- With Index, the query engine will first scan the index table, which is considerably smaller. In our example, it will find A in the first row. Then, the query engine would check the values at the specific locations 1, 2, 4 in the table to read the corresponding values. As a result, it would only scan the relevant rows in the table and leave irrelevant rows untouched.
#
Trade-offsStorage space: The index will maintain a table with each distinct symbol value and the locations where these symbols can be found. As a result, there is a small cost of storage associated with indexing a symbol field.
Ingestion performance: Each new entry in the table will trigger an entry in the Index table. This means that any write will now require two write operations, and therefore take twice as long.
#
Examples#
Table with indexAn example of CREATE TABLE
command creating a table with an index capacity of
128:
#
Index capacityConsider an example table with 200 unique stock symbols and 1,000,000,000 records over time. The index will have to store 1,000,000,000 / 200 row IDs for each symbol, i.e. 5,000,000 per symbol.
- If the index capacity is set to 1,048,576 in this case, QuestDB will use 5 blocks to store the row IDs.
- If the index capacity is set to 1,024 in this case, the block count will be 4,883.