Aggregate streaming data
This article goes over how to aggregate streaming data using SQL in Upsolver.
Last updated
Was this helpful?
This article goes over how to aggregate streaming data using SQL in Upsolver.
Last updated
Was this helpful?
An aggregation is the pre-calculated result of a query. Unlike a simple VIEW
, the result of an aggregation is stored in a table.
Aggregations are used when immediate response is needed and the query which the aggregation is based on would take too long to produce a result.
Aggregations have to be refreshed once in a while, but how often depends on its requirements and content. Essentially, an aggregation can be refreshed immediately or deferred; it can be refreshed fully or to a certain point in time.
For the following examples, we will assume the events
stream contains several events, in the following format:
Aggregations are performed using the GROUP BY
statement.
We will demonstrate the creation of a table with unique key using the GROUP BY
statement.
Count all the distinct events per user and per date:
APPEND ON DUPLICATE
This allows queries to be defined the same way they would have been in a non-streaming context.
By setting APPEND ON DUPLICATE
, the table will instead be appended to, resulting in multiple rows with the same keys in the final table.
The following query demonstrates how to use APPEND ON DUPLICATE
:
Using APPEND ON DUPLICATE
will result in having several rows per user_id
and event_time
in the output table, each with a different amount of events.
The WINDOW
clause optionally sets the amount of time until data is expired out of the result.
For example, if it is set to 30 days, data older than 30 days is removed from the output aggregations. This is a sliding window configuration that moves forwards every minute.
To demonstrate this we will use the following query which counts all the events per user and event_time
and aggregate those over a 30 days window:
MAX DELAY
The MAX DELAY
will filter out data that arrives delayed by more than the max delay.
Count all the events per user and event_time
up to 3 days back: