Demo project for online workshop with #RuPostgresTuesday. Watch tons of cool and useful videos on their channel: https://youtube.com/RuPostgres.
Check out the first part: Π-s02e08 Π Π°ΡΠΏΠ°ΠΊΠΎΠ²ΠΊΠ° TimescaleDB 2.0. Π Π³ΠΎΡΡΡΡ β ΠΠ²Π°Π½ ΠΡΡΠ°ΡΠΎΠ². If you need the same project as in the first part check out the branch: PgTuesday_1_17.11.2020.
The second part is already available: Π-s02e09 Timescale Ρ ΠΠ²Π°Π½ΠΎΠΌ ΠΡΡΠ°ΡΠΎΠ²ΡΠΌ. Π§Π°ΡΡΡ 2 β Π½ΡΡΡΠ΅ΠΌ Π³Π»ΡΠ±ΠΆΠ΅: ΡΠΆΠ°ΡΠΈΠ΅ ΠΈ Π²ΠΈΠ·ΡΠ°Π»ΠΈΠ·Π°ΡΠΈΡ. Added corresponding branch for the video: PgTuesday_2_01.12.2020.
The main branch is under development and can be different from the video.
A multi-node setup of TimescaleDB 2.1.1 with PostgreSQL 13.
Initial cluster configuration: single access node (AN) and 2 data nodes (DN) with 1 week interval and replication factor 1.
Docker is required!
Create external network and run application stack.
$ docker network create pg_cluster_network
$ docker-compose up -d
PgAdmin
is available on http://localhost:15432 with credentials: admin@admin.com
/ admin
.
PgAdmin
can render PostGIS
data right on the map.
Or you can use any tool you like (psql
, franchise
, etc) if you don't want to look at geographical beauty ;)
# Access node
host: pg_access_node
port: 5432
username: postgres
password: postgres
# Data node 1
host: pg_data_node_1
port: 5433
username: postgres
password: postgres
# Data node 2
host: pg_data_node_2
port: 5434
username: postgres
password: postgres
At this moment you should to have a running cluster with 1 access node and 2 data nodes.
If you didn't please look at how to run
section and do it firstly.
Also, you need access to all nodes via psql
, pgAdmin
or any other way you like.
Now you can fill sample data (took about 2 minutes on NVMe):
$ gzip -k -d ./data/*csv.gz
$ docker exec -i pg_access_node /bin/sh < ./load-init-data.sh
Run on access node and each data nodes separately:
SELECT count(*) FROM telemetries;
ANALYZE telemetries;
SELECT * FROM approximate_row_count('telemetries');
SELECT DISTINCT imei FROM telemetries ORDER BY imei;
-- Total speed analytics for 1 year
SELECT
time_bucket('30 days', time) AS bucket,
imei,
avg(speed) AS avg,
max(speed) AS max
FROM telemetries
WHERE speed > 0
GROUP BY imei, bucket
ORDER BY imei, bucket;
-- Speed percentiles on all telemetries
SELECT
percentile_cont(0.50) WITHIN GROUP (ORDER BY speed) AS p50,
percentile_cont(0.90) WITHIN GROUP (ORDER BY speed) AS p90,
percentile_cont(0.99) WITHIN GROUP (ORDER BY speed) AS p99
FROM telemetries;
-- Single track points for 1 month
SELECT * FROM telemetries
WHERE imei = '000000000000001'
AND time > '2019-09-01' AND time < '2019-10-01'
ORDER BY time ASC;
-- All tracks for 1 month
SELECT imei, ST_MakeLine(telemetries.geography::geometry ORDER BY time)::geography AS track
FROM telemetries
WHERE time > '2019-09-01' AND time < '2019-10-01'
GROUP BY imei;
-- All vehicle mileages for 1 month
WITH tracks AS (
SELECT imei, ST_MakeLine(telemetries.geography::geometry ORDER BY time)::geography AS track
FROM telemetries
WHERE time > '2019-09-01' AND time < '2019-10-01'
GROUP BY imei
)
SELECT imei, ST_Length(track) / 1000 AS kilometers
FROM tracks
GROUP BY imei, kilometers;
Firstly run the third instance of postgres for new data node:
$ docker volume create pg_data_node_3_data
$ docker run -d \
--name pg_data_node_3 \
--restart=unless-stopped \
-e "POSTGRES_DB=postgres" \
-e "POSTGRES_USER=postgres" \
-e "POSTGRES_PASSWORD=postgres" \
-p 5435:5432 \
--network pg_cluster_network \
-v pg_data_node_3_data:/var/lib/postgresql/data \
-v `pwd`/trust-all.sh:/docker-entrypoint-initdb.d/777_trust.sh \
-v `pwd`/unsafe-boost.sh:/docker-entrypoint-initdb.d/888_boost.sh \
-v `pwd`//init-data-node.sh:/docker-entrypoint-initdb.d/999_cluster.sh \
timescale/timescaledb-postgis:2.1.1-pg13
Now connect a new node to the cluster running command below from the access node:
SELECT * FROM add_data_node('data_node_3', host => 'pg_data_node_3');
SELECT * FROM timescaledb_information.data_nodes;
Then attach new data node to the distributed hypertable:
SELECT * FROM timescaledb_information.hypertables;
SELECT * FROM timescaledb_information.dimensions;
SELECT * FROM attach_data_node('data_node_3', 'telemetries');
SELECT * FROM timescaledb_information.dimensions;
Fill more sample data (took about 1 minutes on NVMe):
$ docker exec -i pg_access_node /bin/sh < ./load-more-data.sh
Run on access node and each data nodes separately:
SELECT count(*) FROM telemetries;
ANALYZE telemetries;
SELECT * FROM approximate_row_count('telemetries');
SELECT DISTINCT imei FROM telemetries ORDER BY imei;
Check old and new data distribution:
SELECT data_nodes, chunk_name, range_start, range_end FROM timescaledb_information.chunks
WHERE range_start < '2020-01-01'
ORDER BY data_nodes ASC, range_start ASC;
SELECT data_nodes FROM timescaledb_information.chunks
WHERE range_start < '2020-01-01'
GROUP BY data_nodes;
SELECT data_nodes, chunk_name, range_start, range_end FROM timescaledb_information.chunks
WHERE range_start > '2020-01-01'
ORDER BY data_nodes ASC, range_start ASC;
SELECT data_nodes FROM timescaledb_information.chunks
WHERE range_start > '2020-01-01'
GROUP BY data_nodes;
Check current database size and compression status:
-- Compression settings on each data node
SELECT * FROM timescaledb_information.compression_settings;
-- Hypertable sizes
SELECT * FROM hypertable_detailed_size('telemetries');
SELECT node_name, pg_size_pretty(total_bytes) AS total
FROM hypertable_detailed_size('telemetries')
ORDER BY node_name ASC;
-- Chunk sizes
SELECT * FROM chunks_detailed_size('telemetries');
SELECT node_name, chunk_name, pg_size_pretty(total_bytes) AS total
FROM chunks_detailed_size('telemetries')
ORDER BY node_name ASC, chunk_name ASC;
Create a dump for single chunk before compression:
$ docker exec -i pg_data_node_2 \
pg_dump -h localhost -p 5432 -U postgres -Fp -v \
-t _timescaledb_internal._dist_hyper_1_1_chunk postgres > ./chunk_before_compression.sql
Apply compression to hypertable:
ALTER TABLE telemetries SET (
timescaledb.compress,
timescaledb.compress_orderby = 'time DESC',
timescaledb.compress_segmentby = 'imei'
);
CALL distributed_exec('SELECT add_compression_policy(''telemetries'', INTERVAL ''30 days'', if_not_exists => TRUE)');
Check database size after applying compression:
-- Compression settings on each data node
SELECT * FROM timescaledb_information.compression_settings;
-- Hypertable compression
SELECT * FROM hypertable_compression_stats('telemetries');
SELECT node_name, pg_size_pretty(before_compression_total_bytes) AS before, pg_size_pretty(after_compression_total_bytes) AS after
FROM hypertable_compression_stats('telemetries')
ORDER BY node_name ASC;
-- Chunk compression
SELECT * FROM chunk_compression_stats('telemetries');
SELECT node_name, chunk_name, pg_size_pretty(before_compression_total_bytes) AS before, pg_size_pretty(after_compression_total_bytes) AS after
FROM chunk_compression_stats('telemetries')
ORDER BY node_name ASC, chunk_name ASC;
Check that data is still available:
-- Single track for 1 month
SELECT imei, ST_MakeLine(telemetries.geography::geometry ORDER BY time)::geography AS track
FROM telemetries
WHERE imei = '000000000000001'
AND time > '2019-09-01' AND time < '2019-10-01'
GROUP BY imei;
Create a dump for single chunk after compression:
$ docker exec -i pg_data_node_2 \
pg_dump -h localhost -p 5432 -U postgres -Fp -v \
-t _timescaledb_internal._dist_hyper_1_1_chunk postgres > ./chunk_after_compression.sql
$ docker exec -i pg_data_node_2 \
psql -v ON_ERROR_STOP=1 -h localhost -p 5432 -U postgres \
-c "SELECT compressed_chunk_id FROM _timescaledb_catalog.chunk WHERE table_name = '_dist_hyper_1_1_chunk'"
$ docker exec -i pg_data_node_2 \
pg_dump -h localhost -p 5432 -U postgres -Fp -v \
-t _timescaledb_internal.compress_hyper_1_1_chunk postgres > ./compressed_chunk.sql
Run Grafana
in docker container:
$ docker run \
--name=grafana \
-p 3000:3000 \
-e "GF_INSTALL_PLUGINS=grafana-worldmap-panel" \
-d grafana/grafana
Open it on http://localhost:3000
with admin / admin
.
Then add TimescaleDB
as new datasource and import dashboard:
-
Configuration / Data Sources / Add data source / Find and select
PostgreSQL
. -
Connect to access node via docker bridge (host=
172.17.0.1
; port=5432
; db=postgres
; user=postgres
; password=postgres
; ssl=off
). -
Select
PostgreSQL
version12
and enableTimescaleDB
support. -
Import dashboard from the file
grafana.json
(Create / Import / Upload JSON file).
# grafana
$ docker stop grafana
$ docker rm grafana
# 3th data node
$ docker stop pg_data_node_3
$ docker rm pg_data_node_3
$ docker volume rm pg_data_node_3_data
# cluster
$ docker-compose down --volumes
# network
$ docker network rm pg_cluster_network
-
Distributed hypertables and multi-node capabilities are currently in
BETA
. This feature is not meant for production use! -
Distributed hypertable
limitations
: https://docs.timescale.com/v2.0/using-timescaledb/limitations. -
TimescaleDB supports
distributing hypertables
across multiple nodes (i.e., a cluster). A multi-node TimescaleDB implementation consists of: one access node to handle ingest, data routing and act as an entry point for user access; one or more data nodes to store and organize distributed data. -
A distributed hypertable exists in a
distributed database
that consists of multiple databases stored across one or more TimescaleDB instances. A database that is part of a distributed database can assume the role of either anaccess node
or adata node
(but not both). While the data nodes store distributed chunks, the access node is the entry point for clients to access distributed hypertables. -
A client connects to an
access node
database. You should not directly access hypertables or chunks on data nodes. Doing so might lead to inconsistent distributed hypertables. -
TimescaleDB can be elastically scaled out by simply
adding data nodes
to a distributed database. TimescaleDB can (and will) adjust the number of space partitions as new data nodes are added. Although existing chunks will not have their space partitions updated, the new settings will be applied to newly created chunks. -
To ensure best performance, you should partition a distributed hypertable by both
time and space
. If you only partition data by time, that chunk will have to fill up before the access node chooses another data node to store the next chunk. Chunks would then be created on data nodes inround-robin
fashion. In case of multiple space partitions,only the first space partition
will be used to determine how chunks are distributed across servers (hash partitioning). Multi-dimensional partitioning with an additional "space" dimension that consistently partitions the data over the data nodes, similar to traditionalsharding
. -
A distributed hypertable can be configured to write each chunk to multiple data nodes in order to replicate data at the chunk level. This
native replication
ensures that a distributed hypertable is protected against data node failures and provides an alternative to fully replicating each data node using streaming replication. When querying a distributed hypertable using native replication, thequery planner
knows how to include only one replica of each chunk in the query plan. The planner can employ different strategies to pick the set of chunk replicas in order to, e.g., evenly spread the query load across the data nodes. Native replication is currentlyunder development
and lacks functionality for a complete high-availability solution. It's recommended keeping the replication factor set at the default value of 1, and instead use streaming replication on each data node. -
The current version does not support altering or inserting data into
compressed
chunks. The data can be queried without any modifications, however if you need tobackfill
or update data in a compressed chunk you will need todecompress
the chunk(s) first. TimescaleDB alsoblock modifying
the schema of hypertables with compressed chunks.