all-things-risingwave

In what cases does RisingWave perform better than FlinkSQL?

I am looking for specific real-world scenarios where RisingWave outperforms FlinkSQL.

Re

Renjie Liu

Asked on Jun 15, 2022

  • RisingWave excels in big window join operations and stateful computations.
  • RisingWave's design is simpler than Flink's, making it potentially more beneficial in terms of maintenance and elasticity.

Example:

SELECT *
FROM table1
JOIN table2
ON table1.id = table2.id
WINDOW TUMBLE (SIZE 10 MINUTES)
Jun 15, 2022Edited by