Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
71b953e1
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看板
未验证
提交
71b953e1
编写于
6月 25, 2021
作者:
H
Hongze Cheng
提交者:
GitHub
6月 25, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #6617 from taosdata/fix/TD-4895
[TD-4895]<fix>: more checking for creating mnode
上级
44621d8a
5628cb20
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
17 addition
and
9 deletion
+17
-9
src/balance/src/bnMain.c
src/balance/src/bnMain.c
+14
-7
src/inc/tbn.h
src/inc/tbn.h
+1
-0
src/mnode/src/mnodeDnode.c
src/mnode/src/mnodeDnode.c
+2
-2
未找到文件。
src/balance/src/bnMain.c
浏览文件 @
71b953e1
...
...
@@ -637,6 +637,19 @@ int32_t bnDropDnode(SDnodeObj *pDnode) {
return
TSDB_CODE_SUCCESS
;
}
int32_t
bnDnodeCanCreateMnode
(
struct
SDnodeObj
*
pDnode
)
{
if
(
pDnode
==
NULL
)
return
0
;
if
(
pDnode
->
isMgmt
||
pDnode
->
alternativeRole
==
TAOS_DN_ALTERNATIVE_ROLE_VNODE
||
pDnode
->
status
==
TAOS_DN_STATUS_DROPPING
||
pDnode
->
status
==
TAOS_DN_STATUS_OFFLINE
)
{
return
0
;
}
else
{
return
1
;
}
}
static
void
bnMonitorDnodeModule
()
{
int32_t
numOfMnodes
=
mnodeGetMnodesNum
();
if
(
numOfMnodes
>=
tsNumOfMnodes
)
return
;
...
...
@@ -645,13 +658,7 @@ static void bnMonitorDnodeModule() {
SDnodeObj
*
pDnode
=
tsBnDnodes
.
list
[
i
];
if
(
pDnode
==
NULL
)
break
;
if
(
pDnode
->
isMgmt
||
pDnode
->
status
==
TAOS_DN_STATUS_DROPPING
||
pDnode
->
status
==
TAOS_DN_STATUS_OFFLINE
)
{
continue
;
}
if
(
pDnode
->
alternativeRole
==
TAOS_DN_ALTERNATIVE_ROLE_VNODE
)
{
continue
;
}
if
(
!
bnDnodeCanCreateMnode
(
pDnode
))
continue
;
mLInfo
(
"dnode:%d, numOfMnodes:%d expect:%d, create mnode in this dnode"
,
pDnode
->
dnodeId
,
numOfMnodes
,
tsNumOfMnodes
);
mnodeCreateMnode
(
pDnode
->
dnodeId
,
pDnode
->
dnodeEp
,
true
);
...
...
src/inc/tbn.h
浏览文件 @
71b953e1
...
...
@@ -31,6 +31,7 @@ void bnReset();
int32_t
bnAllocVnodes
(
struct
SVgObj
*
pVgroup
);
int32_t
bnAlterDnode
(
struct
SDnodeObj
*
pDnode
,
int32_t
vnodeId
,
int32_t
dnodeId
);
int32_t
bnDropDnode
(
struct
SDnodeObj
*
pDnode
);
int32_t
bnDnodeCanCreateMnode
(
struct
SDnodeObj
*
pDnode
);
#ifdef __cplusplus
}
...
...
src/mnode/src/mnodeDnode.c
浏览文件 @
71b953e1
...
...
@@ -16,7 +16,6 @@
#define _DEFAULT_SOURCE
#include "os.h"
#include "tgrant.h"
#include "tbn.h"
#include "tglobal.h"
#include "tconfig.h"
#include "tutil.h"
...
...
@@ -632,7 +631,8 @@ static int32_t mnodeProcessDnodeStatusMsg(SMnodeMsg *pMsg) {
}
int32_t
numOfMnodes
=
mnodeGetMnodesNum
();
if
(
numOfMnodes
<
tsNumOfMnodes
&&
numOfMnodes
<
mnodeGetOnlineDnodesNum
()
&&
!
pDnode
->
isMgmt
)
{
if
(
numOfMnodes
<
tsNumOfMnodes
&&
numOfMnodes
<
mnodeGetOnlineDnodesNum
()
&&
bnDnodeCanCreateMnode
(
pDnode
))
{
bnNotify
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录