Benchmark Tool

IoT-benchmark is a time-series database benchmarking tool based on Java and big data environment, developed and open sourced by School of Software Tsinghua University. It is easy to use, supports multiple writing and query methods, supports storing test information and results for further query or analysis, and supports integration with Tableau to visualize test results.

Figure 1-1 below includes the test benchmark process and other extended functions. These processes can be unified by IoT-benchmark. IoT Benchmark supports a variety of workloads, including pure write, pure query, write query mixed, etc., supports software and hardware system monitoring, test metric measurement and other monitoring functions, and also realizes initializing the database automatically, test data analysis and system parameter optimization functions.

img

img

Figure 1-1

Referring to the YCSB test tool’s design idea of separating the three components of workload generation, performance metric measurement and database interface, the modular design of IoT-benchmark is shown in Figure 1-2. Different from the YCSB-based test tool system, IoT-benchmark adds a system monitoring module to support the persistence of test data and system monitoring data. In addition, some special load testing functions especially designed for time series data scenarios have been added, such as supporting batch writing and multiple out-of-sequence data writing modes for IoT scenarios.

img

img

Figure 1-2

Currently IoT-benchmark supports the following time series databases, versions and connection methods:

DatabaseVersionConnection mmethod
InfluxDBv1.x
v2.0
SDK
TimescaleDBjdbc
OpenTSDBHttp Request
QuestDBv6.0.7jdbc
TDenginev2.2.0.2jdbc
VictoriaMetricsv1.64.0Http Request
KairosDBHttp Request
IoTDBv1.x
v0.13
jdbc、sessionByTablet、sessionByRecord、sessionByRecords

Table 1-1 Comparison of big data test benchmarks

Software Installation and Environment Setup

Prerequisites

  1. Java 8
  2. Maven 3.6+
  3. The corresponding appropriate version of the database, such as Apache IoTDB 1.0

How to Get IoT Benchmark

  • Get the binary package: Enter https://github.com/thulab/iot-benchmark/releasesBenchmark - 图3open in new window to download the required installation package. Download it as a compressed file, select a folder to decompress and use it.
  • Compiled from source (can be tested with Apache IoTDB 1.0):
    • The first step (compile the latest IoTDB Session package): Enter the official website https://github.com/apache/iotdb/tree/rel/1.0Benchmark - 图4open in new window to download the IoTDB source code, and run the command mvn clean package install -pl session -am -DskipTests in the root directory to compiles the latest package for IoTDB Session.
    • The second step (compile the IoTDB Benchmark test package): Enter the official website https://github.com/thulab/iot-benchmarkBenchmark - 图5open in new window to download the source code, run mvn clean package install -pl iotdb-1.0 -am -DskipTests in the root directory to compile Apache IoTDB version 1.0 test package. The relative path between the test package and the root directory is ./iotdb-1.0/target/iotdb-1.0-0.0.1/iotdb-1.0-0.0.1.

IoT Benchmark’s Test Package Structure

The directory structure of the test package is shown in Figure 1-3 below. The test configuration file is conf/config.properties, and the test startup scripts are benchmark.shBenchmark - 图6open in new window (Linux & MacOS) and benchmark.bat (Windows). The detailed usage of the files is shown in Table 1-2.

img

img

Figure 1-3 List of files and folders

NameFileUsage
benchmark.bat-Startup script on Windows
benchmark.shBenchmark - 图8open in new window-Startup script on Linux/Mac
confconfig.propertiesTest scenario configuration file
logback.xml-Log output configuration file
lib-Dependency library
LICENSE-License file
binstartup.shBenchmark - 图9open in new windowInit script folder
ser-benchmark.shBenchmark - 图10open in new window-Monitor mode startup script

Table 1-2 Usage list of files and folders

IoT Benchmark Execution Test

  1. Modify the configuration file according to the test requirements. For the main parameters, see next chapter. The corresponding configuration file is conf/config.properties. For example, to test Apache IoTDB 1.0, you need to modify DB_SWITCH=IoTDB-100-SESSION_BY_TABLET.
  2. Start the time series database under test.
  3. Running.
  4. Start IoT-benchmark to execute the test. Observe the status of the time series database and IoT-benchmark under test during execution, and view the results and analyze the test process after execution.

IoT Benchmark Results Interpretation

All the log files of the test are stored in the logs folder, and the test results are stored in the data/csvOutput folder after the test is completed. For example, after the test, we get the following result matrix:

img

img

  • Result Matrix
    • OkOperation: successful operations
    • OkPoint: For write operations, it is the number of points successfully written; for query operations, it is the number of points successfully queried.
    • FailOperation: failed operations
    • FailPoint: For write operations, it is the number of write failure points
  • Latency(mx) Matrix
    • AVG: average operation time
    • MIN: minimum operation time
    • Pn: the quantile value of the overall distribution of operations, for example, P25 is the lower quartile.

Main Parameters

This chapter mainly explains the purpose and configuration method of the main parameters.

Working Mode and Operation Proportion

  • The working mode parameter “BENCHMARK_WORK_MODE” can be selected as “default mode” and “server monitoring”; the “server monitoring” mode can be started directly by executing the ser-benchmark.shBenchmark - 图12open in new window script, and the script will automatically modify this parameter. “Default mode” is a commonly used test mode, combined with the configuration of the OPERATION_PROPORTION parameter to achieve the definition of test operation proportions of “pure write”, “pure query” and “read-write mix”.

  • When running ServerMode to monitor the operating environment of the time series database under test, IoT-benchmark relies on sysstat software related commands; if MySQL or IoTDB is selected for persistent test process data, this type of database needs to be installed; the recording mode of ServerMode and CSV can only be used in the Linux system to record relevant system information during the test. Therefore, we recommend using MacOs or Linux system. This article uses Linux (Centos7) system as an example. If you use Windows system, you can use the benchmark.bat script in the conf folder to start IoT-benchmark.

Table 1-3 Test mode

Mode NameBENCHMARK_WORK_MODEDescription
default modetestWithDefaultPathSupports mixed workloads with multiple read and write operations
server modeserverMODEServer resource usage monitoring mode (running in this mode is started by the ser-benchmark.shBenchmark - 图13open in new window script, no need to manually configure this parameter)

Server Connection Information

After the working mode is specified, how to inform IoT-benchmark of the information of the time series database under test? Currently, the type of the time-series database under test is informed through “DB_SWITCH”; the network address of the time-series database under test is informed through “HOST”; the network port of the time-series database under test is informed through “PORT”; the login user name of the time-series database under test is informed through “USERNAME”; “PASSWORD” informs the password of the login user of the time series database under test; informs the name of the time series database under test through “DB_NAME”; informs the connection authentication token of the time series database under test through “TOKEN” (used by InfluxDB 2.0).

Write Scene Setup Parameters

Table 1-4 Write scene setup parameters

Parameter NameTypeExampleDescription
CLIENT_NUMBERInteger100Total number of clients
GROUP_NUMBERInteger20Number of storage groups; only for IoTDB.
DEVICE_NUMBERInteger100Total number of devices
SENSOR_NUMBERInteger300Total number of sensors per device
INSERT_DATATYPE_PROPORTIONString1:1:1:1:1:1the data type proportion of the device, BOOLEAN:INT32:INT64:FLOAT:DOUBLE:TEXT
POINT_STEPInteger1000Timestamp interval, that is, the fixed length between two timestamps of generated data.
OP_MIN_INTERVALInteger0Minimum operation execution interval: if the operation time is greater than this value, execute the next one immediately, otherwise wait (OP_MIN_INTERVAL-actual execution time) ms; if it is 0, the parameter will not take effect; if it is -1, its value is consistent with POINT_STEP.
IS_OUT_OF_ORDERBooleanfalseWhether to write out of order
OUT_OF_ORDER_RATIOFloat0.3Ratio of data written out of order
BATCH_SIZE_PER_WRITEInteger1Number of data rows written in batches (how many rows of data are written at a time)
START_TIMETimestamp2022-10-30T00:00:00+08:00The start timestamp of writing data; use this timestamp as the starting point to start the simulation to create the data timestamp.
LOOPInteger86400Total number of operations: Each type of operation will be divided according to the ratio defined by OPERATION_PROPORTION
OPERATION_PROPORTIONString1:0:0:0:0:0:0:0:0:0:0The ratio of each operation. Write:Q1:Q2:Q3:Q4:Q5:Q6:Q7:Q8:Q9:Q10, please note the use of English colons. Each term in the scale is an integer.

According to the configuration parameters in Table 1-4, the test scenario can be described as follows: write 30,000 (100 devices, 300 sensors for each device) time series sequential data for a day on October 30, 2022 to the time series database under test, in total 2.592 billion data points. The 300 sensor data types of each device are 50 Booleans, 50 integers, 50 long integers, 50 floats, 50 doubles, and 50 characters. If we change the value of IS_OUT_OF_ORDER in the table to true, then the scenario is: write 30,000 time series data on October 30, 2022 to the measured time series database, and there are 30% out of order data ( arrives in the time series database later than other data points whose generation time is later than itself).

Query Scene Setup Parameters

Table 1-5 Query scene setup parameters

Parameter NameTypeExampleDescription
QUERY_DEVICE_NUMInteger2The number of devices involved in the query in each query statement.
QUERY_SENSOR_NUMInteger2The number of sensors involved in the query in each query statement.
QUERY_AGGREGATE_FUNStringcountAggregate functions used in aggregate queries, such as count, avg, sum, max_time, etc.
STEP_SIZEInteger1The change step of the starting time point of the time filter condition, if set to 0, the time filter condition of each query is the same, unit: POINT_STEP.
QUERY_INTERVALInteger250000The time interval between the start time and the end time in the start and end time query, and the time interval in Group By.
QUERY_LOWER_VALUEInteger-5Parameters for conditional query clauses, where xxx > QUERY_LOWER_VALUE.
GROUP_BY_TIME_UNITInteger20000The size of the group in the Group By statement.
LOOPInteger10Total number of operations. Each type of operation will be divided according to the ratio defined by OPERATION_PROPORTION.
OPERATION_PROPORTIONString0:0:0:0:0:0:0:0:0:0:1Write:Q1:Q2:Q3:Q4:Q5:Q6:Q7:Q8:Q9:Q10

Table 1-6 Query types and example SQL

IdQuery TypeIoTDB Example SQL
Q1exact point queryselect v1 from root.db.d1 where time = ?
Q2time range queryselect v1 from root.db.d1 where time > ? and time < ?
Q3time range query with value filteringselect v1 from root.db.d1 where time > ? and time < ? and v1 > ?
Q4time range aggregation queryselect count(v1) from root.db.d1 where and time > ? and time < ?
Q5full time range aggregate query with value filteringselect count(v1) from root.db.d1 where v1 > ?
Q6time range aggregation query with value filteringselect count(v1) from root.db.d1 where v1 > ? and time > ? and time < ?
Q7time grouping aggregation queryselect count(v1) from root.db.d1 group by ([?, ?), ?, ?)
Q8latest point queryselect last v1 from root.db.d1
Q9reverse order time range queryselect v1 from root.sg.d1 where time > ? and time < ? order by time desc
Q10reverse order time range query with value filteringselect v1 from root.sg.d1 where time > ? and time < ? and v1 > ? order by time desc

According to the configuration parameters in Table 1-5, the test scenario can be described as follows: Execute 10 reverse order time range queries with value filtering for 2 devices and 2 sensors from the time series database under test. The SQL statement is: select s_0,s_31from data where time >2022-10-30T00:00:00+08:00 and time < 2022-10-30T00:04:10+08:00 and s_0 > -5 and device in d_21,d_46 order by time desc.

Persistence of Test Process and Test Results

IoT-benchmark currently supports persisting the test process and test results to IoTDB, MySQL, and CSV through the configuration parameter “TEST_DATA_PERSISTENCE”; writing to MySQL and CSV can define the upper limit of the number of rows in the sub-database and sub-table, such as “RECORD_SPLIT=true, RECORD_SPLIT_MAX_LINE=10000000” means that each database table or CSV file is divided and stored according to the total number of 10 million rows; if the records are recorded to MySQL or IoTDB, database link information needs to be provided, including “TEST_DATA_STORE_IP” the IP address of the database, “TEST_DATA_STORE_PORT” the port number of the database, “TEST_DATA_STORE_DB” the name of the database, “TEST_DATA_STORE_USER” the database user name, and “TEST_DATA_STORE_PW” the database user password.

If we set “TEST_DATA_PERSISTENCE=CSV”, we can see the newly generated data folder under the IoT-benchmark root directory during and after the test execution, which contains the csv folder to record the test process; the csvOutput folder to record the test results . If we set “TEST_DATA_PERSISTENCE=MySQL”, it will create a data table named “testWithDefaultPath_tested database name_remarks_test start time” in the specified MySQL database before the test starts to record the test process; it will record the test process in the “CONFIG” data table (create the table if it does not exist), write the configuration information of this test; when the test is completed, the result of this test will be written in the data table named “FINAL_RESULT” (create the table if it does not exist).

Use Case

We take the application of CRRC Qingdao Sifang Vehicle Research Institute Co., Ltd. as an example, and refer to the scene described in “Apache IoTDB in Intelligent Operation and Maintenance Platform Storage” for practical operation instructions.

Test objective: Simulate the actual needs of switching time series databases in the scene of CRRC Qingdao Sifang Institute, and compare the performance of the expected IoTDB and KairosDB used by the original system.

测试环境:为了保证在实验过程中消除其他无关服务与进程对数据库性能的影响,以及不同数据库之间的相互影响,本实验中的本地数据库均部署并运行在资源配置相同的多个独立的虚拟机上。因此,本实验搭建了 4 台 Linux( CentOS7 /x86) 虚拟机,并分别在上面部署了IoT-benchmark、 IoTDB数据库、KairosDB数据库、MySQL数据库。每一台虚拟机的具体资源配置如表2-1所示。每一台虚拟机的具体用途如表2-2所示。Test environment: In order to ensure that the impact of other irrelevant services and processes on database performance and the mutual influence between different databases are eliminated during the experiment, the local databases in this experiment are deployed and run on multiple independent virtual servers with the same resource configuration. Therefore, this experiment set up 4 Linux (CentOS7 /x86) virtual machines, and deployed IoT-benchmark, IoTDB database, KairosDB database, and MySQL database on them respectively. The specific resource configuration of each virtual machine is shown in Table 2-1. The specific usage of each virtual machine is shown in Table 2-2.

Table 2-1 Virtual machine configuration information

Hardware Configuration InformationValue
OS systemCentOS7
number of CPU cores16
memory32G
hard disk200G
network千兆

Table 2-2 Virtual machine usage

IPUsage
172.21.4.2IoT-benchmark
172.21.4.3Apache-iotdb
172.21.4.4KaiosDB
172.21.4.5MySQL

Write Test

Scenario description: Create 100 clients to simulate 100 trains, each train has 3000 sensors, the data type is DOUBLE, the data time interval is 500ms (2Hz), and they are sent sequentially. Referring to the above requirements, we need to modify the IoT-benchmark configuration parameters as listed in Table 2-3.

Table 2-3 Configuration parameter information

Parameter NameIoTDB ValueKairosDB Value
DB_SWITCHIoTDB-013-SESSION_BY_TABLETKairosDB
HOST172.21.4.3172.21.4.4
PORT66678080
BENCHMARK_WORK_MODEtestWithDefaultPath
OPERATION_PROPORTION1:0:0:0:0:0:0:0:0:0:0
CLIENT_NUMBER100
GROUP_NUMBER10
DEVICE_NUMBER100
SENSOR_NUMBER3000
INSERT_DATATYPE_PROPORTION0:0:0:0:1:0
POINT_STEP500
OP_MIN_INTERVAL0
IS_OUT_OF_ORDERfalse
BATCH_SIZE_PER_WRITE1
LOOP10000
TEST_DATA_PERSISTENCEMySQL
TEST_DATA_STORE_IP172.21.4.5
TEST_DATA_STORE_PORT3306
TEST_DATA_STORE_DBdemo
TEST_DATA_STORE_USERroot
TEST_DATA_STORE_PWadmin
REMARKdemo

First, start the tested time series databases Apache-IoTDB and KairosDB on 172.21.4.3 and 172.21.4.4 respectively, and then start server resource monitoring through the ser-benchamrk.shBenchmark - 图14open in new window script on 172.21.4.2, 172.21.4.3 and 172.21.4.4 (Figure 2-1). Then modify the conf/config.properties files in the iotdb-0.13-0.0.1 and kairosdb-0.0.1 folders in 172.21.4.2 according to Table 2-3 to meet the test requirements. Use benchmark.shBenchmark - 图15open in new window to start the writing test of Apache-IoTDB and KairosDB successively.

img

img

Figure 2-1 Server monitoring tasks

For example, if we first start the test on KairosDB, IoT-benchmark will create a CONFIG data table in the MySQL database to store the configuration information of this test (Figure 2-2), and there will be a log output of the current test progress during the test execution (Figure 2-3) . When the test is completed, the test result will be output (Figure 2-3), and the result will be written into the FINAL_RESULT data table (Figure 2-4).

img

img

Figure 2-2 Test configuration information table

img
img
img
img

Figure 2-3 Test progress and results

img

img

Figure 2-4 Test result table

Afterwards, we will start the test on Apache-IoTDB. The same IoT-benchmark will write the test configuration information in the MySQL database CONFIG data table. During the test execution, there will be a log to output the current test progress. When the test is completed, the test result will be output, and the result will be written into the FINAL_RESULT data table.

依照测试结果信息我们知道同样的配置写入Apache-IoTDB和KairosDB写入延时时间分别为:55.98ms和1324.45ms;写入吞吐分别为:5,125,600.86点/秒和224,819.01点/秒;测试分别执行了585.30秒和11777.99秒。并且KairosDB有写入失败出现,排查后发现是数据磁盘使用率已达到100%,无磁盘空间继续接收数据。而Apache-IoTDB无写入失败现象,全部数据写入完毕后占用磁盘空间仅为4.7G(如图2-5所示);从写入吞吐和磁盘占用情况上看Apache-IoTDB均优于KairosDB。当然后续还有其他测试来从多方面观察和对比,比如查询性能、文件压缩比、数据安全性等。According to the test result information, we know that under the same configuration the write delay times of Apache-IoTDB and KairosDB are 55.98ms and 1324.45ms respectively; the write throughputs are 5,125,600.86 points/second and 224,819.01 points/second respectively; the tests were executed respectively 585.30 seconds and 11777.99 seconds. And KairosDB has a write failure. After investigation, it is found that the data disk usage has reached 100%, and there is no disk space to continue receiving data. However, Apache-IoTDB has no write failure, and the disk space occupied after all data is written is only 4.7G (as shown in Figure 2-5); Apache-IoTDB is better than KairosDB in terms of write throughput and disk occupation. Of course, there will be other tests in the follow-up to observe and compare from various aspects, such as query performance, file compression ratio, data security, etc.

img

img

Figure 2-5 Disk usage

So what is the resource usage of each server during the test? What is the specific performance of each write operation? At this time, we can visualize the data in the server monitoring table and test process recording table by installing and using Tableau. The use of Tableau will not be introduced in this article. After connecting to the data table for test data persistence, the specific results are as follows (taking Apache-IoTDB as an example):

img
img

Figure 2-6 Visualization of testing process in Tableau

Query Test

Scenario description: In the writing test scenario, 10 clients are simulated to perform all types of query tasks on the data stored in the time series database Apache-IoTDB. The configuration is as follows.

Table 2-4 Configuration parameter information

Parameter NameExample
CLIENT_NUMBER100
QUERY_DEVICE_NUM2
QUERY_SENSOR_NUM2
QUERY_AGGREGATE_FUNcount
STEP_SIZE1
QUERY_INTERVAL250000
QUERY_LOWER_VALUE-5
GROUP_BY_TIME_UNIT20000
LOOP30
OPERATION_PROPORTION0:1:1:1:1:1:1:1:1:1:1

Results:

img

img

Figure 2-7 Query test results

Description of Other Parameters

In the previous chapters, the write performance comparison between Apache-IoTDB and KairosDB was performed, but if the user wants to perform a simulated real write rate test, how to configure it? How to control if the test time is too long? Are there any regularities in the generated simulated data? If the IoT-Benchmark server configuration is low, can multiple machines be used to simulate pressure output?

Table 2-5 Configuration parameter information

ScenarioParameterValueNotes
Simulate real write rateOP_INTERVAL-1You can also enter an integer to control the operation interval.
Specify test duration (1 hour)TEST_MAX_TIME3600000The unit is ms; the LOOP execution time needs to be greater than this value.
Define the law of simulated data: support all data types, and the number is evenly classified; support five data distributions, and the number is evenly distributed; the length of the string is 10; the number of decimal places is 2.INSERT_DATATYPE_PROPORTION1:1:1:1:1:1Data type distribution proportion
LINE_RATIO1linear
SIN_RATIO1Fourier function
SQUARE_RATIO1Square wave
RANDOM_RATIO1Random number
CONSTANT_RATIO1Constant
STRING_LENGTH10String length
DOUBLE_LENGTH2Decimal places
Three machines simulate data writing of 300 devicesBENCHMARK_CLUSTERtrueEnable multi-benchmark mode
BENCHMARK_INDEX0, 1, 3Take the writing parameters in the previous chapter as an example: No. 0 is responsible for writing data of device numbers 0-99; No. 1 is responsible for writing data of device numbers 100-199; No. 2 is responsible for writing data of device numbers 200-299.