go.mdx 10.9 KB
Newer Older
B
Bo Ding 已提交
1
---
sangshuduo's avatar
sangshuduo 已提交
2
toc_max_heading_level: 4
B
Bo Ding 已提交
3
sidebar_position: 4
D
dingbo 已提交
4
sidebar_label: Go
D
dingbo 已提交
5
title: Go Connector
B
Bo Ding 已提交
6 7
---

sangshuduo's avatar
sangshuduo 已提交
8
import Preparition from "./_preparition.mdx"
sangshuduo's avatar
sangshuduo 已提交
9 10 11 12 13
import GoInsert from "../../04-develop/03-insert-data/_go_sql.mdx"
import GoInfluxLine from "../../04-develop/03-insert-data/_go_line.mdx"
import GoOpenTSDBTelnet from "../../04-develop/03-insert-data/_go_opts_telnet.mdx"
import GoOpenTSDBJson from "../../04-develop/03-insert-data/_go_opts_json.mdx"
import GoQuery from "../../04-develop/04-query-data/_go.mdx"
sangshuduo's avatar
sangshuduo 已提交
14

15
## 总体介绍
B
Bo Ding 已提交
16

sangshuduo's avatar
sangshuduo 已提交
17
`driver-go`  TDengine 的官方 Go 语言连接器。Go 开发人员可以通过它开发存取 TDengine 集群数据的应用软件。`driver-go` 实现了 Go 语言[ database/sql ](https://golang.org/pkg/database/sql/) 包的接口。`driver-go` 支持通过客户端驱动程序(taosc)原生连接 TDengine 集群,支持数据写入、查询、订阅、schemaless 接口和参数绑定接口等功能。也支持使用 REST 接口连接 TDengine 集群。REST 接口实现的功能特性集合和原生接口有少量不同。
sangshuduo's avatar
sangshuduo 已提交
18

sangshuduo's avatar
sangshuduo 已提交
19
本文介绍如何在 Windows  Linux 环境中安装 `driver-go`,并通过 `driver-go` 连接 TDengine 集群、进行数据查询、数据写入等基本操作。
sangshuduo's avatar
sangshuduo 已提交
20

sangshuduo's avatar
sangshuduo 已提交
21
Go 连接器的源码托管在 GitHub。项目名称:driver-go。欢迎 [贡献源码](https://github.com/taosdata/driver-go)  [报告问题](https://github.com/taosdata/driver-go/issues)
B
Bo Ding 已提交
22

23
## 支持的平台
B
Bo Ding 已提交
24

sangshuduo's avatar
sangshuduo 已提交
25
请参考[支持的平台列表](/reference/connector#支持的平台)
B
Bo Ding 已提交
26

27
## 版本支持
B
Bo Ding 已提交
28

sangshuduo's avatar
sangshuduo 已提交
29
请参考[版本支持列表](/reference/connector#版本支持)
B
Bo Ding 已提交
30

sangshuduo's avatar
sangshuduo 已提交
31
## 支持的功能特性
B
Bo Ding 已提交
32

D
dingbo 已提交
33
### 原生连接
B
Bo Ding 已提交
34

sangshuduo's avatar
sangshuduo 已提交
35
“原生连接”指连接器通过客户端驱动(taosc)直接与 TDengine 集群建立连接。
B
Bo Ding 已提交
36

37 38
* database/sql (cgo 模式)
* 订阅
sangshuduo's avatar
sangshuduo 已提交
39 40
* schemaless 接口
* 参数绑定接口
B
Bo Ding 已提交
41

42
### REST 连接
B
Bo Ding 已提交
43

44
REST 连接指连接器通过 taosAdapter 组件提供的 REST API 建立与 taosd 的连接。
B
Bo Ding 已提交
45

46
`develop` 分支使用 `http client` 实现了 `database/sql` 接口。
B
Bo Ding 已提交
47

48
## 安装步骤
B
Bo Ding 已提交
49

sangshuduo's avatar
sangshuduo 已提交
50
### 安装前准备
B
Bo Ding 已提交
51

sangshuduo's avatar
sangshuduo 已提交
52
* 安装 Go 开发环境(Go 1.14 及以上,GCC 4.8.5 及以上)
sangshuduo's avatar
sangshuduo 已提交
53
<Preparition />
B
Bo Ding 已提交
54

55
配置好环境变量,检查命令:
B
Bo Ding 已提交
56

57 58
* ```go env```
* ```gcc -v```
B
Bo Ding 已提交
59

60
### 使用 go get 安装
B
Bo Ding 已提交
61

62
`go get -u github.com/taosdata/driver-go/v2@develop`
B
Bo Ding 已提交
63

64
## 建立连接
B
Bo Ding 已提交
65

66
### DSN
B
Bo Ding 已提交
67

68
数据源名称具有通用格式,例如 [PEAR DB](http://pear.php.net/manual/en/package.database.db.intro-dsn.php),但没有类型前缀(方括号表示可选):
B
Bo Ding 已提交
69

70 71 72
``` text
[username[:password]@][protocol[(address)]]/[dbname][?param1=value1&...&paramN=valueN]
```
B
Bo Ding 已提交
73

74
完整形式的 DSN
B
Bo Ding 已提交
75

76 77 78
```text
username:password@protocol(address)/dbname?param=value
```
B
Bo Ding 已提交
79

D
dingbo 已提交
80
### 建立原生连接
B
Bo Ding 已提交
81

82
_taosSql_ 通过 cgo 实现了 Go  `database/sql/driver` 接口。只需要引入驱动就可以使用[`database/sql`](https://golang.org/pkg/database/sql/)的接口。
B
Bo Ding 已提交
83

84
使用 `taosSql` 作为 `driverName` 并且使用一个正确的 [DSN](#DSN) 作为 `dataSourceName`DSN 支持的参数:
B
Bo Ding 已提交
85

86
* configPath 指定 taos.cfg 目录
B
Bo Ding 已提交
87

88
示例:
B
Bo Ding 已提交
89

90 91
```go
package main
B
Bo Ding 已提交
92

93 94 95
import (
    "database/sql"
    "fmt"
B
Bo Ding 已提交
96

97 98
    _ "github.com/taosdata/driver-go/v2/taosSql"
)
B
Bo Ding 已提交
99

100 101 102 103 104 105 106 107 108
func main() {
    var taosUri = "root:taosdata/tcp(localhost:6030)/"
    taos, err := sql.Open("taosSql", taosUri)
    if err != nil {
        fmt.Println("failed to connect TDengine, err:", err)
        return
    }
}
```
B
Bo Ding 已提交
109

110
### 建立 REST 连接
B
Bo Ding 已提交
111

112
_taosRestful_ 通过 `http client` 实现了 Go  `database/sql/driver` 接口。只需要引入驱动就可以使用[`database/sql`](https://golang.org/pkg/database/sql/)的接口。
B
Bo Ding 已提交
113

114
使用 `taosRestful` 作为 `driverName` 并且使用一个正确的 [DSN](#DSN) 作为 `dataSourceName`DSN 支持的参数:
B
Bo Ding 已提交
115

116 117
* `disableCompression` 是否接受压缩数据,默认为 true 不接受压缩数据,如果传输数据使用 gzip 压缩设置为 false
* `readBufferSize` 读取数据的缓存区大小默认为 4K4096),当查询结果数据量多时可以适当调大该值。
B
Bo Ding 已提交
118

119
示例:
B
Bo Ding 已提交
120

121 122
```go
package main
B
Bo Ding 已提交
123

124 125 126
import (
    "database/sql"
    "fmt"
B
Bo Ding 已提交
127

128 129
    _ "github.com/taosdata/driver-go/v2/taosRestful"
)
B
Bo Ding 已提交
130

131 132 133 134 135 136 137 138 139
func main() {
    var taosUri = "root:taosdata/http(localhost:6041)/"
    taos, err := sql.Open("taosRestful", taosUri)
    if err != nil {
        fmt.Println("failed to connect TDengine, err:", err)
        return
    }
}
```
B
Bo Ding 已提交
140

sangshuduo's avatar
sangshuduo 已提交
141
## 使用示例
B
Bo Ding 已提交
142

sangshuduo's avatar
sangshuduo 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
### 写入数据

#### SQL 写入

<GoInsert />

#### InfluxDB 行协议写入

<GoInfluxLine />

#### OpenTSDB Telnet 行协议写入

<GoOpenTSDBTelnet />

#### OpenTSDB JSON 行协议写入

<GoOpenTSDBJson />

### 查询数据

<GoQuery />

### 更多示例程序
B
Bo Ding 已提交
166

167 168
* [示例程序](https://github.com/taosdata/TDengine/tree/develop/examples/go)
* [视频教程](https://www.taosdata.com/blog/2020/11/11/1951.html)
B
Bo Ding 已提交
169 170 171

### 使用限制

172 173 174
由于 REST 接口无状态所以 `use db` 语法不会生效,需要将 db 名称放到 SQL 语句中,如:`create table if not exists tb1 (ts timestamp, a int)`改为`create table if not exists test.tb1 (ts timestamp, a int)`否则将报错`[0x217] Database not specified or available`

也可以将 db 名称放到 DSN 中,将 `root:taosdata@http(localhost:6041)/` 改为 `root:taosdata@http(localhost:6041)/test`,此方法在 TDengine 2.4.0.5 版本的 taosAdapter 开始支持。当指定的 db 不存在时执行 `create database` 语句不会报错,而执行针对该 db 的其他查询或写入操作会报错。
B
Bo Ding 已提交
175

176
完整示例如下:
B
Bo Ding 已提交
177

178
```go
B
Bo Ding 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
package main

import (
    "database/sql"
    "fmt"
    "time"

    _ "github.com/taosdata/driver-go/v2/taosRestful"
)

func main() {
    var taosDSN = "root:taosdata@http(localhost:6041)/test"
    taos, err := sql.Open("taosRestful", taosDSN)
    if err != nil {
        fmt.Println("failed to connect TDengine, err:", err)
        return
    }
    defer taos.Close()
    taos.Exec("create database if not exists test")
    taos.Exec("create table if not exists tb1 (ts timestamp, a int)")
    _, err = taos.Exec("insert into tb1 values(now, 0)(now+1s,1)(now+2s,2)(now+3s,3)")
    if err != nil {
        fmt.Println("failed to insert, err:", err)
        return
    }
    rows, err := taos.Query("select * from tb1")
    if err != nil {
        fmt.Println("failed to select from table, err:", err)
        return
    }

    defer rows.Close()
    for rows.Next() {
        var r struct {
            ts time.Time
            a  int
        }
        err := rows.Scan(&r.ts, &r.a)
        if err != nil {
            fmt.Println("scan error:\n", err)
            return
        }
        fmt.Println(r.ts, r.a)
    }
}
```

### 常见问题

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
* 无法找到包 `github.com/taosdata/driver-go/v2/taosRestful`

 `go.mod`  require 块对`github.com/taosdata/driver-go/v2`的引用改为`github.com/taosdata/driver-go/v2 develop`,之后执行 `go mod tidy`

* database/sql  stmt 相关接口崩溃

REST 不支持 stmt 相关接口,建议使用`db.Exec``db.Query`

* 使用 `use db` 语句后执行其他语句报错 `[0x217] Database not specified or available`

 REST 接口中 SQL 语句的执行无上下文关联,使用 `use db` 语句不会生效,解决办法见上方使用限制章节。

* 使用 taosSql 不报错使用 taosRestful 报错 `[0x217] Database not specified or available`

因为 REST 接口无状态,使用 `use db` 语句不会生效,解决办法见上方使用限制章节。

* 升级 `github.com/taosdata/driver-go/v2/taosRestful`

 `go.mod` 文件中对 `github.com/taosdata/driver-go/v2` 的引用改为 `github.com/taosdata/driver-go/v2 develop`,之后执行 `go mod tidy`

* `readBufferSize` 参数调大后无明显效果

`readBufferSize` 调大后会减少获取结果时 `syscall` 的调用。如果查询结果的数据量不大,修改该参数不会带来明显提升,如果该参数修改过大,瓶颈会在解析 JSON 数据。如果需要优化查询速度,需要根据实际情况调整该值来达到查询效果最优。

* `disableCompression` 参数设置为 `false` 时查询效率降低

 `disableCompression` 参数设置为 `false` 时查询结果会使用 `gzip` 压缩后传输,拿到数据后要先进行 `gzip` 解压。

* `go get` 命令无法获取包,或者获取包超时

设置 Go 代理 `go env -w GOPROXY=https://goproxy.cn,direct`

### 常用 API

#### `database/sql`

* `sql.Open(DRIVER_NAME string, dataSourceName string) *DB`

 API 用来打开 DB,返回一个类型为 \*DB 的对象。

**注意**  API 成功创建的时候,并没有做权限等检查,只有在真正执行 Query 或者 Exec 的时候才能真正的去创建连接,并同时检查 user/password/host/port 是不是合法。

* `func (db *DB) Exec(query string, args ...interface{}) (Result, error)`

`sql.Open` 内置的方法,用来执行非查询相关 SQL

* `func (db *DB) Query(query string, args ...interface{}) (*Rows, error)`

`sql.Open` 内置的方法,用来执行查询语句。

#### 高级功能

af 包封装了订阅、stmt  TDengine 高级功能。

* `af.Open(host, user, pass, db string, port int) (*Connector, error)`

 API 通过 cgo 创建与 taosd 的连接。

* `func (conn *Connector) Close() error`

关闭与 taosd 的连接。

* `func (conn *Connector) StmtExecute(sql string, params *param.Param) (res driver.Result, err error)`

stmt 单行插入。

* `func (conn *Connector) StmtQuery(sql string, params *param.Param) (rows driver.Rows, err error)`

stmt 查询,返回 `database/sql/driver` 包的 `Rows` 结构。

##### 订阅

* `func (conn *Connector) Subscribe(restart bool, topic string, sql string, interval time.Duration) (Subscriber, error)`

订阅数据。

* `func (s *taosSubscriber) Consume() (driver.Rows, error)`

消费订阅数据,返回 `database/sql/driver` 包的 `Rows` 结构。

* `func (s *taosSubscriber) Unsubscribe(keepProgress bool)`

取消订阅数据。

##### schemaless 写入

* `func (conn *Connector) InfluxDBInsertLines(lines []string, precision string) error`

写入 influxDB 行协议。

* `func (conn *Connector) OpenTSDBInsertTelnetLines(lines []string) error`

写入 OpenTDSB telnet 协议。

* `func (conn *Connector) OpenTSDBInsertJsonPayload(payload string) error`

写入 OpenTSDB json 协议。

##### 批量 stmt 插入

* `func (conn *Connector) InsertStmt() *insertstmt.InsertStmt`

初始化 stmt

* `func (stmt *InsertStmt) Prepare(sql string) error`

sangshuduo's avatar
sangshuduo 已提交
334
预处理 SQL 语句。
335 336

* `func (stmt *InsertStmt) SetTableName(name string) error`
B
Bo Ding 已提交
337

338
设置表名。
B
Bo Ding 已提交
339

340
* `func (stmt *InsertStmt) SetSubTableName(name string) error`
B
Bo Ding 已提交
341

342
设置子表名。
B
Bo Ding 已提交
343

344
* `func (stmt *InsertStmt) BindParam(params []*param.Param, bindType *param.ColumnType) error`
B
Bo Ding 已提交
345

346
绑定多行数据。
B
Bo Ding 已提交
347

348
* `func (stmt *InsertStmt) AddBatch() error`
B
Bo Ding 已提交
349

350
添加到批处理。
B
Bo Ding 已提交
351

352
* `func (stmt *InsertStmt) Execute() error`
B
Bo Ding 已提交
353

354
执行 stmt
B
Bo Ding 已提交
355

356
* `func (stmt *InsertStmt) GetAffectedRows() int`
B
Bo Ding 已提交
357

358
获取受影响行数。
B
Bo Ding 已提交
359

360
* `func (stmt *InsertStmt) Close() error`
B
Bo Ding 已提交
361

362
结束 stmt
sangshuduo's avatar
sangshuduo 已提交
363 364 365 366

## API 参考

全部 API  [driver-go 文档](https://pkg.go.dev/github.com/taosdata/driver-go/v2)