English |
简体中文 |
日本語 |
TDengine Cloud |
Documentation |
Learn more about TSDB
TDengine
1. Introduction
TDengine is an open source, high-performance, cloud native and AI powered time-series database designed for Internet of Things (IoT), Connected Cars, and Industrial IoT. It enables efficient, real-time data ingestion, processing, and analysis of TB and even PB scale data per day, generated by billions of sensors and data collectors. TDengine differentiates itself from other time-series databases with the following advantages:
High Performance: TDengine is the only time-series database to solve the high cardinality issue to support billions of data collection points while out performing other time-series databases for data ingestion, querying and data compression.
Simplified Solution: Through built-in caching, stream processing, data subscription and AI agent features, TDengine provides a simplified solution for time-series data processing. It reduces system design complexity and operation costs significantly.
Cloud Native: Through native distributed design, sharding and partitioning, separation of compute and storage, RAFT, support for kubernetes deployment and full observability, TDengine is a cloud native Time-Series Database and can be deployed on public, private or hybrid clouds.
AI Powered: Through the built in AI agent TDgpt, TDengine can connect to a variety of time series foundation model, large language model, machine learning and traditional algorithms to provide time series data forecasting, anomaly detection, imputation and classification.
Ease of Use: For administrators, TDengine significantly reduces the effort to deploy and maintain. For developers, it provides a simple interface, simplified solution and seamless integrations for third party tools. For data users, it gives easy data access.
Easy Data Analytics: Through super tables, storage and compute separation, data partitioning by time interval, pre-computation and AI agent, TDengine makes it easy to explore, format, and get access to data in a highly efficient way.
Open Source: TDengine's core modules, including cluster feature and AI agent, are all available under open source licenses. It has gathered 23.7k stars on GitHub. There is an active developer community, and over 730k running instances worldwide.
For a full list of TDengine competitive advantages, please check here. The easiest way to experience TDengine is through TDengine Cloud. For the latest TDengine component TDgpt, please refer to TDgpt README for details.
2. Documentation
For user manual, system design and architecture, please refer to TDengine Documentation (TDengine 文档)
You can choose to install TDengine via container, installation package, Kubernetes or try fully managed service without installation. This quick guide is for developers who want to contribute, build, release and test TDengine by themselves.
Table of Contents
- 1. Introduction
- 2. Documentation
- 3. Prerequisites
- 4. Building
- 5. Testing
- 6. Packaging
- 7. Installing from Package
- 8. Running
- 9. Workflow
- 10. Coverage
- 11. Contributing
- 12. License
3. Prerequisites
3.1 System Requirements
- Operating systems: Linux (Ubuntu 18.04+, CentOS 7+), macOS 10.15+, Windows (limited; open-source builds are primarily Linux/macOS)
- CPU: x86_64 or ARM64
- Memory: 4 GB RAM or more recommended
- Disk: 2 GB free space or more recommended
- Primary build platform: Linux
TDengine is built and tested primarily on Linux. macOS builds are supported for local development. Windows support in the open-source tree is limited, so Linux should be your default choice for reproducible builds.
3.2 Installing Build Tools
Ubuntu/Debian:
sudo apt-get update
sudo apt-get install -y build-essential cmake git
CentOS/RHEL:
sudo yum groupinstall -y "Development Tools"
sudo yum install -y cmake3 git
Note: CMake >= 3.21 is required for external builds. If your distro provides an older version, install a newer release from https://cmake.org/download/.
You may also need these tools depending on what you build:
- Python 3 for the test framework in
tests/ - Go 1.23+ if you want to build components such as taosAdapter or taosKeeper
3.3 Optional Tools
- ccache — speeds up rebuilds:
sudo apt install ccache - Conan 2.x — required only for the
taos-gencomponent:pip3 install conan
4. Building
4.1 Quick Start
git clone https://github.com/taosdata/TDengine.git
cd TDengine
mkdir debug && cd debug
cmake .. -DBUILD_CONTRIB=ON # First build: -DBUILD_CONTRIB=ON is REQUIRED
make -j$(nproc)
Important The first source build must use
-DBUILD_CONTRIB=ON. This downloads and builds external dependencies such as xxhash, zstd, and lz4 int