-
Good afternoon. I've been reviewing the official Aggregate Provider documentation, which explains how to customize it to improve queries in the cube, and I have some questions about this topic to understand some concepts and how the application works
On the other hand, while reading the aggregation function customizations, I saw the example of aggregating two vectors |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
There are no default aggregate providers. When
In Atoti Python SDK there is always a JIT aggregate provider fallback, all the items in
Sadly no.
We don't have docs for this yet. You can measure the impact of an aggregate provider configuration change through query plans returned by passing
What do you mean? |
Beta Was this translation helpful? Give feedback.
There are no default aggregate providers. When
Cube.aggregate_providers
is empty, all the aggregates are computed "just in time" by issuing queries to the database.In Atoti Python SDK there is always a JIT aggregate provider fallback, all the items in
Cube.aggregate_providers
are partial providers.Sadly no.
We don't have d…