01-docker.md 5.3 KB
Newer Older
1
---
D
danielclow 已提交
2
title: Quick Install on Docker
D
danielclow 已提交
3 4
sidebar_label: Docker
description: This document describes how to install TDengine in a Docker container and perform queries and inserts.
5 6
---

7 8
This document describes how to install TDengine in a Docker container and perform queries and inserts.

D
danielclow 已提交
9
- The easiest way to explore TDengine is through [TDengine Cloud](https://cloud.tdengine.com).
10 11
- To get started with TDengine in a non-containerized environment, see [Quick Install from Package](../../get-started/package).
- If you want to view the source code, build TDengine yourself, or contribute to the project, see the [TDengine GitHub repository](https://github.com/taosdata/TDengine).
12

D
danielclow 已提交
13
## Run TDengine
14

15 16 17 18 19 20 21 22 23 24 25 26 27
If Docker is already installed on your computer, pull the latest TDengine Docker container image:

```shell
docker pull tdengine/tdengine:latest
```

Or the container image of specific version:

```shell
docker pull tdengine/tdengine:3.0.1.4
```

And then run the following command:
28 29

```shell
D
danielclow 已提交
30
docker run -d -p 6030:6030 -p 6041:6041 -p 6043-6049:6043-6049 -p 6043-6049:6043-6049/udp tdengine/tdengine
31 32
```

33
Note that TDengine Server 3.0 uses TCP port 6030. Port 6041 is used by taosAdapter for the REST API service. Ports 6043 through 6049 are used by taosAdapter for other connectors. You can open these ports as needed.
34

L
liuyuan 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
If you need to persist data to a specific directory on your local machine, And then run the following command:
```shell
docker run -d -v ~/data/taos/dnode/data:/var/lib/taos \
  -v ~/data/taos/dnode/log:/var/log/taos \
  -p 6030:6030 -p 6041:6041 -p 6043-6049:6043-6049 -p 6043-6049:6043-6049/udp tdengine/tdengine
```
:::note

* /var/lib/taos: TDengine's default data file directory. The location can be changed via [configuration file]. you can modify ~/data/taos/dnode/data to your own data directory
* /var/log/taos: TDengine's default log file directory. The location can be changed via [configure file]. you can modify ~/data/taos/dnode/log to your own log directory

  :::



D
danielclow 已提交
50
Run the following command to ensure that your container is running:
51 52 53 54 55

```shell
docker ps
```

56
Enter the container and open the `bash` shell:
57 58 59 60 61

```shell
docker exec -it <container name> bash
```

D
danielclow 已提交
62
You can now access TDengine or run other Linux commands.
63

D
danielclow 已提交
64
Note: For information about installing docker, see the [official documentation](https://docs.docker.com/get-docker/).
65

66
## Open the TDengine CLI
67

68
On the container, run the following command to open the TDengine CLI:
69

70 71
```
$ taos
72

73
taos>
74

75
```
76

77
## Test data insert performance
78

79
After your TDengine Server is running normally, you can run the taosBenchmark utility to test its performance:
80

wafwerar's avatar
wafwerar 已提交
81
Start TDengine service and execute `taosBenchmark` (formerly named `taosdemo`) in a terminal.
82

83 84
```bash
taosBenchmark
85 86
```

87
This command creates the `meters` supertable in the `test` database. In the `meters` supertable, it then creates 10,000 subtables named `d0` to `d9999`. Each table has 10,000 rows and each row has four columns: `ts`, `current`, `voltage`, and `phase`. The timestamps of the data in these columns range from 2017-07-14 10:40:00 000 to 2017-07-14 10:40:09 999. Each table is randomly assigned a `groupId` tag from 1 to 10 and a `location` tag of either `California.Campbell`, `California.Cupertino`, `California.LosAngeles`, `California.MountainView`, `California.PaloAlto`, `California.SanDiego`, `California.SanFrancisco`, `California.SanJose`, `California.SantaClara` or `California.Sunnyvale`.
88 89

The `taosBenchmark` command creates a deployment with 100 million data points that you can use for testing purposes. The time required to create the deployment depends on your hardware. On most modern servers, the deployment is created in ten to twenty seconds.
90

91
You can customize the test deployment that taosBenchmark creates by specifying command-line parameters. For information about command-line parameters, run the `taosBenchmark --help` command. For more information about taosBenchmark, see [taosBenchmark](../../reference/taosbenchmark).
92

93
## Test data query performance
94

95
After using `taosBenchmark` to create your test deployment, you can run queries in the TDengine CLI to test its performance:
96

97
From the TDengine CLI (taos) query the number of rows in the `meters` supertable:
98 99

```sql
100
SELECT COUNT(*) FROM test.meters;
101 102
```

D
danielclow 已提交
103
Query the average, maximum, and minimum values of all 100 million rows of data:
104 105

```sql
106
SELECT AVG(current), MAX(voltage), MIN(phase) FROM test.meters;
107 108
```

109
Query the number of rows whose `location` tag is `California.SanFrancisco`:
110 111

```sql
112
SELECT COUNT(*) FROM test.meters WHERE location = "California.SanFrancisco";
113 114
```

D
danielclow 已提交
115
Query the average, maximum, and minimum values of all rows whose `groupId` tag is `10`:
116 117

```sql
118
SELECT AVG(current), MAX(voltage), MIN(phase) FROM test.meters WHERE groupId = 10;
119 120
```

121
Query the average, maximum, and minimum values for table `d10` in 10 second intervals:
122 123

```sql
124
SELECT FIRST(ts), AVG(current), MAX(voltage), MIN(phase) FROM test.d10 INTERVAL(10s);
125
```
126 127

In the query above you are selecting the first timestamp (ts) in the interval, another way of selecting this would be `\_wstart` which will give the start of the time window. For more information about windowed queries, see [Time-Series Extensions](../../taos-sql/distinguished/).
128

D
danielclow 已提交
129
## Additional Information
130

L
liuyuan 已提交
131
For more information about deploying TDengine in a Docker environment, see [Deploying TDengine with Docker](../../deployment/docker).