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.
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.
The main features of IoTDB are as follows:
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.
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.
To use IoTDB, you need to have:
(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
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=65535Docker 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.
(This guide is based on an installation of Ubuntu 22.04.)
Make sure Git is installed, if it's missing, simply install it via:
sudo apt install git
Make sure Java is installed, if it's missing, simply install it via:
sudo apt install default-jdk
sudo apt install flex
sudo apt install bison
sudo apt install libboost-all-dev
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
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.
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)"
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
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
Then install Chocolatey - If this hasn't been installed yet, as we are going to be installing everything using Chocolatey.
https://chocolatey.org/install
choco install git.install
choco install openjdk
choco install visualstudio2022community
choco install visualstudio2022buildtools
choco install visualstudio2022-workload-nativedesktop
choco install winflexbison
choco install boost-msvc-14.2
choco install openssl
IoTDB provides three installation methods, you can refer to the following suggestions, choose the one fits you best:
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.
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>.
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
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".
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".
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.
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.
Configuration files are under the "conf" folder.
datanode-env.bat, datanode-env.sh),iotdb-system.properties)$ claude mcp add iotdb \
-- python -m otcore.mcp_server <graph>