Built for append-only timestamped data.
Time-Series Databases: built for append-only timestamped data
match the datastore to the access pattern
TSDBs are great for adds, weak for ad-hoc joins.
Time-series DBs store streams of timestamped points (metrics, sensor data). They optimize for append-only writes, range scans, and rollups via downsampling and retention.
Compression is huge: delta-of-delta + bit-packing on timestamps; gorilla-style float compression.
Retention: keep raw 7d, 1m rollups 30d, 1h rollups 1y.
Prometheus: pull-based, label-rich; InfluxDB and Timescale are push-based and richer for analytical queries.
App metrics with 1M points/sec.