go.mdx 10.2 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
---

7
## 总体介绍
B
Bo Ding 已提交
8

9
driver-go 实现 Go [database/sql](https://golang.org/pkg/database/sql/) 包的 TDengine 驱动程序,同时提供通过本地的客户端驱动程序直接与服务端程序 taosd 进行订阅、 schemaless 写入和 stmt 功能。
B
Bo Ding 已提交
10

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

13
## 支持的平台
B
Bo Ding 已提交
14

15 16 17 18
| **CPU 类型** | x6464bit |        |        | aarch64 | aarch32 |
|------------|------------|--------|--------|---------|---------|
| **OS 类型**  | Linux      | Win64  | Win32  | Linux   | Linux   |
| **支持与否**   | **支持**     | **支持** | **支持** | **支持**  | **支持**  |
B
Bo Ding 已提交
19

20
## 版本支持
B
Bo Ding 已提交
21

22 23 24 25
|   分支    |                      功能                       | 建议 taosd 版本 |
|:-------:|:---------------------------------------------:|:-----------:|
| master  |    database/sqlcgo)、订阅、schemaless写入、stmt     | 2.2.0.0 及以上 |
| develop | database/sqlcgo & REST)、订阅、schemaless写入、stmt | 2.4.0.4及以上  |
B
Bo Ding 已提交
26

27
## 支持的特性
B
Bo Ding 已提交
28

29
### 本地连接
B
Bo Ding 已提交
30

31
`本地连接` 指连接器通过本地的客户端驱动程序直接与服务端程序 taosd 建立连接。
B
Bo Ding 已提交
32

33 34 35 36
* database/sql (cgo 模式)
* 订阅
* schemaless
* stmt
B
Bo Ding 已提交
37

38
### REST 连接
B
Bo Ding 已提交
39

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

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

44
## 安装步骤
B
Bo Ding 已提交
45

46
### 安装前的准备
B
Bo Ding 已提交
47

48 49 50
* taos本地的客户端
* Go 1.14 及以上
* GCC 4.8.5 及以上
B
Bo Ding 已提交
51

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

54 55
* ```go env```
* ```gcc -v```
B
Bo Ding 已提交
56

57
### 使用 go get 安装
B
Bo Ding 已提交
58

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

61
## 建立连接
B
Bo Ding 已提交
62

63
### DSN
B
Bo Ding 已提交
64

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

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

71
完整形式的 DSN
B
Bo Ding 已提交
72

73 74 75
```text
username:password@protocol(address)/dbname?param=value
```
B
Bo Ding 已提交
76

77
### 建立本地连接
B
Bo Ding 已提交
78

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

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

83
* configPath 指定 taos.cfg 目录
B
Bo Ding 已提交
84

85
示例:
B
Bo Ding 已提交
86

87 88
```go
package main
B
Bo Ding 已提交
89

90 91 92
import (
    "database/sql"
    "fmt"
B
Bo Ding 已提交
93

94 95
    _ "github.com/taosdata/driver-go/v2/taosSql"
)
B
Bo Ding 已提交
96

97 98 99 100 101 102 103 104 105
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 已提交
106

107
### 建立 REST 连接
B
Bo Ding 已提交
108

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

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

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

116
示例:
B
Bo Ding 已提交
117

118 119
```go
package main
B
Bo Ding 已提交
120

121 122 123
import (
    "database/sql"
    "fmt"
B
Bo Ding 已提交
124

125 126
    _ "github.com/taosdata/driver-go/v2/taosRestful"
)
B
Bo Ding 已提交
127

128 129 130 131 132 133 134 135 136
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 已提交
137

138
## 示例程序
B
Bo Ding 已提交
139

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

142 143
* [示例程序](https://github.com/taosdata/TDengine/tree/develop/examples/go)
* [视频教程](https://www.taosdata.com/blog/2020/11/11/1951.html)
B
Bo Ding 已提交
144 145 146

### 使用限制

147 148 149
由于 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 已提交
150

151
完整示例如下:
B
Bo Ding 已提交
152

153
```go
B
Bo Ding 已提交
154 155 156 157 158 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
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)
    }
}
```

### 常见问题

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 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
* 无法找到包 `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 已提交
316

317
设置表名。
B
Bo Ding 已提交
318

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

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

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

325
绑定多行数据。
B
Bo Ding 已提交
326

327
* `func (stmt *InsertStmt) AddBatch() error`
B
Bo Ding 已提交
328

329
添加到批处理。
B
Bo Ding 已提交
330

331
* `func (stmt *InsertStmt) Execute() error`
B
Bo Ding 已提交
332

333
执行 stmt
B
Bo Ding 已提交
334

335
* `func (stmt *InsertStmt) GetAffectedRows() int`
B
Bo Ding 已提交
336

337
获取受影响行数。
B
Bo Ding 已提交
338

339
* `func (stmt *InsertStmt) Close() error`
B
Bo Ding 已提交
340

341
结束 stmt