MCPcopy Index your code
hub / github.com/apache/iotdb

github.com/apache/iotdb @v2.0.10

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2.0.10 ↗ · + Follow
82,996 symbols 449,674 edges 7,889 files 6,858 documented · 8%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

English | 中文

IoTDB

Unit-Test codecov GitHub release License IoTDB Website Maven Central Gitpod Ready-to-Code Slack Status

Overview

IoTDB (Internet of Things Database) is a data management system for time series data, which provides users with specific services, including data collection, storage and analysis. Due to its lightweight structure, high performance and usable features, together with its seamless integration with the Hadoop and Spark ecosystem, IoTDB meets the requirements of massive dataset storage, high throughput data input, and complex data analysis in the industrial IoT field.

Click for More Information

IoTDB depends on TsFile which is a columnar storage file format designed for time series data. The branch iotdb of TsFile project is used to deploy SNAPSHOT version for IoTDB project.

Main Features

The main features of IoTDB are as follows:

  1. Flexible deployment strategy. IoTDB provides users with a one-click installation tool on either the cloud platform or the terminal devices, and a data synchronization tool bridging the data on cloud platform and terminals.
  2. Low cost on hardware. IoTDB can reach a high compression ratio of disk storage.
  3. Efficient directory structure. IoTDB supports efficient organization for complex time series data structures from intelligent networking devices, organization for time series data from devices of the same type, and fuzzy searching strategy for massive and complex directory of time series data.
  4. High-throughput read and write. IoTDB supports millions of low-power devices' strong connection data access, high-speed data read and write for intelligent networking devices and mixed devices mentioned above.
  5. Rich query semantics. IoTDB supports time alignment for time series data across devices and measurements, computation in time series field (frequency domain transformation) and rich aggregation function support in time dimension.
  6. Easy to get started. IoTDB supports SQL-like language, JDBC standard API and import/export tools which are easy to use.
  7. Seamless integration with state-of-the-practice Open Source Ecosystem. IoTDB supports analysis ecosystems, such as Hadoop and Spark, as well as visualization tools, such as Grafana.

For the latest information about IoTDB, please visit IoTDB official website. If you encounter any problems or identify any bugs while using IoTDB, please report an issue in Jira.

Outline

Quick Start

This short guide will walk you through the basic process of using IoTDB. For a more detailed introduction, please visit our website's User Guide.

Prerequisites

To use IoTDB, you need to have:

  1. Java >= 1.8 (1.8 to 25 are verified. Please make sure the environment path has been set accordingly).
  2. Maven >= 3.6 (If you want to compile and install IoTDB from source code).
  3. Set the max open files num as 65535 to avoid the "too many open files" error.
  4. (Optional) Set the somaxconn as 65535 to avoid "connection reset" error when the system is under high load. ``` # Linux > sudo sysctl -w net.core.somaxconn=65535

    FreeBSD or Darwin

    sudo sysctl -w kern.ipc.somaxconn=65535 ```

⚠️ Important: System Resource Limits

IoTDB requires sufficient system resource limits to start correctly. If these limits are not configured, IoTDB may fail to start or emit warnings such as "too many open files" or "connection reset" in the logs.

Linux / macOS bash ulimit -n 65535 sudo sysctl -w net.core.somaxconn=65535

Docker Users When running IoTDB in Docker, these limits must be applied on the host machine or explicitly passed to the container: bash docker run --ulimit nofile=65535:65535 ...

Windows Users These commands are not applicable on Windows. Please follow the Windows installation steps below and ensure sufficient system resources.

Linux

(This guide is based on an installation of Ubuntu 22.04.)

Git

Make sure Git is installed, if it's missing, simply install it via:

sudo apt install git

Java

Make sure Java is installed, if it's missing, simply install it via:

sudo apt install default-jdk

Flex

sudo apt install flex

Bison

sudo apt install bison

Boost

sudo apt install libboost-all-dev

OpenSSL header files

Usually OpenSSL is already installed, however it's missing the header files we need to compile. So ensure these are installed:

sudo apt install libssl-dev

Mac OS

Git

First ensure git works.

Usually on a new Mac, as soon as you simply type git in a Terminal window, a popup will come up and ask if you want to finish installing the Mac developer tools. Just say yes. As soon as this is finished, you are free to use git.

Homebrew

Then install Homebrew - If this hasn't been installed yet, as we are going to be installing everything using Homebrew.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Java

As soon as that's done install Java, if this hasn't been installed yet:

brew install java

Depending on your version of Homebrew, it will tell you to do one of the following (depending on the type of processor in your device).

Mainly on the Intel-based models:

sudo ln -sfn /usr/local/opt/openjdk/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk.jdk

Mainly on the ARM-based models:

sudo ln -sfn /opt/homebrew/opt/openjdk/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk.jdk

CPP Prerequisites

Building Thrift requires us to add two more dependencies to the picture.

This however is only needed when enabling the with-cpp profile:

brew install boost
brew install bison
brew install openssl

Windows

Chocolatey

Then install Chocolatey - If this hasn't been installed yet, as we are going to be installing everything using Chocolatey.

https://chocolatey.org/install

Git

choco install git.install

Java

choco install openjdk

Visual Studio 19 2022

choco install visualstudio2022community
choco install visualstudio2022buildtools
choco install visualstudio2022-workload-nativedesktop

Flex / Bison

choco install winflexbison

Boost

choco install boost-msvc-14.2

OpenSSL

choco install openssl

Installation

IoTDB provides three installation methods, you can refer to the following suggestions, choose the one fits you best:

  • Installation from source code. If you need to modify the code yourself, you can use this method.
  • Installation from binary files. Download the binary files from the official website. This is the recommended method, in which you will get a binary released package which is out-of-the-box.
  • Using Docker:The path to the dockerfile is here.

Here in the Quick Start, we give a brief introduction of using source code to install IoTDB. For further information, please refer to User Guide.

Build from source

Prepare Thrift compiler

Skip this chapter if you are using Windows.

As we use Thrift for our RPC module (communication and protocol definition), we involve Thrift during the compilation, so Thrift compiler 0.13.0 (or higher) is required to generate Thrift Java code. Thrift officially provides binary compiler for Windows, but unfortunately, they do not provide that for Unix OSs.

If you have permission to install new software, use apt install or yum install or brew install to install the Thrift compiler. (If you already have installed the thrift compiler, skip this step.) Then, you may add the following parameter when running Maven: -Dthrift.download-url=http://apache.org/licenses/LICENSE-2.0.txt -Dthrift.exec.absolute.path=<YOUR LOCAL THRIFT BINARY FILE>.

If not, then you have to compile the thrift compiler, and it requires you install a boost library first. Therefore, we compiled a Unix compiler ourselves and put it onto GitHub, and with the help of a maven plugin, it will be downloaded automatically during compilation. This compiler works fine with gcc8 or later, Ubuntu MacOS, and CentOS, but previous versions and other OSs are not guaranteed.

If you can not download the thrift compiler automatically because of a network problem, you can download it by yourself, and then either: rename your thrift file to {project_root}\thrift\target\tools\thrift_0.12.0_0.13.0_linux.exe; or, add Maven commands: -Dthrift.download-url=http://apache.org/licenses/LICENSE-2.0.txt -Dthrift.exec.absolute.path=<YOUR LOCAL THRIFT BINARY FILE>.

Compile IoTDB

You can download the source code from:

git clone https://github.com/apache/iotdb.git

The default dev branch is the master branch, if you want to use a released version x.x.x:

git checkout vx.x.x

Or checkout to the branch of a big version, e.g., the branch of 1.0 is rel/1.0.

git checkout rel/x.x

Build IoTDB from source

Under the root path of iotdb:

> mvn clean package -pl distribution -am -DskipTests

After being built, the IoTDB distribution is located at the folder: "distribution/target".

Only build cli

Under the iotdb/iotdb-client path:

> mvn clean package -pl cli -am -DskipTests

After being built, the IoTDB cli is located at the folder "cli/target".

Build with Chinese Log & Error Messages

IoTDB supports compile-time internationalization (i18n) for log and error messages. By default, messages are in English. To build with Chinese messages, activate the with-zh-locale Maven profile:

> mvn clean package -pl distribution -am -DskipTests -P with-zh-locale

This works by swapping the source directory src/main/i18n/en (default) with src/main/i18n/zh, where each module keeps locale-specific Java constant classes containing translated message strings.

Build Others

Use -P with-cpp for compiling the cpp client. (For more details, read client-cpp's Readme file.)

NOTE: Directories "thrift/target/generated-sources/thrift", "thrift-sync/target/generated-sources/thrift", "thrift-cluster/target/generated-sources/thrift", "thrift-influxdb/target/generated-sources/thrift" and "antlr/target/generated-sources/antlr4" need to be added to sources roots to avoid compilation errors in the IDE.

In IDEA, you just need to right click on the root project name and choose "Maven->Reload Project" after you run mvn package successfully.

Configurations

Configuration files are under the "conf" folder.

  • environment config module (datanode-env.bat, datanode-env.sh),
  • system config module (iotdb-system.properties)
  • log conf

Extension points exported contracts — how you extend this code

ISubscriptionTablePushConsumer (Interface)
A subscription-based push consumer interface for receiving messages from specified topics of table model. [6 implementers]
iotdb-client/subscription/src/main/java/org/apache/iotdb/session/subscription/consumer/ISubscriptionTablePushConsumer.java
PayloadFormatter (Interface)
PayloadFormatter format the payload to the messages. This is a SPI interface. @see JSONPayloadFormatter [6 implementers]
external-service-impl/mqtt/src/main/java/org/apache/iotdb/mqtt/PayloadFormatter.java
PipeProcessor (Interface)
PipeProcessor PipeProcessor is used to filter and transform the Event formed by the {@link P [19 implementers]
iotdb-api/pipe-api/src/main/java/org/apache/iotdb/pipe/api/PipeProcessor.java
IExternalService (Interface)
An interface to support user-defined service. [81 implementers]
iotdb-api/external-service-api/src/main/java/org/apache/iotdb/externalservice/api/IExternalService.java
UDTF (Interface)
User-defined Time-series Generating Function (UDTF) New UDTF classes need to inherit from this UDTF class. Gener [150 …
iotdb-api/udf-api/src/main/java/org/apache/iotdb/udf/api/UDTF.java
RowIdHashStrategy (Interface)
Hash strategy that evaluates over row IDs [866 implementers]
iotdb-core/calc-commons/src/main/java/org/apache/iotdb/calc/execution/operator/RowIdHashStrategy.java
IFailureDetector (Interface)
IFailureDetector is the judge for node status (UNKNOWN). {@link #isAvailable will be called each fixed interval updating [7 …
iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/load/cache/IFailureDetector.java
IMetricSet (Interface)
Notice that IMetricSet should be stateless. [196 implementers]
iotdb-core/metrics/interface/src/main/java/org/apache/iotdb/metrics/metricsets/IMetricSet.java

Core symbols most depended-on inside this repo

add
called by 15517
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/warnings/WarningCollector.java
get
called by 8211
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/storageengine/dataregion/DataRegionTest.java
toString
called by 6392
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/schemaengine/schemaregion/mtree/impl/pbtree/schemafile/ISegment.java
size
called by 5844
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/windowing/api/Window.java
format
called by 5295
external-service-impl/mqtt/src/main/java/org/apache/iotdb/mqtt/PayloadFormatter.java
execute
called by 4960
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/service/StartupCheck.java
getString
called by 4778
iotdb-api/udf-api/src/main/java/org/apache/iotdb/udf/api/access/Row.java
get
called by 4642
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/execution/QueryExecution.java

Shape

Method 73,342
Class 8,319
Interface 572
Function 390
Enum 373

Languages

Java97%
Python2%
C++1%
C1%

Modules by API surface

iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java693 symbols
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/CommonConfig.java413 symbols
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/sql/parser/AstBuilder.java300 symbols
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/analyzer/Analysis.java257 symbols
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/parser/ASTVisitor.java254 symbols
iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/conf/ConfigNodeConfig.java235 symbols
iotdb-core/consensus/src/main/java/org/apache/iotdb/consensus/config/RatisConfig.java201 symbols
iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/ConfigManager.java190 symbols
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/analyzer/StatementAnalyzer.java183 symbols
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/client/ConfigNodeClient.java183 symbols
iotdb-client/jdbc/src/main/java/org/apache/iotdb/jdbc/IoTDBAbstractDatabaseMetadata.java179 symbols
iotdb-client/session/src/main/java/org/apache/iotdb/session/Session.java169 symbols

For agents

$ claude mcp add iotdb \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact