增量流计算功能

1 min read
RisingWave
支持incremental material view
CREATE MATERIALIZED VIEW average_exam_scores AS
SELECT
exam_id,
AVG(score) AS average_score,
COUNT(score) AS total_scores
FROM
exam_scores
GROUP BY
exam_id;
Flink SQL
支持 IMV
FLINK CDC Source
FLINK SQL Sink
0
Subscribe to my newsletter
Read articles from 曲昭 directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
