Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
5098d440
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5098d440
编写于
5月 18, 2023
作者:
K
kailixu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: support update active code in sdb
上级
cf0d3ddd
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
29 addition
and
16 deletion
+29
-16
source/dnode/mnode/impl/src/mndDnode.c
source/dnode/mnode/impl/src/mndDnode.c
+29
-16
未找到文件。
source/dnode/mnode/impl/src/mndDnode.c
浏览文件 @
5098d440
...
...
@@ -227,6 +227,14 @@ static int32_t mndDnodeActionDelete(SSdb *pSdb, SDnodeObj *pDnode) {
static
int32_t
mndDnodeActionUpdate
(
SSdb
*
pSdb
,
SDnodeObj
*
pOld
,
SDnodeObj
*
pNew
)
{
mTrace
(
"dnode:%d, perform update action, old row:%p new row:%p"
,
pOld
->
id
,
pOld
,
pNew
);
pOld
->
updateTime
=
pNew
->
updateTime
;
#ifdef TD_ENTERPRISE
if
(
strncmp
(
pOld
->
active
,
pNew
->
active
,
TSDB_ACTIVE_KEY_LEN
)
!=
0
)
{
strncpy
(
pOld
->
active
,
pNew
->
active
,
TSDB_ACTIVE_KEY_LEN
);
}
if
(
strncmp
(
pOld
->
connActive
,
pNew
->
connActive
,
TSDB_CONN_ACTIVE_KEY_LEN
)
!=
0
)
{
strncpy
(
pOld
->
connActive
,
pNew
->
connActive
,
TSDB_CONN_ACTIVE_KEY_LEN
);
}
#endif
return
0
;
}
...
...
@@ -636,7 +644,6 @@ _OVER:
}
static
int32_t
mndConfigDnode
(
SMnode
*
pMnode
,
SRpcMsg
*
pReq
,
SMCfgDnodeReq
*
pCfgReq
)
{
int32_t
code
=
-
1
;
int32_t
action
=
-
1
;
SSdbRaw
*
pRaw
=
NULL
;
STrans
*
pTrans
=
NULL
;
...
...
@@ -648,11 +655,11 @@ static int32_t mndConfigDnode(SMnode *pMnode, SRpcMsg *pReq, SMCfgDnodeReq *pCfg
}
if
(
action
==
-
1
)
{
code
=
TSDB_CODE_INVALID_CFG
;
terrno
=
TSDB_CODE_INVALID_CFG
;
mWarn
(
"dnode:%d, config dnode, app:%p config:%s value:%s, failed since %s"
,
pCfgReq
->
dnodeId
,
pReq
->
info
.
ahandle
,
pCfgReq
->
config
,
pCfgReq
->
value
,
t
strerror
(
code
));
pCfgReq
->
config
,
pCfgReq
->
value
,
t
errstr
(
));
return
code
;
return
-
1
;
}
SSdb
*
pSdb
=
pMnode
->
pSdb
;
...
...
@@ -666,9 +673,11 @@ static int32_t mndConfigDnode(SMnode *pMnode, SRpcMsg *pReq, SMCfgDnodeReq *pCfg
continue
;
}
pTrans
=
mndTransCreate
(
pMnode
,
TRN_POLICY_RETRY
,
TRN_CONFLICT_GLOBAL
,
pReq
,
"cfg-dnode"
);
if
(
pTrans
==
NULL
)
goto
_OVER
;
if
(
mndTrancCheckConflict
(
pMnode
,
pTrans
)
!=
0
)
goto
_OVER
;
if
(
!
pTrans
)
{
pTrans
=
mndTransCreate
(
pMnode
,
TRN_POLICY_RETRY
,
TRN_CONFLICT_GLOBAL
,
pReq
,
"cfg-dnode"
);
if
(
!
pTrans
)
goto
_OVER
;
if
(
mndTrancCheckConflict
(
pMnode
,
pTrans
)
!=
0
)
goto
_OVER
;
}
SDnodeObj
tmpDnode
=
*
pDnode
;
if
(
action
==
0
)
{
...
...
@@ -690,13 +699,14 @@ static int32_t mndConfigDnode(SMnode *pMnode, SRpcMsg *pReq, SMCfgDnodeReq *pCfg
sdbRelease
(
pSdb
,
pDnode
);
}
if
(
mndTransPrepare
(
pMnode
,
pTrans
)
!=
0
)
goto
_OVER
;
code
=
0
;
if
(
pTrans
&&
mndTransPrepare
(
pMnode
,
pTrans
)
!=
0
)
goto
_OVER
;
terrno
=
0
;
_OVER:
mndTransDrop
(
pTrans
);
sdbFreeRaw
(
pRaw
);
return
code
;
return
terrno
;
}
static
int32_t
mndProcessDnodeListReq
(
SRpcMsg
*
pReq
)
{
...
...
@@ -1042,11 +1052,11 @@ static int32_t mndProcessConfigDnodeReq(SRpcMsg *pReq) {
terrno
=
TSDB_CODE_INVALID_CFG
;
return
-
1
;
}
if
((
idx
==
10
&&
strlen
(
cfgReq
.
value
)
>
TSDB_ACTIVE_KEY_LEN
)
||
(
idx
==
11
&&
strlen
(
cfgReq
.
value
)
>
TSDB_CONN_ACTIVE_KEY_LEN
))
{
mError
(
"dnode:%d, failed to config activeCode since
value out of range. conf:%s, val:%s"
,
cfgReq
.
dnodeId
,
cfgReq
.
config
,
cfgReq
.
value
);
int32_t
vlen
=
strlen
(
cfgReq
.
value
);
if
((
idx
==
10
&&
vlen
!=
(
TSDB_ACTIVE_KEY_LEN
-
1
)
)
||
(
idx
==
11
&&
(
vlen
>
(
TSDB_CONN_ACTIVE_KEY_LEN
-
1
)
||
vlen
<
(
TSDB_ACTIVE_KEY_LEN
-
1
)
))
{
mError
(
"dnode:%d, failed to config activeCode since
invalid vlen. conf:%s, val:%s"
,
cfgReq
.
dnodeId
,
cfgReq
.
config
,
cfgReq
.
value
);
terrno
=
TSDB_CODE_INVALID_OPTION
;
return
-
1
;
}
...
...
@@ -1054,7 +1064,10 @@ static int32_t mndProcessConfigDnodeReq(SRpcMsg *pReq) {
strcpy
(
dcfgReq
.
config
,
idx
==
10
?
"activeCode"
:
"cActiveCode"
);
snprintf
(
dcfgReq
.
value
,
TSDB_DNODE_VALUE_LEN
,
"%s"
,
cfgReq
.
value
);
mndConfigDnode
(
pMnode
,
pReq
,
&
cfgReq
);
if
(
mndConfigDnode
(
pMnode
,
pReq
,
&
cfgReq
)
!=
0
)
{
mError
(
"dnode:%d, failed to config since %s"
,
cfgReq
.
dnodeId
,
terrstr
());
return
-
1
;
}
#endif
}
else
{
bool
findOpt
=
false
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录