Index quick reference
Primary indexes
- Accelerate queries at runtime—efficiently prunes ranges of data for reads from Firebolt File Format (F3).
- Defined by you in
CREATE TABLE
clause. Only one per table because of physical sort in F3. Updated automatically with incremental ingestion. - Specify columns frequently used in
WHERE
predicates that drastically filter, in order of filtering effect (highest degree of filtering first). Also specify columns used as join keys. - Sparse indexes behind the scenes—one entry per data block vs. mapping every search key value like dense index, less I/O and maintenance.
- Work with partitions, pruning data after partitioning.
For more information and examples, see Using primary indexes.
Aggregating indexes
- Accelerate queries with aggregate functions—used by query analyzer instead of scanning table to calculate results, like a materialized view but integrated with F3 format.
- Defined by you on fact tables with
CREATE AGGREGATING INDEX
, as many as you want. Built with columns first, like a primary index for pruning, followed by aggregations exactly as they are used in analytics queries. - Best created on an empty fact table, before first
INSERT
. You can useCREATE
on populated fact table (memory-intensive). Only to be used on fact tables, not on dimension tables. - To be used at query runtime, all columns, measures (and aggregations), and join key columns in the query aggregations must in your index definition.
For more information and examples, see Using aggregating indexes.
Join indexes
- Accelerate joins—stored in RAM and used by query execution instead of performing the actual join at runtime.
- This optimization is applied automatically to any join queries for which the right-hand side is directly a table (not a view or a subselect). Note that this does not apply to queries which contain restrictions to right-hand table fields.
- The first run of an eligible query still does the full join computation, but subsequent runs of queries of the same pattern (e.g., may have different restrictions on the left-side) profit from the previously computed “join index” held in RAM.
For more information, see Using join indexes. For examples, see Join indexes in the Firebolt indexes in action blog post.