Quickly Building SQL Dashboards for Time Series With Continuous Aggregates

Quickly Building SQL Dashboards for Time Series With Continuous Aggregates

Time-series data provides significant value to organizations because it enables them to analyze important real-time and historical metrics. By showing trends over time, time-series data allows for decision-making based on relations between old and new data. Unsurprisingly, time-series analysis is an extensively developed field of data analysis.

However, data is valuable only if it’s easy to access. That’s where being able to build fast dashboards for time-series data becomes a force multiplier for organizations looking to expose their analytics across teams.

In this post, we will look at Timescale's continuous aggregates to speed up queries that aggregate over time. Additionally, we will walk through building a sample application that leverages this feature specific to TimescaleDB.

What Are Continuous Aggregates?

Continuous aggregates are Timescale's enhanced version of PostgreSQL materialized views. They pre-aggregate your data, just like materialized views, but they are automatically refreshed in the background as new data is added or old data is modified. This means that when you query a continuous aggregate, you will always get up-to-date results.

With continuous aggregates, TimescaleDB can enable real-time dashboards for time-series data in PostgreSQL. By taking the power of PostgreSQL for analytics and revving it up for time-series data, TimescaleDB allows you to generate super-fast dashboards, even when you're handling large amounts of data.

But before we actually work with continuous aggregates, let's see how they operate under the hood.

How continuous aggregates work

The design of continuous aggregates was heavily influenced by PostgreSQL materialized views, but continuous aggregates work like a materialized view on steroids. Under the hood, materialized views are tables that store the results of an aggregate query so that it can be accessed without recomputation, basically caching the query result.

The main problem of materialized views—especially when you're collecting data frequently, such as in the case of time-series data—is that they get out of date as soon as new data is added. You can manually refresh a materialized view, but it will recompute the entire aggregate, slowing down the aggregation process.

Continuous aggregates, on the other hand, store the query results but are automatically updated at a specified time interval with the newest data that just came in. They also keep a log of changes to old data, gradually updating the changed section as part of the scheduled updates defined by the user through a refresh policy.

In sum, continuous aggregates allow for the computational leverage of a PostgreSQL materialized view while staying consistent with updates to the database—a powerful improvement if you're building PostgreSQL dashboards at scale.

A Sample Time-Series Dashboard With Continuous Aggregates

Let’s walk through how continuous aggregates work by exploring a sample application. We first introduced this application in a previous post about simplified time-series analytics using the time_bucket() function, where we showed how you could build flexible graphs using TimescaleDB’s time_bucket() function.

time_bucket()and time_bucket_gapfill() are two critical TimescaleDB time-series functions. Time_bucket() is used for aggregating arbitrarily-sized time periods, and gapfill() is important when your time buckets have missing data or gaps, which is a very common occurrence when capturing thousands of time-series readings per second. Together, both of these are essential for analyzing and visualizing time-series data.

The sample application is written in Python. It essentially scrapes the Open AQ (air quality) API, parses the results, and stores all measurements collected from air quality sensors for all cities in Great Britain. You can check out the code here.

To give you a quick sense of why continuous aggregates are really useful, here’s a query that we use in the Air Quality example:

SELECT
  time_bucket('1 day', time) as bucket,
  parameter_id,
  avg(value) as avg,
  max(value) as max,
  min(value) as min
FROM
  measurements
GROUP BY bucket, parameter_id;

You’ll notice that we are querying across all time and bucketing things by 1-day intervals. The computations of bucketing things by one day, as well as reading all that data off disk, is high. The table at the point at which I’m running this query has ~700k rows. You can imagine how this query could get really slow as you add more data.

Below is an example query plan. Notice how much work is required to compute this query!

To speed this up, I wrote a continuous aggregate.

Now, let’s try to query the same thing but query the measurements_daily table directly. The query plan is greatly simplified because it no longer scans as much data.

Advanced configurations and toggles

By default, continuous aggregates are materialized only (since version 2.11).

timescaledb.materialized_only is true by default, but when set to false, it can unite real-time data from the raw hypertable with the continuous aggregates materialized part.

Check out all the options in the official docs.

After creating the continuous aggregates, if you follow the WITH NO DATA option, it will not update or materialize new data but will wait for a call to refresh the data. Timescale offers a refreshing data policy that allows us to define how often to update the materialized view.

SELECT add_continuous_aggregate_policy('measurements_daily',
 start_offset => INTERVAL '1 month',
 end_offset => INTERVAL '1 day',
 schedule_interval => INTERVAL '1 hour');

After creating the policy, you can check it on the timescaledb.jobs view.

SELECT * FROM timescaledb_information.jobs;
job_id            | 1001
application_name  | Refresh Continuous Aggregate Policy [1001]
schedule_interval | 01:00:00
max_runtime       | 00:00:00
max_retries       | -1
retry_period      | 01:00:00
proc_schema       | _timescaledb_internal
proc_name         | policy_refresh_continuous_aggregate
owner             | postgres
scheduled         | t
config            | {"start_offset": "1 month", "end_offset": "1
day", "mat_hypertable_id": 2}
next_start        | 2024-01-09 12:38:07.014042-04
hypertable_schema | _timescaledb_internal
hypertable_name   | _materialized_hypertable_2
check_schema      | _timescaledb_internal
check_name       | policy_refresh_continuous_aggregate_check

There’s also the refresh_continuous_aggregates function that you can call to materialize the data from a specific time range. Policies have the advantage of running as a background worker, continuously updating as new data comes.

If data changes, the policy also tracks the fragments that need to be updated and runs them together in the next refresh, managing and updating the continuous aggregates.

Next Steps

As you can see, continuous aggregates can be an extremely useful function when you are looking to further reduce disk throughput and compute requirements when running historical aggregate queries.

If you are ready to try it out for yourself, check out this tutorial. If you are new to TimescaleDB, you can try it for free; no credit card required.

Ingest and query in milliseconds, even at terabyte scale.
This post was a collaboration between
5 min read
Product & Engineering
Contributors

Related posts