Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
e3f194ed
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看板
提交
e3f194ed
编写于
5月 18, 2023
作者:
K
kailixu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: code optimization
上级
1de90208
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
38 addition
and
28 deletion
+38
-28
source/dnode/mnode/impl/src/mndDnode.c
source/dnode/mnode/impl/src/mndDnode.c
+38
-28
未找到文件。
source/dnode/mnode/impl/src/mndDnode.c
浏览文件 @
e3f194ed
...
...
@@ -44,6 +44,11 @@ static const char *offlineReason[] = {
"unknown"
,
};
enum
{
DND_ACTIVE_CODE
,
DND_CONN_ACTIVE_CODE
,
};
static
int32_t
mndCreateDefaultDnode
(
SMnode
*
pMnode
);
static
SSdbRaw
*
mndDnodeActionEncode
(
SDnodeObj
*
pDnode
);
static
SSdbRow
*
mndDnodeActionDecode
(
SSdbRaw
*
pRaw
);
...
...
@@ -643,25 +648,10 @@ _OVER:
return
code
;
}
static
int32_t
mndConfigDnode
(
SMnode
*
pMnode
,
SRpcMsg
*
pReq
,
SMCfgDnodeReq
*
pCfgReq
)
{
int32_t
action
=
-
1
;
static
int32_t
mndConfigDnode
(
SMnode
*
pMnode
,
SRpcMsg
*
pReq
,
SMCfgDnodeReq
*
pCfgReq
,
int8_t
action
)
{
SSdbRaw
*
pRaw
=
NULL
;
STrans
*
pTrans
=
NULL
;
if
(
strncasecmp
(
pCfgReq
->
config
,
"activeCode"
,
10
)
==
0
)
{
action
=
0
;
}
else
if
(
strncasecmp
(
pCfgReq
->
config
,
"cActiveCode"
,
11
)
==
0
)
{
action
=
1
;
}
if
(
action
==
-
1
)
{
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
,
terrstr
());
return
-
1
;
}
SSdb
*
pSdb
=
pMnode
->
pSdb
;
void
*
pIter
=
NULL
;
while
(
1
)
{
...
...
@@ -674,18 +664,19 @@ static int32_t mndConfigDnode(SMnode *pMnode, SRpcMsg *pReq, SMCfgDnodeReq *pCfg
}
if
(
!
pTrans
)
{
pTrans
=
mndTransCreate
(
pMnode
,
TRN_POLICY_RETRY
,
TRN_CONFLICT_GLOBAL
,
pReq
,
"c
f
g-dnode"
);
pTrans
=
mndTransCreate
(
pMnode
,
TRN_POLICY_RETRY
,
TRN_CONFLICT_GLOBAL
,
pReq
,
"c
onfi
g-dnode"
);
if
(
!
pTrans
)
goto
_OVER
;
if
(
mndTrancCheckConflict
(
pMnode
,
pTrans
)
!=
0
)
goto
_OVER
;
}
SDnodeObj
tmpDnode
=
*
pDnode
;
if
(
action
==
0
)
{
if
(
action
==
DND_ACTIVE_CODE
)
{
strncpy
(
tmpDnode
.
active
,
pCfgReq
->
value
,
TSDB_ACTIVE_KEY_LEN
);
}
else
if
(
action
==
1
)
{
}
else
if
(
action
==
DND_CONN_ACTIVE_CODE
)
{
strncpy
(
tmpDnode
.
connActive
,
pCfgReq
->
value
,
TSDB_CONN_ACTIVE_KEY_LEN
);
}
else
{
ASSERT
(
0
);
terrno
=
TSDB_CODE_INVALID_CFG
;
goto
_OVER
;
}
pRaw
=
mndDnodeActionEncode
(
&
tmpDnode
);
...
...
@@ -1045,27 +1036,46 @@ static int32_t mndProcessConfigDnodeReq(SRpcMsg *pReq) {
strcpy
(
dcfgReq
.
config
,
"monitor"
);
snprintf
(
dcfgReq
.
value
,
TSDB_DNODE_VALUE_LEN
,
"%d"
,
flag
);
#ifdef TD_ENTERPRISE
}
else
if
(
strncasecmp
(
cfgReq
.
config
,
"activeCode"
,
10
)
==
0
||
strncasecmp
(
cfgReq
.
config
,
"cActiveCode"
,
11
)
==
0
)
{
int32_t
idx
=
(
strncasecmp
(
cfgReq
.
config
,
"a"
,
1
)
==
0
)
?
10
:
11
;
if
(
' '
!=
cfgReq
.
config
[
idx
]
&&
0
!=
cfgReq
.
config
[
idx
])
{
}
else
if
(
strncasecmp
(
cfgReq
.
config
,
"activeCode"
,
10
)
==
0
)
{
if
(
' '
!=
cfgReq
.
config
[
10
]
&&
0
!=
cfgReq
.
config
[
10
])
{
mError
(
"dnode:%d, failed to config activeCode since invalid conf:%s"
,
cfgReq
.
dnodeId
,
cfgReq
.
config
);
terrno
=
TSDB_CODE_INVALID_CFG
;
return
-
1
;
}
int32_t
vlen
=
strlen
(
cfgReq
.
value
);
if
(
vlen
>
0
&&
((
idx
==
10
&&
vlen
!=
(
TSDB_ACTIVE_KEY_LEN
-
1
))
||
(
idx
==
11
&&
(
vlen
>
(
TSDB_CONN_ACTIVE_KEY_LEN
-
1
)
||
vlen
<
(
TSDB_ACTIVE_KEY_LEN
-
1
)))))
{
if
(
vlen
>
0
&&
vlen
!=
(
TSDB_ACTIVE_KEY_LEN
-
1
))
{
mError
(
"dnode:%d, failed to config activeCode since invalid vlen:%d. conf:%s, val:%s"
,
cfgReq
.
dnodeId
,
vlen
,
cfgReq
.
config
,
cfgReq
.
value
);
terrno
=
TSDB_CODE_INVALID_OPTION
;
return
-
1
;
}
strcpy
(
dcfgReq
.
config
,
idx
==
10
?
"activeCode"
:
"cA
ctiveCode"
);
strcpy
(
dcfgReq
.
config
,
"a
ctiveCode"
);
snprintf
(
dcfgReq
.
value
,
TSDB_DNODE_VALUE_LEN
,
"%s"
,
cfgReq
.
value
);
if
(
mndConfigDnode
(
pMnode
,
pReq
,
&
cfgReq
)
!=
0
)
{
mError
(
"dnode:%d, failed to config since %s"
,
cfgReq
.
dnodeId
,
terrstr
());
if
(
mndConfigDnode
(
pMnode
,
pReq
,
&
cfgReq
,
DND_ACTIVE_CODE
)
!=
0
)
{
mError
(
"dnode:%d, failed to config activeCode since %s"
,
cfgReq
.
dnodeId
,
terrstr
());
return
-
1
;
}
}
else
if
(
strncasecmp
(
cfgReq
.
config
,
"cActiveCode"
,
11
)
==
0
)
{
if
(
' '
!=
cfgReq
.
config
[
11
]
&&
0
!=
cfgReq
.
config
[
11
])
{
mError
(
"dnode:%d, failed to config cActiveCode since invalid conf:%s"
,
cfgReq
.
dnodeId
,
cfgReq
.
config
);
terrno
=
TSDB_CODE_INVALID_CFG
;
return
-
1
;
}
int32_t
vlen
=
strlen
(
cfgReq
.
value
);
if
(
vlen
>
0
&&
(
vlen
>
(
TSDB_CONN_ACTIVE_KEY_LEN
-
1
)
||
vlen
<
(
TSDB_ACTIVE_KEY_LEN
-
1
)))
{
mError
(
"dnode:%d, failed to config cActiveCode since invalid vlen:%d. conf:%s, val:%s"
,
cfgReq
.
dnodeId
,
vlen
,
cfgReq
.
config
,
cfgReq
.
value
);
terrno
=
TSDB_CODE_INVALID_OPTION
;
return
-
1
;
}
strcpy
(
dcfgReq
.
config
,
"cActiveCode"
);
snprintf
(
dcfgReq
.
value
,
TSDB_DNODE_VALUE_LEN
,
"%s"
,
cfgReq
.
value
);
if
(
mndConfigDnode
(
pMnode
,
pReq
,
&
cfgReq
,
DND_CONN_ACTIVE_CODE
)
!=
0
)
{
mError
(
"dnode:%d, failed to config cActiveCode since %s"
,
cfgReq
.
dnodeId
,
terrstr
());
return
-
1
;
}
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录