go.mdx 10.7 KB
Newer Older
B
Bo Ding 已提交
1 2
---
sidebar_position: 4
D
dingbo 已提交
3
sidebar_label: Go
D
dingbo 已提交
4
title: Go Connector
B
Bo Ding 已提交
5 6
---

sangshuduo's avatar
sangshuduo 已提交
7 8
import Preparition from "./_preparition.mdx"

9
## 总体介绍
B
Bo Ding 已提交
10

sangshuduo's avatar
sangshuduo 已提交
11 12 13 14 15
driver-go  TDengine 的官方 Go 语言连接器。Go 语言开发人员可以通过它开发存取 TDengine 数据库的应用软件。driver-go 实现了 Go [database/sql](https://golang.org/pkg/database/sql/) 包的接口,支持通过客户端驱动程序(taosc)原生连接 TDengine 服务端,支持数据写入、查询、订阅、schemaless 接口和参数绑定接口等功能。

driver-go 也支持使用 REST 连接 TDengine 服务端。

本文介绍如何在 Windows  Linux 环境中安装 driver-go,并通过 driver-go 连接 TDengine 数据库、进行数据查询、数据写入等基本操作。
B
Bo Ding 已提交
16

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

19
## 支持的平台
B
Bo Ding 已提交
20

21 22 23 24
| **CPU 类型** | x6464bit |        |        | aarch64 | aarch32 |
|------------|------------|--------|--------|---------|---------|
| **OS 类型**  | Linux      | Win64  | Win32  | Linux   | Linux   |
| **支持与否**   | **支持**     | **支持** | **支持** | **支持**  | **支持**  |
B
Bo Ding 已提交
25

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

28 29 30 31
|   分支    |                      功能                       | 建议 taosd 版本 |
|:-------:|:---------------------------------------------:|:-----------:|
| master  |    database/sqlcgo)、订阅、schemaless写入、stmt     | 2.2.0.0 及以上 |
| develop | database/sqlcgo & REST)、订阅、schemaless写入、stmt | 2.4.0.4及以上  |
B
Bo Ding 已提交
32

33
## 支持的特性
B
Bo Ding 已提交
34

D
dingbo 已提交
35
### 原生连接
B
Bo Ding 已提交
36

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

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

44
### REST 连接
B
Bo Ding 已提交
45

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

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

50
## 安装步骤
B
Bo Ding 已提交
51

52
### 安装前的准备
B
Bo Ding 已提交
53

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

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

59 60
* ```go env```
* ```gcc -v```
B
Bo Ding 已提交
61

62
### 使用 go get 安装
B
Bo Ding 已提交
63

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

66
## 建立连接
B
Bo Ding 已提交
67

68
### DSN
B
Bo Ding 已提交
69

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

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

76
完整形式的 DSN
B
Bo Ding 已提交
77

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

D
dingbo 已提交
82
### 建立原生连接
B
Bo Ding 已提交
83

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

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

88
* configPath 指定 taos.cfg 目录
B
Bo Ding 已提交
89

90
示例:
B
Bo Ding 已提交
91

92 93
```go
package main
B
Bo Ding 已提交
94

95 96 97
import (
    "database/sql"
    "fmt"
B
Bo Ding 已提交
98

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

102 103 104 105 106 107 108 109 110
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 已提交
111

112
### 建立 REST 连接
B
Bo Ding 已提交
113

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

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

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

121
示例:
B
Bo Ding 已提交
122

123 124
```go
package main
B
Bo Ding 已提交
125

126 127 128
import (
    "database/sql"
    "fmt"
B
Bo Ding 已提交
129

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

133 134 135 136 137 138 139 140 141
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 已提交
142

143
## 示例程序
B
Bo Ding 已提交
144

145
使用 Go 连接器的示例代码请参考:
B
Bo Ding 已提交
146

147 148
* [示例程序](https://github.com/taosdata/TDengine/tree/develop/examples/go)
* [视频教程](https://www.taosdata.com/blog/2020/11/11/1951.html)
B
Bo Ding 已提交
149 150 151

### 使用限制

152 153 154
由于 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 已提交
155

156
完整示例如下:
B
Bo Ding 已提交
157

158
```go
B
Bo Ding 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 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
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)
    }
}
```

### 常见问题

208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 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
* 无法找到包 `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

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

### 常用 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`

预处理 sql 语句。

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

322
设置表名。
B
Bo Ding 已提交
323

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

326
设置子表名。
B
Bo Ding 已提交
327

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

330
绑定多行数据。
B
Bo Ding 已提交
331

332
* `func (stmt *InsertStmt) AddBatch() error`
B
Bo Ding 已提交
333

334
添加到批处理。
B
Bo Ding 已提交
335

336
* `func (stmt *InsertStmt) Execute() error`
B
Bo Ding 已提交
337

338
执行 stmt
B
Bo Ding 已提交
339

340
* `func (stmt *InsertStmt) GetAffectedRows() int`
B
Bo Ding 已提交
341

342
获取受影响行数。
B
Bo Ding 已提交
343

344
* `func (stmt *InsertStmt) Close() error`
B
Bo Ding 已提交
345

346
结束 stmt