Comparison

Known Time Series Database

As the time series data becomes more and more important, several open sourced time series databases are introduced to the world. However, few of them are developed for IoT or IIoT (Industrial IoT) scenario in particular.

3 kinds of TSDBs are compared here.

  • InfluxDB - Native Time series database

    InfluxDB is one of the most popular TSDBs.

    Interface: InfluxQL and HTTP API

  • OpenTSDB and KairosDB - Time series database based on NoSQL

    These two DBs are similar, while the first is based on HBase and the second is based on Cassandra. Both of them provides RESTful style API.

    Interface: Restful API

  • TimesacleDB - Time series database based on Relational Database

    Interface: SQL

Prometheus and Druid are also famous for time series data management. However, Prometheus focuses data collection, data visualization and alert warnings. Druid focuses on data analysis with OLAP workload. We omit them here.

Comparison

The above time series databases are compared from two aspects: the feature comparison and the performance comparison.

Feature Comparison

I list the basic features comparison of these databases.

Legend:

  • O: big support greatly
  • o: support
  • x: not support
  • 😦 : support but not very good
  • ?: unknown

Basic Features

TSDBIoTDBInfluxDBOpenTSDBKairosDBTimescaleDB
OpenSourceooooo
SQL-likeooxxO
Schema“Tree-based, tag-based”tag-basedtag-basedtag-basedRelational
Writing out-of-order dataooooo
Schema-lessooooo
Batch insertionooooo
Time range filterooooo
Order by timeOoxxo
Value filterooxxo
DownsamplingOoooo
FillOooxo
LIMITooooo
SLIMITooxx?
Latest valueOooxo

Details

  • OpenSource:

    • IoTDB uses Apache License 2.0.
    • InfluxDB uses MIT license. However, the cluster version is not open sourced.
    • OpenTSDB uses LGPL2.1, which is not compatible with Apache License.
    • KairosDB uses Apache License 2.0.
    • TimescaleDB uses Timescale License, which is not free for enterprise.
  • SQL like:

    • IoTDB and InfluxDB support SQL like language. In addition, the integration of IoTDB and Calcite is almost done (a PR has been submitted), which means IoTDB will support Standard SQL soon.
    • OpenTSDB and KairosDB only support Rest API, while IoTDB also supports Rest API (a PR has been submitted).
    • TimescaleDB uses the SQL the same as PG.
  • Schema:

    • IoTDB: IoTDB proposes a Tree based schemaComparison - 图1 (opens new window). It is quite different from other TSDBs. However, the kind of schema has the following advantages:

      • In many industrial scenarios, the management of devices are hierarchical, rather than flat. That is why we think a tree based schema is better than tag-value based schema.

      • In many real world applications, tag names are constant. For example, a wind turbine manufacturer always identify their wind turbines by which country it locates, the farm name it belongs to, and its ID in the farm. So, a 4-depth tree (“root.the-country-name.the-farm-name.the-id”) is fine. You do not need to repeat to tell IoTDB the 2nd level of the tree is for country name, the 3rd level is for farm id, etc.

      • A path based time series ID definition also supports flexible queries, like “root.*.a.b.*“, where * is wildcard character.

    • InfluxDB, KairosDB, OpenTSDB are tag-value based, which is more popular currently.

    • TimescaleDB uses relational table.

  • Order by time:

    Order by time seems quite trivial for time series database. But… if we consider another feature, called align by time, something becomes interesting. And, that is why we mark OpenTSDB and KairosDB unsupported.

    Actually, in each time series, all these TSDBs support order data by timestamps.

    However, OpenTSDB and KairosDB do not support order data from different timeseries in the time order.

    Ok, consider a new case: I have two time series, one is for the wind speed in wind farm1, another is for the generated energy of wind turbine1 in farm1. If we want to analyze the relation between the wind speed and the generated energy, we have to know the values of both at the same time. That is to say, we have to align the two time series in the time dimension.

    So, the result should be:

    timestampwind speedgenerated energy
    15.013.1
    26.013.3
    3null13.1

    or,

    timestampseries namevalue
    1wind speed5.0
    1generated energy13.1
    2wind speed6.0
    2generated energy13.3
    3generated energy13.1

Though the second table format does not align data by the time dimension, it is easy to be implemented in the client-side, by just scanning data row by row.

IoTDB supports the first table format (called align by time), InfluxDB supports the second table format.

  • Downsampling:

    Downsampling is for changing the granularity of timeseries, e.g., from 10Hz to 1Hz, or 1 point per day.

    Different from other systems, IoTDB downsamples data in real time, while others serialized downsampled data on disk.
    That is to say,

    • IoTDB supports adhoc downsampling data in arbitrary time. e.g., a SQL returns 1 point per 5 minutes and start with 2020-04-27 08:00:00 while another SQL returns 1 point per 5 minutes + 10 seconds and start with 2020-04-27 08:00:01. (InfluxDB also supports adhoc downsampling but the performance is ….. hm)

    • There is no disk loss for IoTDB.

  • Fill:

    Sometimes we thought the data is collected in some fixed frequency, e.g., 1Hz (1 point per second). But usually, we may lost some data points, because the network is unstable, the machine is busy, or the machine is down for several minutes.

    In this case, filling these holes is important. Data scientists can avoid to many so called dirty work, e.g., data clean.

    InfluxDB and OpenTSDB only support using fill in a group by statement, while IoTDB supports to fill data when just given a particular timestamp. Besides, IoTDB supports several strategies for filling data.

  • Slimit:

    Slimit means return limited number of measurements (or, fields in InfluxDB). For example, a wind turbine may have 1000 measurements (speed, voltage, etc..), using slimit and soffset can just return a part of them.

  • Latest value:

    As one of the most basic timeseries based applications is monitoring the latest data. Therefore, a query to return the latest value of a time series is very important. IoTDB and OpenTSDB support that with a special SQL or API, while InfluxDB supports that using an aggregation function. (the reason why IoTDB provides a special SQL is IoTDB optimizes the query expressly.)

Conclusion:

Well, if we compare the basic features, we can find that OpenTSDB and KairosDB somehow lack some important query features. TimescaleDB can not be freely used in business. IoTDB and InfluxDB can meet most requirements of time series data management, while they have some difference.

Advanced Features

I listed some interesting features that these systems may differ.

TSDBIoTDBInfluxDBOpenTSDBKairosDBTimescaleDB
Align by timeOoxxo
CompressionO😦😦😦😦
MQTT supportOoxx😦
Run on Edge-side DeviceOox😦o
Multi-instance SyncOxxxx
JDBC Driveroxxxx
Standard SQLoxxxO
Spark integrationOxxxx
Hive integrationOxxxx
Writing data to NFS (HDFS)Oxoxx
Flink integrationOxxxx
  • Align by time: have been introduced. Let’s skip it..

  • Compression:

    • IoTDB supports many encoding and compression for time series, like RLE, 2DIFF, Gorilla, etc.. and Snappy compression. In IoTDB, you can choose which encoding method you want, according to the data distribution. For more info, see hereComparison - 图2 (opens new window).
    • InfluxDB also supports encoding and compression, but you can not define which encoding method you want. It just depends on the data type. For more info, see hereComparison - 图3 (opens new window).
    • OpenTSDB and KairosDB use HBase and Cassandra in backend, and have no special encoding for time series.
  • MQTT protocol support:

    MQTT protocol is an international standard and widely known in industrial users. only IoTDB and InfluxDB support user using MQTT client to write data.

  • Running on Edge-side Device:

    Nowdays, edge computing is more and more popular, which means the edge device has more powerful computational resources. Deploying a TSDB on the edge side is useful for managing data on the edge side and serve for edge computing. As OpenTSDB and KairosDB rely another DB, the architecture is heavy. Especially, it is hard to run Hadoop on the edge side.

  • Multi-instance Sync:

    Ok, now we have many TSDB instances on the edge-side. Then, how to upload their data to the data center, to form a … data lake (or ocean, river,…, whatever). One solution is to read data from these instances and write the data point by point to the data center instance. IoTDB provides another choice, which is just uploading the data file into the data center incrementally, then the data center can support service on the data.

  • JDBC driver:

    Now only IoTDB supports a JDBC driver (though not all interfaces are implemented), and makes it possible to integrate many other JDBC driver based softwares.

  • Standard SQL:

    As mentioned before, the integration of IoTDB and Calcite is almost done (a PR has been submitted), which means IoTDB will support Standard SQL.

  • Spark and Hive integration:

    It is very important that letting big data analysis software to access the data in database for more complex data analysis. IoTDB supports Hive-connector and Spark connector for better integration.

  • Writing data to NFS (HDFS): Sharing nothing architecture is good, but sometimes you have to add new servers even your CPU and memory is idle but the disk is full… Besides, if we can save the data file directly to HDFS, it will be more easy to use Spark and other softwares to analyze data, without ETL.

  • IoTDB supports writing data locally or on HDFS directly. IoTDB also allows user to extend to store data on other NFS.

  • InfluxDB, KairosDB have to write data locally.

  • OpenTSDB has to write data on HDFS.

Conclusion:

We can find that IoTDB has many powerful features that other TSDBs do not support.

Performance Comparison

Ok… If you say, “well, I just want the basic features. IoTDB has little difference from others.”. It is somehow right. But, if you consider the performance, you may change your mind.

quick review

Given a workload:

  • Write:

10 clients write data concurrently. The number of storage group is 50. There are 1000 devices and each device has 100 measurements (i.e.,, 100K time series totally). The data type is float and IoTDB uses RLE encoding and Snappy compression. IoTDB uses batch insertion API and the batch size is 100 (write 100 data points per write API call).

  • Read:

50 clients read data concurrently. Each client just read data from 1 device with 10 measurements in one storage group.

IoTDB is v0.9.0.

Write performance:

We write 112GB data totally.

The write throughput (points/second) is:

Write Throughput (points/second)

Figure 1. Write throughput (points/second) IoTDB v0.9

The disk occupation is:

Disk Occupation

Figure 2. Disk occupation(GB) IoTDB v0.9

Query performance

Aggregation query

Figure 3. Aggregation query time cost(ms) IoTDB v0.9

We can see that IoTDB outperforms others.

More details

We provide a benchmarking tool, called IoTDB-benchamrk (https://github.com/thulab/iotdb-benchmark, you may have to use the dev branch to compile it), it supports IoTDB, InfluxDB, KairosDB, TimescaleDB, OpenTSDB. We have a articleComparison - 图7 (opens new window) for comparing these systems using the benchmark tool. When we publish the article, IoTDB just entered Apache incubator, so we deleted the performance of IoTDB in that article. But after comparison, some results are presented here.

  • IoTDB: 0.8.0. (notice: IoTDB v0.9 outperforms than v0.8, the result will be updated once experiments on v0.9 are finished)
  • InfluxDB: 1.5.1.
  • OpenTSDB: 2.3.1 (HBase 1.2.8)
  • KairosDB: 1.2.1 (Cassandra 3.11.3)
  • TimescaleDB: 1.0.0 (PostgreSQL 10.5)

All TSDB run on the same server one by one.

  • For InfluxDB, we set the cache-max-memory-size and max-series-perbase as unlimited (otherwise it will be timeout quickly)

  • For OpenTSDB, we modified tsd.http.request.enable_chunked, tsd.http.request.max_chunk and tsd.storage.fix_duplicates for supporting write data in batch and write out-of-order data.

  • For KairosDB, we set Cassandra’s read_repair_chance as 0.1 (However it has no effect because we just have one node).

  • For TimescaleDB, we use PGTune tool to optimize PostgreSQL.

All TSDBs run on a server with Intel Xeon CPU E5-2697 v4 @2.3GHz, 256GB memory and 10 HDD disks with RAID-5. The OS is Ubuntu 16.04.2 LTS, 64bits.

Another server run IoTDB benchmark tool.

I omit the detailed workload here, let’s see the result:

Legend:

  • I: InfluxDB
  • O: OpenTSDB
  • T: TimescaleDB
  • K: KairosDB
  • D: IoTDB

Write experiments

Figure 4. Write experiments IoTDB v0.8.0

Query experiments

Figure 5. Query experiments IoTDB v0.8.0

We can see that IoTDB outperforms others hugely.

In Figure. 4(c), when the batch size reaches to 10000 points, InfluxDB is better than IoTDB v0.8. It is because in IoTDB v0.8, batch insert API is not optimized.

From IoTDB v0.9 on, using batch insert API can obtain 8 to 10 times write performance improvement.

For example, using IoTDB v0.8, the write throughput can only reach to 6 million data points per second. But using IoTDB v0.9, the write throughput can reach to 40 million data points per second on the same server with the same workload. (see Figure. 4(a) vs Figure. 1).

Conclusion

If you are considering a TSDB for your IIoT application, Apache IoTDB, a new time series, is your best choice.

We will update this page once we release new version and finish the experiments. We also welcome more contributors correct this article and contribute IoTDB and reproduce experiments.