cube icon indicating copy to clipboard operation
cube copied to clipboard

πŸ“Š Cube β€” The Semantic Layer for Building Data Applications

Results 470 cube issues
Sort by recently updated
recently updated
newest added

# Problem Cube Refresh worker's resource consumption is very bursty. When it runs its' periodic refresh, (roughly hourly) it requires a very high amount of compute resources. This "active" period...

question

Hi! It seems that the cube doesn't utilize any pre-aggregations with 2 or more time dimensions ``` dimensions: [ ...... CUBE.user_first_touch_date, ....... ], time_dimension: CUBE.date, ``` ``` EXPLAIN SELECT CAST("public"."analytics_analysis_view"."date"...

question
backend:pre-aggregations
api:sql

**Check List** - [ ] Tests has been run in packages where changes made if available - [ ] Linter has been run for changed code - [ ] Tests...

**Problem** How to use date filters in SQL queries that are generated by pre_aggregations. **Background** I have a very complex SQL query, that runs daily, i.e. to run that SQL...

question

Hey Guys, i try to follow: https://cube.dev/docs/product/data-modeling/concepts/polymorphic-cubes and https://cube.dev/docs/product/data-modeling/concepts/code-reusability-extending-cubes But i get the feeling there is some issue with defining sql and sql table With a Cube like this: ```...

question
data modeling

**Problem** I need a complex filter which based on the documentation I need to use `segments`. The filter that I want to achieve is gonna be look like these: ```...

question
data modeling

When adding a new cube to the schema directory, we have that Cube will automatically update the schema in development mode, but in production mode the new Cube is only...

question

**Problem** Looking into performance of our CubeJs I notice that we often have massive amounts of time spent in schema compile. We are using dynamic schema generation utilizing asyncModel with...

question

**Problem** i am trying to use mongo db with cube. This is my container on docker: ``` cube: container_name: cube image: cubejs/cube ports: - 3001:3000 - 4000:4000 environment: - CUBEJS_DEV_MODE=true...

question
driver:mongobi

**Failed SQL** ``` SELECT date_trunc('month', created_at) AS "time", count(total_count) AS "Count" FROM talents WHERE created_at >= '2019-08-31T22:00:00Z' AND created_at = '2019-08-31T22:00:00Z' and created_at

api:sql