Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
4d0b8966
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
4d0b8966
编写于
3月 01, 2022
作者:
L
Liu Jicong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
merge from 3.0
上级
b5f5400d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
27 addition
and
11 deletion
+27
-11
source/client/src/clientHb.c
source/client/src/clientHb.c
+6
-6
source/client/src/tmq.c
source/client/src/tmq.c
+12
-0
source/os/src/osFile.c
source/os/src/osFile.c
+9
-5
未找到文件。
source/client/src/clientHb.c
浏览文件 @
4d0b8966
...
...
@@ -288,7 +288,7 @@ int32_t hbQueryHbReqHandle(SClientHbKey *connKey, void *param, SClientHbReq *req
return
TSDB_CODE_SUCCESS
;
}
int32_t
hbMqHbReqHandle
(
SClientHbKey
*
connKey
,
void
*
param
,
SClientHbReq
*
req
)
{
return
0
;
}
int32_t
hbMqHbReqHandle
(
SClientHbKey
*
connKey
,
void
*
param
,
SClientHbReq
*
req
)
{}
void
hbMgrInitMqHbHandle
()
{
clientHbMgr
.
reqHandle
[
HEARTBEAT_TYPE_QUERY
]
=
hbQueryHbReqHandle
;
...
...
@@ -448,7 +448,7 @@ static void hbStopThread() {
}
SAppHbMgr
*
appHbMgrInit
(
SAppInstInfo
*
pAppInstInfo
,
char
*
key
)
{
/*return NULL;*/
return
NULL
;
hbMgrInit
();
SAppHbMgr
*
pAppHbMgr
=
malloc
(
sizeof
(
SAppHbMgr
));
if
(
pAppHbMgr
==
NULL
)
{
...
...
@@ -506,7 +506,7 @@ void appHbMgrCleanup(void) {
}
int
hbMgrInit
()
{
/*return 0;*/
return
0
;
// init once
int8_t
old
=
atomic_val_compare_exchange_8
(
&
clientHbMgr
.
inited
,
0
,
1
);
if
(
old
==
1
)
return
0
;
...
...
@@ -524,7 +524,7 @@ int hbMgrInit() {
}
void
hbMgrCleanUp
()
{
/*return;*/
return
;
hbStopThread
();
// destroy all appHbMgr
...
...
@@ -563,7 +563,7 @@ int hbRegisterConnImpl(SAppHbMgr *pAppHbMgr, SClientHbKey connKey, SHbConnInfo *
}
int
hbRegisterConn
(
SAppHbMgr
*
pAppHbMgr
,
int32_t
connId
,
int64_t
clusterId
,
int32_t
hbType
)
{
/*return 0;*/
return
0
;
SClientHbKey
connKey
=
{.
connId
=
connId
,
.
hbType
=
HEARTBEAT_TYPE_QUERY
};
SHbConnInfo
info
=
{
0
};
...
...
@@ -586,7 +586,7 @@ int hbRegisterConn(SAppHbMgr *pAppHbMgr, int32_t connId, int64_t clusterId, int3
}
void
hbDeregisterConn
(
SAppHbMgr
*
pAppHbMgr
,
SClientHbKey
connKey
)
{
/*return;*/
return
;
int32_t
code
=
0
;
code
=
taosHashRemove
(
pAppHbMgr
->
activeInfo
,
&
connKey
,
sizeof
(
SClientHbKey
));
code
=
taosHashRemove
(
pAppHbMgr
->
connInfo
,
&
connKey
,
sizeof
(
SClientHbKey
));
...
...
source/client/src/tmq.c
浏览文件 @
4d0b8966
...
...
@@ -659,9 +659,12 @@ int32_t tmqPollCb(void* param, const SDataBuf* pMsg, int32_t code) {
/*printf("rsp commit off:%ld rsp off:%ld has data:%d\n", pRsp->committedOffset, pRsp->rspOffset, pRsp->numOfTopics);*/
if
(
pRsp
->
consumeRsp
.
numOfTopics
==
0
)
{
printf
(
"no data
\n
"
);
<<<<<<<
Updated
upstream
if
(
pParam
->
epoch
==
tmq
->
epoch
)
{
atomic_store_32
(
&
pVg
->
vgStatus
,
TMQ_VG_STATUS__IDLE
);
}
=======
>>>>>>>
Stashed
changes
taosFreeQitem
(
pRsp
);
return
0
;
}
...
...
@@ -979,6 +982,7 @@ tmq_message_t* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
while
(
1
)
{
/*printf("cycle\n");*/
taosReadAllQitems
(
tmq
->
mqueue
,
tmq
->
qall
);
<<<<<<<
Updated
upstream
rspMsg
=
tmqHandleAllRsp
(
tmq
,
blocking_time
,
true
);
if
(
rspMsg
)
{
return
rspMsg
;
...
...
@@ -990,6 +994,14 @@ tmq_message_t* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
return
NULL
;
}
}
=======
tmqHandleAllRsp
(
tmq
,
blocking_time
,
true
);
/*if (blocking_time != 0 && endTime - startTime > blocking_time) {*/
/*int64_t endTime = taosGetTimestampMs();*/
/*printf("normal exit\n");*/
/*return NULL;*/
/*}*/
>>>>>>>
Stashed
changes
}
}
...
...
source/os/src/osFile.c
浏览文件 @
4d0b8966
...
...
@@ -196,11 +196,11 @@ TdFilePtr taosOpenFile(const char *path, int32_t tdFileOptions) {
char
*
mode
=
NULL
;
if
(
tdFileOptions
&
TD_FILE_APPEND
)
{
mode
=
(
tdFileOptions
&
TD_FILE_TEXT
)
?
"at+"
:
"ab+"
;
}
else
if
(
tdFileOptions
&
TD_FILE_TRUNC
)
{
}
else
if
(
tdFileOptions
&
TD_FILE_TRUNC
)
{
mode
=
(
tdFileOptions
&
TD_FILE_TEXT
)
?
"wt+"
:
"wb+"
;
}
else
if
((
tdFileOptions
&
TD_FILE_READ
)
&&
!
(
tdFileOptions
&
TD_FILE_WRITE
))
{
}
else
if
((
tdFileOptions
&
TD_FILE_READ
)
&&
!
(
tdFileOptions
&
TD_FILE_WRITE
))
{
mode
=
(
tdFileOptions
&
TD_FILE_TEXT
)
?
"rt"
:
"rb"
;
}
else
{
}
else
{
mode
=
(
tdFileOptions
&
TD_FILE_TEXT
)
?
"rt+"
:
"rb+"
;
}
assert
(
!
(
tdFileOptions
&
TD_FILE_EXCL
));
...
...
@@ -637,7 +637,7 @@ void taosFprintfFile(TdFilePtr pFile, const char *format, ...) {
}
assert
(
pFile
->
fp
!=
NULL
);
char
buffer
[
MAX_FPRINTFLINE_BUFFER_SIZE
]
=
{
0
};
char
buffer
[
MAX_FPRINTFLINE_BUFFER_SIZE
]
=
{
0
};
va_list
ap
;
va_start
(
ap
,
format
);
vfprintf
(
pFile
->
fp
,
format
,
ap
);
...
...
@@ -675,11 +675,15 @@ int64_t taosGetLineFile(TdFilePtr pFile, char **__restrict__ ptrBuf) {
size_t
len
=
0
;
return
getline
(
ptrBuf
,
&
len
,
pFile
->
fp
);
}
int32_t
taosEOFFile
(
TdFilePtr
pFile
)
{
int32_t
taosEOFFile
(
TdFilePtr
pFile
)
{
if
(
pFile
==
NULL
)
{
return
0
;
}
assert
(
pFile
->
fp
!=
NULL
);
<<<<<<<
Updated
upstream
return
feof
(
pFile
->
fp
);
=======
return
feof
(
pFile
->
fp
);
>>>>>>>
Stashed
changes
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录