Apache Doris 物化视图的问题

2023-10-12 11:16:09 +08:00
 9921

想创建个分组统计数据行数的物化视图 CREATE MATERIALIZED VIEW view_kafka_yc_gps_info as select user_id, to_date(gdt) as summary_date, count(0) as data_count from kafka_yc_gps_info group by user_id,summary_date order by user_id,summary_date; 报错如下: Execution failed: Error Failed to execute sql: java.sql.SQLException: (conn=142) errCode = 2, detailMessage = The materialized view contain constant expr is disallowed, expr: count(0) 查询语句可以正常执行: select user_id, to_date(gdt) as summary_date, count(0) as data_count from kafka_yc_gps_info group by user_id,summary_date order by user_id,summary_date;

919 次点击
所在节点    程序员
1 条回复
9921
2023-10-12 11:34:43 +08:00
物化视图限制有点多啊,MergeOnWrite table can't create materialized view

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/981254

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX