Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
79394deb
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看板
提交
79394deb
编写于
5月 27, 2022
作者:
D
dapan1121
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update epset
上级
6e465ebd
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
55 addition
and
8 deletion
+55
-8
include/libs/qcom/query.h
include/libs/qcom/query.h
+13
-0
source/client/src/clientImpl.c
source/client/src/clientImpl.c
+42
-8
未找到文件。
include/libs/qcom/query.h
浏览文件 @
79394deb
...
...
@@ -43,6 +43,12 @@ typedef enum {
TASK_TYPE_TEMP
,
}
ETaskType
;
typedef
enum
{
TARGET_TYPE_MNODE
=
1
,
TARGET_TYPE_VNODE
,
TARGET_TYPE_OTHER
,
}
ETargetType
;
typedef
struct
STableComInfo
{
uint8_t
numOfTags
;
// the number of tags in schema
uint8_t
precision
;
// the number of precision
...
...
@@ -126,11 +132,18 @@ typedef struct SDataBuf {
void
*
handle
;
}
SDataBuf
;
typedef
struct
STargetInfo
{
ETargetType
type
;
char
dbFName
[
TSDB_DB_FNAME_LEN
];
// used to update db's vgroup epset
int32_t
vgId
;
}
STargetInfo
;
typedef
int32_t
(
*
__async_send_cb_fn_t
)(
void
*
param
,
const
SDataBuf
*
pMsg
,
int32_t
code
);
typedef
int32_t
(
*
__async_exec_fn_t
)(
void
*
param
);
typedef
struct
SMsgSendInfo
{
__async_send_cb_fn_t
fp
;
// async callback function
STargetInfo
target
;
// for update epset
void
*
param
;
uint64_t
requestId
;
uint64_t
requestObjRefId
;
...
...
source/client/src/clientImpl.c
浏览文件 @
79394deb
...
...
@@ -730,23 +730,55 @@ static void destroySendMsgInfo(SMsgSendInfo* pMsgBody) {
taosMemoryFreeClear
(
pMsgBody
);
}
void
updateTargetEpSet
(
SMsgSendInfo
*
pSendInfo
,
STscObj
*
pTscObj
,
SRpcMsg
*
pMsg
,
SEpSet
*
pEpSet
)
{
if
(
NULL
==
pEpSet
)
{
return
;
}
switch
(
pSendInfo
->
target
.
type
)
{
case
TARGET_TYPE_MNODE
:
if
(
NULL
==
pTscObj
)
{
tscError
(
"mnode epset changed but not able to update it, reqObjRefId:%"
PRIx64
,
pSendInfo
->
requestObjRefId
);
return
;
}
updateEpSet_s
(
&
pTscObj
->
pAppInfo
->
mgmtEp
,
pEpSet
);
break
;
case
TARGET_TYPE_VNODE
:
{
if
(
NULL
==
pTscObj
)
{
tscError
(
"vnode epset changed but not able to update it, reqObjRefId:%"
PRIx64
,
pSendInfo
->
requestObjRefId
);
return
;
}
SCatalog
*
pCatalog
=
NULL
;
int32_t
code
=
catalogGetHandle
(
pTscObj
->
pAppInfo
->
clusterId
,
&
pCatalog
);
if
(
code
!=
TSDB_CODE_SUCCESS
)
{
tscError
(
"fail to get catalog handle, clusterId:%"
PRIx64
", error %s"
,
pTscObj
->
pAppInfo
->
clusterId
,
tstrerror
(
code
));
return
;
}
catalogUpdateVgEpSet
(
pCatalog
,
pSendInfo
->
target
.
dbFName
,
pSendInfo
->
target
.
vgId
,
pEpSet
);
break
;
}
default:
tscDebug
(
"epset changed, not updated, msgType %s"
,
TMSG_INFO
(
pMsg
->
msgType
));
break
;
}
}
void
processMsgFromServer
(
void
*
parent
,
SRpcMsg
*
pMsg
,
SEpSet
*
pEpSet
)
{
SMsgSendInfo
*
pSendInfo
=
(
SMsgSendInfo
*
)
pMsg
->
info
.
ahandle
;
assert
(
pMsg
->
info
.
ahandle
!=
NULL
);
SRequestObj
*
pRequest
=
NULL
;
STscObj
*
pTscObj
=
NULL
;
if
(
pSendInfo
->
requestObjRefId
!=
0
)
{
SRequestObj
*
pRequest
=
(
SRequestObj
*
)
taosAcquireRef
(
clientReqRefPool
,
pSendInfo
->
requestObjRefId
);
assert
(
pRequest
->
self
==
pSendInfo
->
requestObjRefId
);
pRequest
->
metric
.
rsp
=
taosGetTimestampUs
();
//STscObj* pTscObj = pRequest->pTscObj;
//if (pEpSet) {
// if (!isEpsetEqual(&pTscObj->pAppInfo->mgmtEp.epSet, pEpSet)) {
// updateEpSet_s(&pTscObj->pAppInfo->mgmtEp, pEpSet);
// }
//}
pTscObj
=
pRequest
->
pTscObj
;
/*
* There is not response callback function for submit response.
* The actual inserted number of points is the first number.
...
...
@@ -763,6 +795,8 @@ void processMsgFromServer(void* parent, SRpcMsg* pMsg, SEpSet* pEpSet) {
taosReleaseRef
(
clientReqRefPool
,
pSendInfo
->
requestObjRefId
);
}
updateTargetEpSet
(
pSendInfo
,
pTscObj
,
pMsg
,
pEpSet
);
SDataBuf
buf
=
{.
len
=
pMsg
->
contLen
,
.
pData
=
NULL
,
.
handle
=
pMsg
->
info
.
handle
};
if
(
pMsg
->
contLen
>
0
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录