cube
cube copied to clipboard
📊 Cube — The Semantic Layer for Building Data Applications
Cube supports pre-aggregating data by a [time dimension](https://cube.dev/docs/reference/data-model/pre-aggregations#time_dimension) with respect to a chosen [granularity](https://cube.dev/docs/reference/data-model/pre-aggregations#granularity). Currently, the following granularities are supported: `second`, `minute`, `hour`, `day`, `week`, `month`, `quarter`, and `year`. We...
Cube provides unmatched querying performance thanks to its caching layer and [pre-aggregations](https://cube.dev/docs/product/caching/using-pre-aggregations) in particular. We would like to ensure that the [post-aggregation engine](https://github.com/cube-js/cube/issues/8486) is able to leverage pre-aggregations. It's currently...
Cube provides rich [data modeling](https://cube.dev/docs/product/data-modeling/concepts) capabilities and supports [various use cases](https://cube.dev/docs/guides/recipes#data-modeling). We would like to level up Cube's data modeling with the _post-aggregation engine_ that would allow for further manipulations...
This is meta-issue to track features that are part of Cube Core roadmap. **Planned** - Related to data modeling: - #8486 - #8487 - #8489 - Related to the SQL...
**Failed SQL** Currently, one can't have a measure of type `number` with `sql` like `VARIANCE(numeric_column)` and use it with the SQL API if [query pushdown](https://cube.dev/docs/product/apis-integrations/sql-api/query-format#query-pushdown) is enabled. A query with...
**Check List** - [ ] Tests has been run in packages where changes made if available - [x] Linter has been run for changed code - [ ] Tests for...
I am trying to work on a scenario in which several dimension should be calculated based sub query of another cube. When propagating filters to the sub_query, I want to...
I am using the below code to test multitenancy in cube cloud , I have two catalog which i pass as the customer_groupd_code and my cube.py settings is this ```...
**Data model** Consider the following data model: ```yaml cubes: - name: employees sql: > SELECT 1 AS id, 'Ali' AS first_name, 'Los Gatos' AS city UNION ALL SELECT 2 AS...
**Describe the bug** I would like to move some code out of the cube.py file as it becomes very large and hard to maintain. But I fail to make it...