Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
bd828cc9
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
bd828cc9
编写于
6月 07, 2023
作者:
W
wade zhang
提交者:
GitHub
6月 07, 2023
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #21596 from taosdata/docs/xftan/TD-24608
docs: go connector add tmq assignment and seek
上级
f9ba6d93
09809f2f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
42 addition
and
6 deletion
+42
-6
docs/en/14-reference/03-connector/05-go.mdx
docs/en/14-reference/03-connector/05-go.mdx
+21
-3
docs/zh/08-connector/20-go.mdx
docs/zh/08-connector/20-go.mdx
+21
-3
未找到文件。
docs/en/14-reference/03-connector/05-go.mdx
浏览文件 @
bd828cc9
...
@@ -29,7 +29,7 @@ REST connections are supported on all platforms that can run Go.
...
@@ -29,7 +29,7 @@ REST connections are supported on all platforms that can run Go.
##
Version
support
##
Version
support
Please
refer
to
[
version
support
list
](
/
reference
/
connector
#
version
-
support
)
Please
refer
to
[
version
support
list
](
https
://
github
.
com
/
taosdata
/
driver
-
go
#
remind
)
##
Supported
features
##
Supported
features
...
@@ -379,6 +379,15 @@ Note: `tmq.TopicPartition` is reserved for compatibility purpose
...
@@ -379,6 +379,15 @@ Note: `tmq.TopicPartition` is reserved for compatibility purpose
Commit
information
.
Commit
information
.
*
`
func
(
c
*
Consumer
)
Assignment
()
(
partitions
[]
tmq
.
TopicPartition
,
err
error
)`
Get
Assignment
(
TDengine
>=
3.0.5.0
and
driver
-
go
>=
v3
.5.0
are
required
).
*
`
func
(
c
*
Consumer
)
Seek
(
partition
tmq
.
TopicPartition
,
ignoredTimeoutMs
int
)
error
`
Note
:
`
ignoredTimeoutMs
`
is
reserved
for
compatibility
purpose
Seek
offset
(
TDengine
>=
3.0.5.0
and
driver
-
go
>=
v3
.5.0
are
required
).
*
`
func
(
c
*
Consumer
)
Unsubscribe
()
error
`
*
`
func
(
c
*
Consumer
)
Unsubscribe
()
error
`
Unsubscribe
.
Unsubscribe
.
...
@@ -468,6 +477,15 @@ Note: `tmq.TopicPartition` is reserved for compatibility purpose
...
@@ -468,6 +477,15 @@ Note: `tmq.TopicPartition` is reserved for compatibility purpose
Commit
information
.
Commit
information
.
*
`
func
(
c
*
Consumer
)
Assignment
()
(
partitions
[]
tmq
.
TopicPartition
,
err
error
)`
Get
Assignment
(
TDengine
>=
3.0.5.0
and
driver
-
go
>=
v3
.5.0
are
required
).
*
`
func
(
c
*
Consumer
)
Seek
(
partition
tmq
.
TopicPartition
,
ignoredTimeoutMs
int
)
error
`
Note
:
`
ignoredTimeoutMs
`
is
reserved
for
compatibility
purpose
Seek
offset
(
TDengine
>=
3.0.5.0
and
driver
-
go
>=
v3
.5.0
are
required
).
*
`
func
(
c
*
Consumer
)
Unsubscribe
()
error
`
*
`
func
(
c
*
Consumer
)
Unsubscribe
()
error
`
Unsubscribe
.
Unsubscribe
.
...
@@ -476,7 +494,7 @@ Unsubscribe.
...
@@ -476,7 +494,7 @@ Unsubscribe.
Close
consumer
.
Close
consumer
.
For
a
complete
example
see
[
GitHub
sample
file
](
https
://
github
.
com
/
taosdata
/
driver
-
go
/
blob
/
3.0
/
examples
/
tmqoverws
/
main
.
go
)
For
a
complete
example
see
[
GitHub
sample
file
](
https
://
github
.
com
/
taosdata
/
driver
-
go
/
blob
/
main
/
examples
/
tmqoverws
/
main
.
go
)
###
parameter
binding
via
WebSocket
###
parameter
binding
via
WebSocket
...
@@ -524,7 +542,7 @@ For a complete example see [GitHub sample file](https://github.com/taosdata/driv
...
@@ -524,7 +542,7 @@ For a complete example see [GitHub sample file](https://github.com/taosdata/driv
Closes
the
parameter
binding
.
Closes
the
parameter
binding
.
For
a
complete
example
see
[
GitHub
sample
file
](
https
://
github
.
com
/
taosdata
/
driver
-
go
/
blob
/
3.0
/
examples
/
stmtoverws
/
main
.
go
)
For
a
complete
example
see
[
GitHub
sample
file
](
https
://
github
.
com
/
taosdata
/
driver
-
go
/
blob
/
main
/
examples
/
stmtoverws
/
main
.
go
)
##
API
Reference
##
API
Reference
...
...
docs/zh/08-connector/20-go.mdx
浏览文件 @
bd828cc9
...
@@ -30,7 +30,7 @@ REST 连接支持所有能运行 Go 的平台。
...
@@ -30,7 +30,7 @@ REST 连接支持所有能运行 Go 的平台。
##
版本支持
##
版本支持
请参考
[
版本支持列表
](
../#
版本支持
)
请参考
[
版本支持列表
](
https
://
github
.
com
/
taosdata
/
driver
-
go
#
remind
)
##
支持的功能特性
##
支持的功能特性
...
@@ -383,6 +383,15 @@ func main() {
...
@@ -383,6 +383,15 @@ func main() {
提交消息。
提交消息。
*
`
func
(
c
*
Consumer
)
Assignment
()
(
partitions
[]
tmq
.
TopicPartition
,
err
error
)`
获取消费进度。
(
需要
TDengine
>=
3.0.5.0
,
driver
-
go
>=
v3
.5.0
)
*
`
func
(
c
*
Consumer
)
Seek
(
partition
tmq
.
TopicPartition
,
ignoredTimeoutMs
int
)
error
`
注意:出于兼容目的保留
`
ignoredTimeoutMs
`
参数,当前未使用
按照指定的进度消费。
(
需要
TDengine
>=
3.0.5.0
,
driver
-
go
>=
v3
.5.0
)
*
`
func
(
c
*
Consumer
)
Close
()
error
`
*
`
func
(
c
*
Consumer
)
Close
()
error
`
关闭连接。
关闭连接。
...
@@ -468,11 +477,20 @@ func main() {
...
@@ -468,11 +477,20 @@ func main() {
提交消息。
提交消息。
*
`
func
(
c
*
Consumer
)
Assignment
()
(
partitions
[]
tmq
.
TopicPartition
,
err
error
)`
获取消费进度。
(
需要
TDengine
>=
3.0.5.0
,
driver
-
go
>=
v3
.5.0
)
*
`
func
(
c
*
Consumer
)
Seek
(
partition
tmq
.
TopicPartition
,
ignoredTimeoutMs
int
)
error
`
注意:出于兼容目的保留
`
ignoredTimeoutMs
`
参数,当前未使用
按照指定的进度消费。
(
需要
TDengine
>=
3.0.5.0
,
driver
-
go
>=
v3
.5.0
)
*
`
func
(
c
*
Consumer
)
Close
()
error
`
*
`
func
(
c
*
Consumer
)
Close
()
error
`
关闭连接。
关闭连接。
完整订阅示例参见
[
GitHub
示例文件
](
https
://
github
.
com
/
taosdata
/
driver
-
go
/
blob
/
3.0
/
examples
/
tmqoverws
/
main
.
go
)
完整订阅示例参见
[
GitHub
示例文件
](
https
://
github
.
com
/
taosdata
/
driver
-
go
/
blob
/
main
/
examples
/
tmqoverws
/
main
.
go
)
###
通过
WebSocket
进行参数绑定
###
通过
WebSocket
进行参数绑定
...
@@ -520,7 +538,7 @@ func main() {
...
@@ -520,7 +538,7 @@ func main() {
结束参数绑定。
结束参数绑定。
完整参数绑定示例参见
[
GitHub
示例文件
](
https
://
github
.
com
/
taosdata
/
driver
-
go
/
blob
/
3.0
/
examples
/
stmtoverws
/
main
.
go
)
完整参数绑定示例参见
[
GitHub
示例文件
](
https
://
github
.
com
/
taosdata
/
driver
-
go
/
blob
/
main
/
examples
/
stmtoverws
/
main
.
go
)
##
API
参考
##
API
参考
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录