README.md 9.4 KB
Newer Older
1 2
[![Build Status](https://travis-ci.org/taosdata/TDengine.svg?branch=master)](https://travis-ci.org/taosdata/TDengine)
[![Build status](https://ci.appveyor.com/api/projects/status/kf3pwh2or5afsgl9/branch/master?svg=true)](https://ci.appveyor.com/project/sangshuduo/tdengine-2n8ge/branch/master)
3
[![Coverage Status](https://coveralls.io/repos/github/taosdata/TDengine/badge.svg?branch=develop)](https://coveralls.io/github/taosdata/TDengine?branch=develop)
S
Shuduo Sang 已提交
4
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/4201/badge)](https://bestpractices.coreinfrastructure.org/projects/4201)
sangshuduo's avatar
sangshuduo 已提交
5
[![tdengine](https://snapcraft.io//tdengine/badge.svg)](https://snapcraft.io/tdengine)
6

J
Jeff Tao 已提交
7
[![TDengine](TDenginelogo.png)](https://www.taosdata.com)
H
hzcheng 已提交
8 9 10

# What is TDengine?

J
johnnyhou327 已提交
11
TDengine is an open-sourced big data platform under [GNU AGPL v3.0](http://www.gnu.org/licenses/agpl-3.0.html), designed and optimized for the Internet of Things (IoT), Connected Cars, Industrial IoT, and IT Infrastructure and Application Monitoring. Besides the 10x faster time-series database, it provides caching, stream computing, message queuing and other functionalities to reduce the complexity and cost of development and operation.
H
hzcheng 已提交
12

J
johnnyhou327 已提交
13
- **10x Faster on Insert/Query Speeds**: Through the innovative design on storage, on a single-core machine, over 20K requests can be processed, millions of data points can be ingested, and over 10 million data points can be retrieved in a second. It is 10 times faster than other databases.
H
hzcheng 已提交
14

S
StoneT2000 已提交
15
- **1/5 Hardware/Cloud Service Costs**: Compared with typical big data solutions, less than 1/5 of computing resources are required. Via column-based storage and tuned compression algorithms for different data types, less than 1/10 of storage space is needed.
H
hzcheng 已提交
16

H
Hongze Cheng 已提交
17
- **Full Stack for Time-Series Data**: By integrating a database with message queuing, caching, and stream computing features together, it is no longer necessary to integrate Kafka/Redis/HBase/Spark or other software. It makes the system architecture much simpler and more robust.
H
hzcheng 已提交
18

S
StoneT2000 已提交
19
- **Powerful Data Analysis**: Whether it is 10 years or one minute ago, data can be queried just by specifying the time range. Data can be aggregated over time, multiple time streams or both. Ad Hoc queries or analyses can be executed via TDengine shell, Python, R or Matlab.
H
hzcheng 已提交
20

S
StoneT2000 已提交
21
- **Seamless Integration with Other Tools**: Telegraf, Grafana, Matlab, R, and other tools can be integrated with TDengine without a line of code. MQTT, OPC, Hadoop, Spark, and many others will be integrated soon.
H
hzcheng 已提交
22

J
johnnyhou327 已提交
23
- **Zero Management, No Learning Curve**: It takes only seconds to download, install, and run it successfully; there are no other dependencies. Automatic partitioning on tables or DBs. Standard SQL is used, with C/C++, Python, JDBC, Go and RESTful connectors.
H
hzcheng 已提交
24 25

# Documentation
X
Xiaxin Li 已提交
26
For user manual, system design and architecture, engineering blogs, refer to [TDengine Documentation](https://www.taosdata.com/en/documentation/)(中文版请点击[这里](https://www.taosdata.com/cn/documentation20/))
S
StoneT2000 已提交
27
 for details. The documentation from our website can also be downloaded locally from *documentation/tdenginedocs-en* or *documentation/tdenginedocs-cn*.
H
hzcheng 已提交
28 29

# Building
H
hzcheng 已提交
30
At the moment, TDengine only supports building and running on Linux systems. You can choose to [install from packages](https://www.taosdata.com/en/getting-started/#Install-from-Package) or from the source code. This quick guide is for installation from the source only.
H
hzcheng 已提交
31

32 33 34 35 36 37 38
To build TDengine, use [CMake](https://cmake.org/) 3.5 or higher versions in the project directory. 

## Install tools

### Ubuntu & Debian:
```bash
sudo apt-get install -y gcc cmake build-essential git
39 40
```

J
johnnyhou327 已提交
41
To compile and package the JDBC driver source code, you should have a Java jdk-8 or higher and Apache Maven 2.7 or higher installed. 
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
To install openjdk-8:
```bash
sudo apt-get install -y openjdk-8-jdk
```

To install Apache Maven:
```bash
sudo apt-get install -y  maven
```

### Centos 7:
```bash
sudo yum install -y gcc gcc-c++ make cmake3 epel-release git
sudo yum remove -y cmake
sudo ln -s /usr/bin/cmake3 /usr/bin/cmake
```

To install openjdk-8:
```bash
sudo yum install -y java-1.8.0-openjdk
```

To install Apache Maven:
```bash
sudo yum install -y maven
J
johnnyhou327 已提交
67
```
68 69 70 71

### Centos 8 & Fedora:
```bash
sudo dnf install -y gcc gcc-c++ make cmake epel-release git
J
johnnyhou327 已提交
72
```
73 74 75 76

To install openjdk-8:
```bash
sudo dnf install -y java-1.8.0-openjdk
J
johnnyhou327 已提交
77
```
78 79 80 81

To install Apache Maven:
```bash
sudo dnf install -y maven
J
johnnyhou327 已提交
82 83
```

84 85
## Get the source codes

86
First of all, you may clone the source codes from github:
87 88
```bash
git clone https://github.com/taosdata/TDengine.git
B
Bison "goldeagle" Fan 已提交
89
cd TDengine
L
lihui 已提交
90
```
91

92 93 94 95 96 97
The connectors for go & grafana have been moved to separated repositories,
so you should run this command in the TDengine directory to install them:
```bash
git submodule update --init --recursive
```

98 99
## Build TDengine

100 101
### On Linux platform

102
```bash
S
Shuduo Sang 已提交
103
mkdir debug && cd debug
H
hzcheng 已提交
104 105
cmake .. && cmake --build .
```
J
John Zhuang 已提交
106

H
huili 已提交
107
To compile on an ARM processor (aarch64 or aarch32), please add option CPUTYPE as below:
L
lihui 已提交
108

H
huili 已提交
109
aarch64:
110
```bash
H
huili 已提交
111
cmake .. -DCPUTYPE=aarch64 && cmake --build .
H
huili 已提交
112
```
H
huili 已提交
113 114

aarch32:
B
Bison "goldeagle" Fan 已提交
115
```bash
H
huili 已提交
116
cmake .. -DCPUTYPE=aarch32 && cmake --build .
L
lihui 已提交
117 118
```

119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
### On Windows platform

If you use the Visual Studio 2013, please open a command window by executing "cmd.exe".
Please specify "x86_amd64" for 64 bits Windows or specify "x86" is for 32 bits Windows when you execute vcvarsall.bat.
```
mkdir debug && cd debug
"C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" < x86_amd64 | x86 >
cmake .. -G "NMake Makefiles"
nmake
```

If you use the Visual Studio 2019, please open a command window by executing "cmd.exe".
Please specify "x64" for 64 bits Windows or specify "x86" is for 32 bits Windows when you execute vcvarsall.bat.
```
mkdir debug && cd debug
"c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" < x64 | x86 >
cmake .. -G "NMake Makefiles"
nmake
```

Or, you can open a command window by clicking Visual Studio 2019 menu "Tools -> Command Line -> Developer Command Prompt" or "Tools -> Command Line -> Developer PowerShell" then execute commands as follows:
```
mkdir debug && cd debug
cmake .. -G "NMake Makefiles"
nmake
```

# Quick Run
J
Jeff Tao 已提交
147
# Quick Run
H
Hongze Cheng 已提交
148
To quickly start a TDengine server after building, run the command below in terminal:
J
John Zhuang 已提交
149
```cmd
H
hzcheng 已提交
150 151
./build/bin/taosd -c test/cfg
```
J
johnnyhou327 已提交
152
In another terminal, use the TDengine shell to connect the server:
H
hzcheng 已提交
153 154 155
```
./build/bin/taos -c test/cfg
```
J
Jeff Tao 已提交
156
option "-c test/cfg" specifies the system configuration file directory. 
H
hzcheng 已提交
157

H
Hongze Cheng 已提交
158 159 160 161 162 163 164
# Installing
After building successfully, TDengine can be installed by:
```cmd
make install
```
Users can find more information about directories installed on the system in the [directory and files](https://www.taosdata.com/en/documentation/administrator/#Directory-and-Files) section. It should be noted that installing from source code does not configure service management for TDengine.
Users can also choose to [install from packages](https://www.taosdata.com/en/getting-started/#Install-from-Package) for it.
H
hzcheng 已提交
165

H
Hongze Cheng 已提交
166
To start the service after installation, in a terminal, use:
H
hzcheng 已提交
167 168 169 170
```cmd
taosd
```

J
Jeff Tao 已提交
171
Then users can use the [TDengine shell](https://www.taosdata.com/en/getting-started/#TDengine-Shell) to connect the TDengine server. In a terminal, use:
H
hzcheng 已提交
172 173 174 175
```cmd
taos
```

J
Jeff Tao 已提交
176
If TDengine shell connects the server successfully, welcome messages and version info are printed. Otherwise, an error message is shown.
H
hzcheng 已提交
177 178

# Try TDengine
J
Jeff Tao 已提交
179
It is easy to run SQL commands from TDengine shell which is the same as other SQL databases.
H
hzcheng 已提交
180 181 182 183 184 185 186 187 188 189 190
```sql
create database db;
use db;
create table t (ts timestamp, a int);
insert into t values ('2019-07-15 00:00:00', 1);
insert into t values ('2019-07-15 01:00:00', 2);
select * from t;
drop database db;
```

# Developing with TDengine
191 192 193
### Official Connectors

TDengine provides abundant developing tools for users to develop on TDengine. Follow the links below to find your desired connectors and relevant documentation.
H
hzcheng 已提交
194 195 196 197 198 199

- [Java](https://www.taosdata.com/en/documentation/connector/#Java-Connector)
- [C/C++](https://www.taosdata.com/en/documentation/connector/#C/C++-Connector)
- [Python](https://www.taosdata.com/en/documentation/connector/#Python-Connector)
- [Go](https://www.taosdata.com/en/documentation/connector/#Go-Connector)
- [RESTful API](https://www.taosdata.com/en/documentation/connector/#RESTful-Connector)
S
StoneT2000 已提交
200
- [Node.js](https://www.taosdata.com/en/documentation/connector/#Node.js-Connector)
H
hzcheng 已提交
201

202 203 204 205 206 207
### Third Party Connectors

The TDengine community has also kindly built some of their own connectors! Follow the links below to find the source code for them.

- [Rust Connector](https://github.com/taosdata/TDengine/tree/master/tests/examples/rust)
- [.Net Core Connector](https://github.com/maikebing/Maikebing.EntityFrameworkCore.Taos)
208
- [Lua Connector](https://github.com/taosdata/TDengine/tree/develop/tests/examples/lua)
209

sangshuduo's avatar
sangshuduo 已提交
210 211 212 213
# How to run the test cases and how to add a new test case?
  TDengine's test framework and all test cases are fully open source.
  Please refer to [this document](tests/How-To-Run-Test-And-How-To-Add-New-Test-Case.md) for how to run test and develop new test case.

J
Jeff Tao 已提交
214
# TDengine Roadmap
S
StoneT2000 已提交
215
- Support event-driven stream computing
J
Jeff Tao 已提交
216 217 218
- Support user defined functions
- Support MQTT connection
- Support OPC connection
S
StoneT2000 已提交
219
- Support Hadoop, Spark connections
J
Jeff Tao 已提交
220 221
- Support Tableau and other BI tools

W
winshining 已提交
222
# Contribute to TDengine
H
hzcheng 已提交
223 224

Please follow the [contribution guidelines](CONTRIBUTING.md) to contribute to the project.
L
lihui 已提交
225 226 227 228 229

# Join TDengine WeChat Group

Add WeChat “tdengine” to join the group,you can communicate with other users.