Questions tagged [time-series-database]

A time series database (TSDB) is a database optimized for processing time series data.

You should tag your question with time-series-database if you are asking a question related to this special form of database system.

A time series database (TSDB) is a database optimized for processing time series data. The main properties of time series data:

  • A time series has a name plus an optional set of (key=value) labels. The name together with labels uniquely identify a time series.
  • A time series contains (timestamp, value) pairs ordered by timestamp. Such pairs are usually named samples.
  • Time series values usually contain numbers, but in general case can contain arbitrary data structures.

Time series databases are usually optimized for the following operations:

  • Continuous data ingestion at a high rate. For example, to collect temperature from millions of sensors across the globe every 10 seconds.
  • OLAP queries over big number of time series and samples on the selected time range. For example, "select the average temperature in USA over the last year grouped by months and cities".
  • Efficient compression of the ingested data, so trillions of samples can be stored in the database.
  • Efficient data removal outside the configured retention.

List of time series database systems

  • Apache Druid
  • Apache Pinot
  • eXtremDB
  • InfluxDB
  • Informix TimeSeries
  • Kx kdb+
  • Kudu
  • MongoDB
  • Prometheus
  • QuestDB
  • RavenDB
  • Riak-TS
  • RRDtool
  • TimescaleDB
  • Whisper

List of time series database extensions

References

58 questions
3
votes
2 answers

Can I use a timeseries DBMS to store video?

From a research study involving participants with a camera, I have chunks of video recording. I have to split them as part of the preprocessing into short sequences of around 5 min long. Each file will be named after its time-stamp in the sequence.…
sAguinaga
  • 131
  • 3
3
votes
1 answer

Looking for a book on optimizing tables and queries for handling time sequence data

I once had an electronic copy of what I understood to be a classic work on optimizing tables and queries for handling timestamped data. It was old-ish when I found it 6-8 years ago. I was sure I also printed and bound a copy but that disappeared…
Chris Nelson
  • 241
  • 2
  • 10
0
votes
0 answers

How to store state and analog signal together in DB

I want to acquire data from 1 proximity and 3-axis accelerometers with 100-150 Hz sampling rate in 16 bit resolution. The proximity sensor is a reference for the rough reconstruction of the angular position of the spinning wheel. Data are time…
stardust
  • 101