Feeding aggregate providers from an external database can result in very large queries to be run on this database. Some databases can have trouble processing such large queries. Clustering fields are a way to break down those queries in multiple parts when feeding Atoti Aggregate providers. You can extends the usage of the clustering fields beyond the feeding with theDocumentation Index
Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
Use this file to discover all available pages before exploring further.
UseClusteringFields.ALWAYS database settings.
Clustering fields are set on a table on DirectQuery side.
When feeding an Aggregate Provider, if the computed database query needs to access this table, the query will be split up according to the table clustering fields.
If multiple tables are accessed by the query, the clustering fields from all tables are taken in account to split the query.
A query clustered by too many fields or by fields with a high cardinality can be divided in lots of sub queries.
To avoid creating too many queries on the external database, DirectQuery limits the number of sub queries to 500.This limit can be changed thanks to the parameter
IDatabaseSettings#maxSubQueriesAllowedInMultiStepsQuery(),
which can be set for your specific database in XXXDatabaseSettings, e.g.:
BigqueryDatabaseSettingsClickhouseDatabaseSettingsDatabricksDatabaseSettingsSnowflakeDatabaseSettings- …
- BigQuery
- ClickHouse
- Databricks
- Generic JDBC
- MS SQL
- Redshift
- Snowflake
- Synapse
- BigQuery
- ClickHouse
- Databricks
- Generic JDBC
- MS SQL
- Redshift
- Snowflake
- Synapse
Examples
Example with one table
Consider the following tableSALES.
| SALE_ID | DATE | SHOP | PRODUCT | QUANTITY | UNIT_PRICE |
|---|---|---|---|---|---|
| S0010 | 2022-01-31 | shop_2 | BED_2 | 3 | 150 |
| … | … | … | … | … | … |
sum quantities by product is split up in queries of the form sum quantities by product where date equals ....
Example with multiple tables
Now consider this additional tablePRODUCTS, storing all the products referenced in the SALES table.
| PRODUCT_ID | CATEGORY | SUB_CATEGORY | SIZE | PURCHASE_PRICE | COLOR | BRAND |
|---|---|---|---|---|---|---|
| BED_2 | Furniture | Bed | Single | 127 | red | Mega |
| … | … | … | … | … | … | … |
CATEGORY.
With a query computing the sum of the margins by product, both the SALES and PRODUCTS table will be accessed,
so the two clustering fields DATE and CATEGORY will be used to split the query up.
Example with one table and clustering field cardinality above the limit
Consider the following tableSALES.
| SALE_ID | DATE | SHOP | PRODUCT | QUANTITY | UNIT_PRICE |
|---|---|---|---|---|---|
| S0010 | 2022-01-31 | shop_2 | BED_2 | 3 | 150 |
| … | … | … | … | … | … |
sum quantities by product is split up in queries of the form sum quantities by product where date equals ....
However, as the cardinality of the clustering field DATE is above the limit,
each subqueries will be performed with a condition on several dates, in order to stay within the limit of the number of subqueries.
Considerations
Clustering fields and external database clustering
DirectQuery clustering fields can be chosen independently of any database clustering.Still it can be interesting to match DirectQuery tables clustering fields with the potential clustering already implemented in your external database. This results in better performances for the sub-queries generated.
Clustering fields and Aggregate Provider partitioning
DirectQuery clustering fields can be chosen independently of any configured partitioning for Aggregate Providers. DirectQuery will repartition and reaggregate on the fly if needed.Still it can be interesting to match DirectQuery tables clustering fields with the partitioning of the existing Aggregate Providers. This coherence results in better performances to avoid the cost of repartitioning.
When are clustering fields used
The usage of clustering fields depends on theUseClusteringFields database setting and the type of query.
The table below summarizes the different possibilities:
| Query type | UseClusteringFields.ALWAYS | UseClusteringFields.FEEDING |
|---|---|---|
| discovery | no | no |
| aggregate provider feeding | yes | yes |
| Just In Time cube query | yes | no |
| hierarchy feeding | no | no |
| ad hoc list/distinct query on database | no | no |