DRAFTThis page is not published. Only visible in development mode.
RQL pipeline operator

window

Aggregates rows over time windows, such as tumbling intervals.

Syntax

$ RQL

window groups incoming rows into time buckets and aggregates each bucket. The with block configures the window, for example the tumbling interval.

Notes

window is only supported inside deferred views, where the flow engine maintains the buckets incrementally. It cannot run in a plain ad-hoc query, which also means it cannot execute in the browser sandbox on this page.

Related