I want to understand how RisingWave handles data storage for tables and sources, specifically in terms of storing data in S3 and managing hot/recent data in memory.
Robert Gargalac
Asked on Apr 01, 2024
table
and source
depends on the need for performance or reduced cost.source
avoids persisting data but may have lower performance if the source is referenced in other queries.table
provides better performance but requires storing data.