cube.js 学习cube 的pre-aggregation
Posted rongfengliang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cube.js 学习cube 的pre-aggregation相关的知识,希望对你有一定的参考价值。
我们可以使用cube的pre-aggregation 加速数据的查询,以下为一张来自官方的pre-aggregation 架构
参考架构图
pre-aggregation schema
preAggregations: {
amountByCreated: {
type: `rollup`,
measureReferences: [amount],
timeDimensionReference: createdAt,
granularity: `month`
}
}
参考资料
https://cube.dev/docs/caching
https://cube.dev/docs/pre-aggregations
以上是关于cube.js 学习cube 的pre-aggregation的主要内容,如果未能解决你的问题,请参考以下文章
cube.js 学习cube.js type 以及format 说明