Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8f1f423c
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22017
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看板
提交
8f1f423c
编写于
3月 14, 2023
作者:
H
Haojun Liao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(tmq): fix the error in tmq.
上级
8a9746d2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
11 deletion
+8
-11
source/client/src/clientTmq.c
source/client/src/clientTmq.c
+8
-9
utils/test/c/tmqSim.c
utils/test/c/tmqSim.c
+0
-2
未找到文件。
source/client/src/clientTmq.c
浏览文件 @
8f1f423c
...
...
@@ -24,8 +24,6 @@
#include "tref.h"
#include "ttimer.h"
#define VG_POLL_IGNORE_TICK 100
struct
SMqMgmt
{
int8_t
inited
;
tmr_h
timer
;
...
...
@@ -134,7 +132,7 @@ typedef struct {
int32_t
vgId
;
int32_t
vgStatus
;
int32_t
vgSkipCnt
;
int
32_t
vgIgnoreCnt
;
// once empty block is received, idle for ignoreCnt then start to poll data
int
64_t
emptyBlockReceiveTs
;
// once empty block is received, idle for ignoreCnt then start to poll data
SEpSet
epSet
;
}
SMqClientVg
;
...
...
@@ -1403,7 +1401,7 @@ static void initClientTopicFromRsp(SMqClientTopic* pTopic, SMqSubTopicEp* pTopic
.
epSet
=
pVgEp
->
epSet
,
.
vgStatus
=
TMQ_VG_STATUS__IDLE
,
.
vgSkipCnt
=
0
,
.
vgIgnoreCnt
=
0
,
.
emptyBlockReceiveTs
=
0
,
};
taosArrayPush
(
pTopic
->
vgs
,
&
clientVg
);
...
...
@@ -1704,10 +1702,9 @@ static int32_t tmqPollImpl(tmq_t* tmq, int64_t timeout) {
for
(
int
j
=
0
;
j
<
numOfVg
;
j
++
)
{
SMqClientVg
*
pVg
=
taosArrayGet
(
pTopic
->
vgs
,
j
);
if
(
pVg
->
vgIgnoreCnt
>
0
)
{
pVg
->
vgIgnoreCnt
-=
1
;
tscTrace
(
"consumer:0x%"
PRIx64
" epoch %d, vgId:%d idle for %d tick before poll"
,
tmq
->
consumerId
,
tmq
->
epoch
,
pVg
->
vgId
,
pVg
->
vgIgnoreCnt
);
if
(
taosGetTimestampMs
()
-
pVg
->
emptyBlockReceiveTs
<
100
)
{
// less than 100ms
tscTrace
(
"consumer:0x%"
PRIx64
" epoch %d, vgId:%d idle for 100ms before start next poll"
,
tmq
->
consumerId
,
tmq
->
epoch
,
pVg
->
vgId
);
continue
;
}
...
...
@@ -1846,9 +1843,11 @@ static void* tmqHandleAllRsp(tmq_t* tmq, int64_t timeout, bool pollIfReset) {
rspWrapper
=
NULL
;
tscDebug
(
"consumer:0x%"
PRIx64
" taosx empty block received, vgId:%d, reqId:0x%"
PRIx64
,
tmq
->
consumerId
,
pVg
->
vgId
,
pollRspWrapper
->
reqId
);
pVg
->
vgIgnoreCnt
=
VG_POLL_IGNORE_TICK
;
pVg
->
emptyBlockReceiveTs
=
taosGetTimestampMs
()
;
taosFreeQitem
(
pollRspWrapper
);
continue
;
}
else
{
pVg
->
emptyBlockReceiveTs
=
0
;
// reset the ts
}
// build rsp
...
...
utils/test/c/tmqSim.c
浏览文件 @
8f1f423c
...
...
@@ -735,9 +735,7 @@ void build_consumer(SThreadInfo* pInfo) {
}
pInfo
->
tmq
=
tmq_consumer_new
(
conf
,
NULL
,
0
);
tmq_conf_destroy
(
conf
);
return
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录