cube.js schema 预编译处理
在实际开发中,对于schema 检查是很重要的,不然一个异常的schema 会造成整个系统服务的不可用
参考进行schema预编译的处理
- 参考做法
自己定义一个,同时使用schema 编译包提供的方法
import { prepareCompiler as originalPrepareCompiler } from '../../src/compiler/PrepareCompiler';
export const prepareCompiler = (content, options) => originalPrepareCompiler({
localPath: () => __dirname,
dataSchemaFiles: () => Promise.resolve([
{ fileName: 'main.js', content }
])
}, { adapter: 'postgres',
- 参考使用
const { compiler } = prepareCompiler(`
cube('visitors', {
sql: \`
select * from visitors
\`,
measures: {
visitor_count: {
type: 'count',
sql: 'id',
drillMembers: [source, created_at]
},
visitor_revenue: {
type: 'sum',
sql: 'amount',
drillMemberReferences: [source, created_at]
}
},
dimensions: {
source: {
type: 'string',
sql: 'source'
},
created_at: {
type: 'time',
sql: 'created_at'
}
}
})
`);
return compiler.compile();
说明
以上代码来自官方文档还是比较有用的,可以提高系统的稳健性