You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm try to do a group by query based on tumble window and I ended up with this
create materialized view tumble_v asselectavg(data) from tumble(records, created_at, interval '1' hour) as t
group byt.window_start;
where records are a source from kafka. Then it gets
ERROR: Catalog error: table not found: blocks
saying that tumble function can only be used on tables. But having all stream data loaded into risingwave seems un-efficient. Is there any work-around? Or are there any upcoming release that would make tumble support for source?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm try to do a group by query based on tumble window and I ended up with this
where
records
are a source from kafka. Then it getssaying that tumble function can only be used on tables. But having all stream data loaded into risingwave seems un-efficient. Is there any work-around? Or are there any upcoming release that would make tumble support for source?
Beta Was this translation helpful? Give feedback.
All reactions