TimescaleDB
An open-source time-series SQL database powered by PostgreSQL.
Why consider TimescaleDB?
TimescaleDB is an open-source time-series SQL database built as an extension for PostgreSQL. It provides automatic chunk partitioning (hypertables), continuous aggregates, and columnar compression.
Learn TimescaleDB by building
Practical setup notes, real use cases, and copy-ready examples in one focused guide.
In this guide3 sections
Overview of TimescaleDB
TimescaleDB combines the full SQL ecosystem and relational integrity of PostgreSQL with high write throughput and analytical compression for time-series workloads.
Running with Docker
docker run -d \ --name timescaledb \ -p 5432:5432 \ -e POSTGRES_PASSWORD=password \ timescale/timescaledb:latest-pg16Creating a Hypertable
CREATE TABLE sensor_data ( time TIMESTAMPTZ NOT NULL, sensor_id INTEGER, temperature DOUBLE PRECISION);SELECT create_hypertable('sensor_data', by_range('time'));TimescaleDB is available under the Timescale License.
Related tools
More options with a similar category or technology profile.
Dapr CLI
Command-line tool for managing Dapr distributed application runtime environments and sidecars.
bpytop
Python port of bashtop with game-like UI, responsive mouse support, and hardware sensors.
bashtop
Linux resource monitor showing usage and stats for processor, memory, disks, network, and processes.
SchemaHero
Kubernetes-native declarative database schema management and table migration operator.