TimescaleDB introduces Hypertables, a feature that automatically partitions data based on time. While Hypertables behave like regular Postgres tables, they offer specialized functionality tailored for storing and managing time-series data.

According to Timescale’s documentation:

“With hypertables, Timescale makes it easy to improve insert and query performance by partitioning time-series data on its time parameter. Behind the scenes, the database performs the work of setting up and maintaining the hypertable’s partitions. Meanwhile, you insert and query your data as if it all lives in a single, regular PostgreSQL table.”

Now, the next question is: How do we convert regular tables into hypertables?

The process is straightforward. Let’s consider a typical scenario where we have a regular table capturing stock data:

 

CREATE TABLE stocks_real_time (
  time TIMESTAMPTZ NOT NULL,
  symbol TEXT NOT NULL,
  price DOUBLE PRECISION NULL,
  day_volume INT NULL
);

 

To convert this table into a hypertable, we use the create_hypertable function:

SELECT create_hypertable ('stocks_real_time', by_range('time'));

 

In the BY RANGE clause, you can specify the partitioning interval. If you omit this, the default chunk interval is set to 7 days.

 

If you wish to define an interval during creation, you can do so using the interval parameter in the BY RANGE clause:

SELECT create_hypertable('stocks_real_time',by_range('time', INTERVAL '5 minutes'));

 

To modify the interval after creation, employ the set_chunk_time_interval function:

SELECT set_chunk_time_interval('stocks_real_time', INTERVAL '5 minutes');

By default, indexes are automatically generated on the time column, sorted in descending order, when creating a hypertable.However, it’s advisable to create additional indexes based on the queries used.

In conclusion, understanding and utilizing hypertables is crucial for gaining insights into how Timescale efficiently manages time-series data.

Recent Posts

Start typing and press Enter to search