Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
0822e82d
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看板
提交
0822e82d
编写于
4月 18, 2023
作者:
A
Alex Duan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: support exit by kill heart-beat thread mode
上级
6a9bdb98
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
18 addition
and
1 deletion
+18
-1
include/client/taos.h
include/client/taos.h
+3
-0
source/client/inc/clientInt.h
source/client/inc/clientInt.h
+1
-0
source/client/src/clientHb.c
source/client/src/clientHb.c
+11
-1
tools/shell/src/shellMain.c
tools/shell/src/shellMain.c
+3
-0
未找到文件。
include/client/taos.h
浏览文件 @
0822e82d
...
@@ -225,6 +225,9 @@ DLL_EXPORT int taos_get_tables_vgId(TAOS *taos, const char *db, const char *tabl
...
@@ -225,6 +225,9 @@ DLL_EXPORT int taos_get_tables_vgId(TAOS *taos, const char *db, const char *tabl
DLL_EXPORT
int
taos_load_table_info
(
TAOS
*
taos
,
const
char
*
tableNameList
);
DLL_EXPORT
int
taos_load_table_info
(
TAOS
*
taos
,
const
char
*
tableNameList
);
// set heart beat thread quit mode , if quicByKill 1 then kill thread else quit from inner
DLL_EXPORT
void
taos_set_hb_quit
(
int8_t
quitByKill
);
/* --------------------------schemaless INTERFACE------------------------------- */
/* --------------------------schemaless INTERFACE------------------------------- */
DLL_EXPORT
TAOS_RES
*
taos_schemaless_insert
(
TAOS
*
taos
,
char
*
lines
[],
int
numLines
,
int
protocol
,
int
precision
);
DLL_EXPORT
TAOS_RES
*
taos_schemaless_insert
(
TAOS
*
taos
,
char
*
lines
[],
int
numLines
,
int
protocol
,
int
precision
);
...
...
source/client/inc/clientInt.h
浏览文件 @
0822e82d
...
@@ -80,6 +80,7 @@ typedef struct {
...
@@ -80,6 +80,7 @@ typedef struct {
int64_t
appId
;
int64_t
appId
;
// ctl
// ctl
int8_t
threadStop
;
int8_t
threadStop
;
int8_t
quitByKill
;
TdThread
thread
;
TdThread
thread
;
TdThreadMutex
lock
;
// used when app init and cleanup
TdThreadMutex
lock
;
// used when app init and cleanup
SHashObj
*
appSummary
;
SHashObj
*
appSummary
;
...
...
source/client/src/clientHb.c
浏览文件 @
0822e82d
...
@@ -845,7 +845,12 @@ static void hbStopThread() {
...
@@ -845,7 +845,12 @@ static void hbStopThread() {
return
;
return
;
}
}
// thread quit mode kill or inner exit from self-thread
if
(
clientHbMgr
.
quitByKill
)
{
taosThreadKill
(
clientHbMgr
.
thread
,
0
);
}
else
{
taosThreadJoin
(
clientHbMgr
.
thread
,
NULL
);
taosThreadJoin
(
clientHbMgr
.
thread
,
NULL
);
}
tscDebug
(
"hb thread stopped"
);
tscDebug
(
"hb thread stopped"
);
}
}
...
@@ -1037,3 +1042,8 @@ void hbDeregisterConn(SAppHbMgr *pAppHbMgr, SClientHbKey connKey) {
...
@@ -1037,3 +1042,8 @@ void hbDeregisterConn(SAppHbMgr *pAppHbMgr, SClientHbKey connKey) {
atomic_sub_fetch_32
(
&
pAppHbMgr
->
connKeyCnt
,
1
);
atomic_sub_fetch_32
(
&
pAppHbMgr
->
connKeyCnt
,
1
);
}
}
// set heart beat thread quit mode , if quicByKill 1 then kill thread else quit from inner
void
taos_set_hb_quit
(
int8_t
quitByKill
)
{
clientHbMgr
.
quitByKill
=
quitByKill
;
}
tools/shell/src/shellMain.c
浏览文件 @
0822e82d
...
@@ -83,6 +83,9 @@ int main(int argc, char *argv[]) {
...
@@ -83,6 +83,9 @@ int main(int argc, char *argv[]) {
#endif
#endif
taos_init
();
taos_init
();
// kill heart-beat thread when quit
taos_set_hb_quit
(
1
);
if
(
shell
.
args
.
is_dump_config
)
{
if
(
shell
.
args
.
is_dump_config
)
{
shellDumpConfig
();
shellDumpConfig
();
taos_cleanup
();
taos_cleanup
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录