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
is it possible to build pipelines in a way that enables “real-time” aggregates? For example by combining latest raw data and pre-aggregates:
‘’’
select * from view_counts where ts <= last_incremental_update
union all
select (aggregates that created view_counts) from raw_views where ts > last_incremental_update
‘’’