Using pre-aggregations
Pre-aggregations is an implementation of aggregate awareness in Cube. Pre-aggregation tables are materialized query results. Cube can analyze queries against a defined set of pre-aggregation rules to choose the optimal one that will be used to serve a given Cube query instead of going to the data source. If Cube finds a suitable pre-aggregation rule, database querying becomes a multi-stage process:- Cube checks if an up-to-date copy of the pre-aggregation exists.
- Cube will execute a query against the pre-aggregated tables instead of the raw data.
Matching queries
When executing a query, Cube will try to match and fulfill it with a pre-aggregation in the first place. If there’s no matching pre-aggregation, Cube will query the upstream data source instead, unless the rollup-only mode is enabled.Rollup-only mode
In the rollup-only mode, Cube will only fulfill queries using pre-aggregations. To enable the rollup-only mode, use theCUBEJS_ROLLUP_ONLY environment variable.
It can be useful to prevent queries from your end users from ever hitting the
upstream data source, e.g., if you prefer to use your data warehouse only to
build and refresh pre-aggregations and keep it suspended the rest of the time.
Refresh strategy
Refresh strategy can be customized by setting therefresh_key property for the
pre-aggregation.
The default value of refresh_key is
every: 1 hour, if neither of the cubes overrides it’s refreshKey parameter.
It can be redefined either by overriding the default value of
the every property:
sql property
instead, and leaving every unchanged from its default value:
every and sql can be defined together:
every and sql are used together, Cube will run the query from the sql
property on an interval defined by the every property. If the query returns
new results, then the pre-aggregation will be refreshed.
Partitioning
Partitioning is an extremely effective optimization for accelerating pre-aggregations build and refresh time. It effectively “shards” the data between multiple tables, splitting them by a defined attribute. Cube can be configured to incrementally refresh only the last set of partitions through theupdateWindow property. This leads to faster refresh times due to
unnecessary data not being reloaded, and even reduced cost for some databases
like BigQuery or
AWS Athena.
See this recipe for an example of optimized
incremental refresh.
rollup pre-aggregation can be partitioned by time using the
partition_granularity property in a pre-aggregation
definition. In the example below, the
partition_granularity is set to month, which means Cube will generate
separate tables for each month’s worth of data. Once built, it will continue to
refresh on a daily basis the last 3 months of data.
Partitioning by non-time dimension
Cube Store uses an auto-partitioning technique to split Cube logical partitions into multiple physical ones. The partitioning key is the same as the sorting key of an index. Every physical partition is stored as a separate parquet file. Split is performed based on underlying parquet file sizes and rows inside those files. So simplest way to ensure proper partitioning is to introduce an index. For bigger pre-aggregations first columns of an index will determine the partitioning scheme. An interesting consequence of having time dimension partitioning enabled with an index is data partitioned by time and then by sorting the key of an index. It leads to that even in case of optimal index in place querying time is proportional to count of involved time partitions. This issue can be addressed by lambda pre-aggregations. Alternatively, if you want to explicitly introduce key partitioning, you can use multi-tenancy to introduce multiple orchestrator IDs. Each orchestrator ID can use a different pre-aggregation schema, so you may define those based on the partitioning key you want to introduce. This technique, together with multi-router Cube Store approach, allows you to achieve linear scaling on the partitioning key of your choice.Best practices
In general, it’s better to lean towards less partitions, as long as you are satisfied with query speed. For optimal querying performance, partitions should be small enough so that a Cube Store worker can read (scan) a partition in less than 100 milliseconds. The best way to optimize this is to start from a relatively large partition (e.g., yearly or no partition at all if data permits), check what the flame graph in Query History shows, then iterate as needed. For optimal pre-aggregation build performance, you would optimize partition size together with pre-aggregation build concurrency and build time. Smaller partitions with high concurrency would incur significant overhead. For optimal build performance, having 1 Cube Store worker per partition is ideal. However, Cube Store workers can handle up to 4 partitions per worker conucrrently. Since Cube Store workers often max out at 16, this means you should avoid having more than 64 partitions. Any additional partitions would be queued. Keep in mind that indexes essentially multiply the number of partitions that are created, so for example, if you have two indexes, you would want to avoid having more than 32 partitions to avoid queueing. The best way to optimize this is to make refresh keys as infrequent as possible and then use the Build History tab to check build times, along with the Performance Insights page to monitor Cube Store workers load, and iterate as needed.Using indexes
Indexes are sorted copies of pre-aggregation data. When you define a pre-aggregation without any explicit indexes, the default index is created. In this index, dimensions come first, time dimensions come second. When you define additional indexes, you don’t incur any additional costs on the data warehouse side. However, the pre-aggregation build time for a particular pre-aggregation increases with each index because all indexes for pre-aggregation are built during ingestion time.When to use indexes?
At query time, if the default index can’t be selected for a merge sort scan, then a less performant hash aggregation would be used. It usually means that the full table needs to be scanned to get query results. It usually doesn’t make much difference if the pre-aggregation table is only several MBs in size. However, for larger pre-aggregations, indexes are usually required to achieve optimal performance, especially if not all dimensions from a pre-aggregation are used in a particular query.Best practices
Most pre-aggregations represent additive rollups. For such rollups, the rule of thumb is that, for most queries, there should be at least one index that makes a particular query scan very little amount of data, which makes it very fast. (There are exceptions to this rule like top-k queries or queries with only low selectivity range filters. Optimization for these use cases usually involves remodeling data and queries.) To maximize performance, you can introduce an index per each query type so that the set of dimensions used in a query overlaps as much as possible with the set of dimensions in the index. Measures are usually only used in indexes if you plan to filter on a measure value and the cardinality of the possible values of the measure is low. The order in which dimensions are specified in the index is very important; suboptimal ordering can lead to diminished performance. To improve the performance of an index the main thing to consider is its order of dimensions. The rule of thumb for dimension order is as follows:- Dimensions used in high selectivity, single-value filters come first.
- Dimensions used in
GROUP BYcome second. - Everything else used in the query comes in the end, including dimensions used in low selectivity, multiple-value filters.
GROUP BY before
dimensions used in multiple-value filters. However, Cube Store always performs
scans on sorted data, and if GROUP BY matches index ordering, merge
sort-based algorithms are used for querying, which are usually much faster
than hash-based GROUP BY in case index ordering doesn’t match the query.
If in doubt, always use EXPLAIN and EXPLAIN ANALYZE
to figure out the final query plan.
Example
Suppose you have a pre-aggregation that has millions of rows and the following structure:| timestamp | product_name | product_category | zip_code | order_total |
|---|---|---|---|---|
| 2023-01-01 10:00:00 | Keyboard | Electronics | 88523 | 1000 |
| 2023-01-01 10:00:00 | Mouse | Electronics | 88523 | 800 |
| 2023-01-01 10:00:00 | Plastic Chair | Furniture | 88523 | 2000 |
| 2023-01-01 11:00:00 | Keyboard | Electronics | 88524 | 2000 |
| 2023-01-01 11:00:00 | Plastic Chair | Furniture | 88524 | 3000 |
- The
product_categorydimension comes first as it’s used in a single-value filter. - Then, the
zip_codedimension comes second as it’s used inGROUP BY. - The
product_namedimension comes last as it’s used in a multiple-value filter.
category_productname_zipcode_index would look as follows:
| product_category | zip_code | product_name | timestamp | order_total |
|---|---|---|---|---|
| Electronics | 88523 | Mouse | 2023-01-01 10:00:00 | 800 |
| Electronics | 88523 | Plastic Chair | 2023-01-01 10:00:00 | 2000 |
| Furniture | 88523 | Keyboard | 2023-01-01 10:00:00 | 1000 |
| Electronics | 88524 | Keyboard | 2023-01-01 11:00:00 | 2000 |
| Furniture | 88524 | Plastic Chair | 2023-01-01 11:00:00 | 3000 |
Aggregating indexes
Aggregating indexes should be used when there is a wide rollup pre-aggregation, however, only a subset of its dimensions is queried. For example, you have rollup pre-aggregation with 50 dimensions, but any query is just using only 5 of those dimensions. Such a use case would be a sweet spot for the aggregating index. Such indexes would persist only dimensions from the index definition and pre-aggregated measures from the pre-aggregation definition. Cube Store would aggregate over missing dimensions to calculate stored measure values when preparing the aggregating index. During querying time, Cube Store will save time on this aggregation over missing dimensions, as it was done during the preparation step. Queries with the following characteristics can target aggregating indexes:- They cannot make use of any
filtersother than for dimensions that are included in that index. - All dimensions used in the query must be defined in the aggregating index.
type option
in the index definition:
zip_code_index would look as follows:
| zip_code | order_total |
|---|---|
| 88523 | 3800 |
| 88524 | 5000 |
Compaction
Whenever a newer version of pre-aggregation is just built and becomes available its performance would be suboptimal as it’s pending compaction. Most of the essential compaction process usually takes several seconds to several minutes for bigger partitions after pre-aggregation creation, depending on the size of the partition and the Cube Store workers’ processing power available. This compaction process is usually unnoticeable for queries that are optimal in terms of index usage, so it’s always best practice to make sure all of your queries match an index.Inspecting pre-aggregations
Cube Store partially supports the MySQL protocol. This allows you to execute simple queries using a familiar SQL syntax. You can connect using the MySQL CLI client, for example:.cubestore/
folder in the project root during development.
EXPLAIN queries
Cube Store’s MySQL protocol also supports EXPLAIN and EXPLAIN ANALYZE
queries both of which are useful for determining how much processing a query
will require.
EXPLAIN queries show the logical plan for a query:
EXPLAIN ANALYZE queries show the physical plan for the router and all workers
used for query processing:
HashAggregate or InplaceAggregate strategy as well as Merge and MergeSort operators to merge different partitions.
Even for larger datasets, scan operations on sorted data will almost always be much more efficient and faster than hash aggregate as the Cube Store optimizer decides to use those only if there’s an index with appropriate sorting.
So, as a rule of thumb, if you see in your plan PartialHashAggregate and FinalHashAggregate nodes together with Merge operators, those queries most likely perform sub-optimally.
On the other hand, if you see PartialInplaceAggregate, FinalInplaceAggregate, and FullInplaceAggregate together with MergeSort operators in your plan, then there’s a high chance the query performs optimally.
Sometimes, there can be exceptions to this rule.
For example, a total count query run on top of the index will perform HashAggregate strategy on top of MergeSort nodes even if all required indexes are in place.
This query would be optimal as well.
Pre-aggregations storage
Cube uses its own purpose-built pre-aggregations engine: Cube Store. When using Cube Store, pre-aggregation data will be ingested and stored as Parquet files on a blob storage. Then, Cube Store would load that data to execute queries using pre-aggregations. However,original_sql pre-aggregations are stored in the data source
by default. It is not recommended to store original_sql pre-aggregations in Cube Store.
Joins between pre-aggregations
When making a query that joins data from two different cubes, Cube can use pre-aggregations instead of running the base SQL queries. To get started, first ensure both cubes have valid pre-aggregations:orders_rollup pre-aggregation so
that the rollup_join pre-aggregation can work correctly:
rollup_join to the orders cube:
orders.orders_rollup and users.users_rollup, avoiding a database request:
Pre-Aggregation build strategies
For ideal performance, pre-aggregations should be built using a dedicated
Refresh Worker. See here for more details.
Simple
When using the simple strategy, Cube will use the source database as a temporary staging area for writing pre-aggregations to determine column types. The data is loaded back into memory before writing them to Cube Store (or an external database).For larger datasets, we strongly recommend using the Batching
or Export Bucket strategies instead.
Batching
Batching is a more performant strategy where Cube sends compressed CSVs for Cube Store to ingest.Export bucket
When dealing with larger pre-aggregations (more than 100k rows), performance can be significantly improved by using an export bucket. This allows the source database to temporarily materialize the data locally, which is then loaded into Cube Store in parallel:Streaming pre-aggregations
Streaming pre-aggregations are different from traditional pre-aggregations in the way they are being updated. Traditional pre-aggregations follow the “pull” model — Cube pulls updates from the data source based on some cadence and/or condition. Streaming pre-aggregations follow the “push” model — Cube subscribes to the updates from the data source and always keeps pre-aggregation up to date. You don’t need to definerefresh_key for streaming pre-aggregations. Whether
pre-aggregation is streaming or not is defined by the data source.
Currently, Cube supports only one streaming data source -
ksqlDB. All pre-aggregations where
data source is ksqlDB are streaming.
We are working on supporting more data sources for streaming pre-aggregations,
please let us know if you are interested in early
access to any of these drivers or would like Cube to support any other SQL
streaming engine.
Troubleshooting
Unused pre-aggregations
You might find that a pre-aggregation is ignored by Cube. Possible reasons:- A pre-aggregation does not reference any dimensions or measures from a cube where this pre-aggreation is defined. To resolve, move it to another cube.
- A pre-aggregation is defined similarly to another pre-aggregation that has more granular partitions. To resolve, remove one of these pre-aggregations.
Members with unknown types
When building pre-aggregations, you might get an error similar to the this one:fixed in this case).
To resolve, please add a cast to a known type in the sql parameter
of this member. For numeric types, it will most likely be an integer, a float,
or a decimal type, depending on the nature of your data.