Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
a0dd5664
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看板
提交
a0dd5664
编写于
5月 30, 2020
作者:
陶建辉(Jeff)
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tune the code
上级
08b087ec
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
36 addition
and
50 deletion
+36
-50
src/dnode/src/dnodeMgmt.c
src/dnode/src/dnodeMgmt.c
+36
-50
未找到文件。
src/dnode/src/dnodeMgmt.c
浏览文件 @
a0dd5664
...
...
@@ -43,8 +43,7 @@ void * tsDnodeTmr = NULL;
static
void
*
tsStatusTimer
=
NULL
;
static
uint32_t
tsRebootTime
;
static
SRpcIpSet
tsDMnodeIpSetForPeer
=
{
0
};
static
SRpcIpSet
tsDMnodeIpSetForShell
=
{
0
};
static
SRpcIpSet
tsDMnodeIpSet
=
{
0
};
static
SDMMnodeInfos
tsDMnodeInfos
=
{
0
};
static
SDMDnodeCfg
tsDnodeCfg
=
{
0
};
static
taos_qset
tsMgmtQset
=
NULL
;
...
...
@@ -80,40 +79,21 @@ int32_t dnodeInitMgmt() {
tsRebootTime
=
taosGetTimestampSec
();
if
(
!
dnodeReadMnodeInfos
())
{
memset
(
&
tsDMnodeIpSetForPeer
,
0
,
sizeof
(
SRpcIpSet
));
memset
(
&
tsDMnodeIpSetForShell
,
0
,
sizeof
(
SRpcIpSet
));
memset
(
&
tsDMnodeIpSet
,
0
,
sizeof
(
SRpcIpSet
));
memset
(
&
tsDMnodeInfos
,
0
,
sizeof
(
SDMMnodeInfos
));
tsDMnodeIpSetForPeer
.
numOfIps
=
1
;
taosGetFqdnPortFromEp
(
tsFirst
,
tsDMnodeIpSetForPeer
.
fqdn
[
0
],
&
tsDMnodeIpSetForPeer
.
port
[
0
]);
tsDMnodeIpSetForPeer
.
port
[
0
]
+=
TSDB_PORT_DNODEDNODE
;
tsDMnodeIpSetForShell
.
numOfIps
=
1
;
taosGetFqdnPortFromEp
(
tsFirst
,
tsDMnodeIpSetForShell
.
fqdn
[
0
],
&
tsDMnodeIpSetForShell
.
port
[
0
]);
tsDMnodeIpSetForShell
.
port
[
0
]
+=
TSDB_PORT_DNODESHELL
;
tsDMnodeIpSet
.
numOfIps
=
1
;
taosGetFqdnPortFromEp
(
tsFirst
,
tsDMnodeIpSet
.
fqdn
[
0
],
&
tsDMnodeIpSet
.
port
[
0
]);
if
(
strcmp
(
tsSecond
,
tsFirst
)
!=
0
)
{
tsDMnodeIpSetForPeer
.
numOfIps
=
2
;
taosGetFqdnPortFromEp
(
tsSecond
,
tsDMnodeIpSetForPeer
.
fqdn
[
1
],
&
tsDMnodeIpSetForPeer
.
port
[
1
]);
tsDMnodeIpSetForPeer
.
port
[
1
]
+=
TSDB_PORT_DNODEDNODE
;
tsDMnodeIpSetForShell
.
numOfIps
=
2
;
taosGetFqdnPortFromEp
(
tsSecond
,
tsDMnodeIpSetForShell
.
fqdn
[
1
],
&
tsDMnodeIpSetForShell
.
port
[
1
]);
tsDMnodeIpSetForShell
.
port
[
1
]
+=
TSDB_PORT_DNODESHELL
;
tsDMnodeIpSet
.
numOfIps
=
2
;
taosGetFqdnPortFromEp
(
tsSecond
,
tsDMnodeIpSet
.
fqdn
[
1
],
&
tsDMnodeIpSet
.
port
[
1
]);
}
}
else
{
tsDMnodeIpSetForPeer
.
inUse
=
tsDMnodeInfos
.
inUse
;
tsDMnodeIpSetForPeer
.
numOfIps
=
tsDMnodeInfos
.
nodeNum
;
for
(
int32_t
i
=
0
;
i
<
tsDMnodeInfos
.
nodeNum
;
i
++
)
{
taosGetFqdnPortFromEp
(
tsDMnodeInfos
.
nodeInfos
[
i
].
nodeEp
,
tsDMnodeIpSetForPeer
.
fqdn
[
i
],
&
tsDMnodeIpSetForPeer
.
port
[
i
]);
tsDMnodeIpSetForPeer
.
port
[
i
]
+=
TSDB_PORT_DNODEDNODE
;
}
tsDMnodeIpSetForShell
.
inUse
=
tsDMnodeInfos
.
inUse
;
tsDMnodeIpSetForShell
.
numOfIps
=
tsDMnodeInfos
.
nodeNum
;
tsDMnodeIpSet
.
inUse
=
tsDMnodeInfos
.
inUse
;
tsDMnodeIpSet
.
numOfIps
=
tsDMnodeInfos
.
nodeNum
;
for
(
int32_t
i
=
0
;
i
<
tsDMnodeInfos
.
nodeNum
;
i
++
)
{
taosGetFqdnPortFromEp
(
tsDMnodeInfos
.
nodeInfos
[
i
].
nodeEp
,
tsDMnodeIpSetForShell
.
fqdn
[
i
],
&
tsDMnodeIpSetForShell
.
port
[
i
]);
tsDMnodeIpSetForShell
.
port
[
i
]
+=
TSDB_PORT_DNODESHELL
;
taosGetFqdnPortFromEp
(
tsDMnodeInfos
.
nodeInfos
[
i
].
nodeEp
,
tsDMnodeIpSet
.
fqdn
[
i
],
&
tsDMnodeIpSet
.
port
[
i
]);
}
}
...
...
@@ -193,9 +173,17 @@ void dnodeDispatchToMgmtQueue(SRpcMsg *pMsg) {
void
*
item
;
item
=
taosAllocateQitem
(
sizeof
(
SRpcMsg
));
memcpy
(
item
,
pMsg
,
sizeof
(
SRpcMsg
));
taosWriteQitem
(
tsMgmtQueue
,
1
,
item
);
if
(
item
)
{
memcpy
(
item
,
pMsg
,
sizeof
(
SRpcMsg
));
taosWriteQitem
(
tsMgmtQueue
,
1
,
item
);
}
else
{
SRpcMsg
rsp
;
rsp
.
handle
=
pMsg
->
handle
;
rsp
.
pCont
=
NULL
;
rsp
.
code
=
TSDB_CODE_SERV_OUT_OF_MEMORY
;
rpcSendResponse
(
&
rsp
);
rpcFreeCont
(
pMsg
->
pCont
);
}
}
static
void
*
dnodeProcessMgmtQueue
(
void
*
param
)
{
...
...
@@ -352,22 +340,26 @@ static int32_t dnodeProcessConfigDnodeMsg(SRpcMsg *pMsg) {
}
void
dnodeUpdateMnodeIpSetForPeer
(
SRpcIpSet
*
pIpSet
)
{
dPrint
(
"mnode IP list for
peer
is changed, numOfIps:%d inUse:%d"
,
pIpSet
->
numOfIps
,
pIpSet
->
inUse
);
dPrint
(
"mnode IP list for is changed, numOfIps:%d inUse:%d"
,
pIpSet
->
numOfIps
,
pIpSet
->
inUse
);
for
(
int
i
=
0
;
i
<
pIpSet
->
numOfIps
;
++
i
)
{
pIpSet
->
port
[
i
]
-=
TSDB_PORT_DNODEDNODE
;
dPrint
(
"mnode index:%d %s:%u"
,
i
,
pIpSet
->
fqdn
[
i
],
pIpSet
->
port
[
i
])
}
tsDMnodeIpSet
ForPeer
=
*
pIpSet
;
tsDMnodeIpSet
=
*
pIpSet
;
}
void
dnodeGetMnodeIpSetForPeer
(
void
*
ipSetRaw
)
{
SRpcIpSet
*
ipSet
=
ipSetRaw
;
*
ipSet
=
tsDMnodeIpSetForPeer
;
*
ipSet
=
tsDMnodeIpSet
;
for
(
int
i
=
0
;
i
<
ipSet
->
numOfIps
;
++
i
)
ipSet
->
port
[
i
]
+=
TSDB_PORT_DNODEDNODE
;
}
void
dnodeGetMnodeIpSetForShell
(
void
*
ipSetRaw
)
{
SRpcIpSet
*
ipSet
=
ipSetRaw
;
*
ipSet
=
tsDMnodeIpSet
ForShell
;
*
ipSet
=
tsDMnodeIpSet
;
}
static
void
dnodeProcessStatusRsp
(
SRpcMsg
*
pMsg
)
{
...
...
@@ -417,19 +409,11 @@ static void dnodeUpdateMnodeInfos(SDMMnodeInfos *pMnodes) {
dPrint
(
"mnode index:%d, %s"
,
tsDMnodeInfos
.
nodeInfos
[
i
].
nodeId
,
tsDMnodeInfos
.
nodeInfos
[
i
].
nodeEp
);
}
tsDMnodeIpSetForPeer
.
inUse
=
tsDMnodeInfos
.
inUse
;
tsDMnodeIpSetForPeer
.
numOfIps
=
tsDMnodeInfos
.
nodeNum
;
for
(
int32_t
i
=
0
;
i
<
tsDMnodeInfos
.
nodeNum
;
i
++
)
{
taosGetFqdnPortFromEp
(
tsDMnodeInfos
.
nodeInfos
[
i
].
nodeEp
,
tsDMnodeIpSetForPeer
.
fqdn
[
i
],
&
tsDMnodeIpSetForPeer
.
port
[
i
]);
tsDMnodeIpSetForPeer
.
port
[
i
]
+=
TSDB_PORT_DNODEDNODE
;
dPrint
(
"mnode index:%d, for peer %s %d"
,
i
,
tsDMnodeIpSetForPeer
.
fqdn
[
i
],
tsDMnodeIpSetForPeer
.
port
[
i
]);
}
tsDMnodeIpSetForShell
.
inUse
=
tsDMnodeInfos
.
inUse
;
tsDMnodeIpSetForShell
.
numOfIps
=
tsDMnodeInfos
.
nodeNum
;
tsDMnodeIpSet
.
inUse
=
tsDMnodeInfos
.
inUse
;
tsDMnodeIpSet
.
numOfIps
=
tsDMnodeInfos
.
nodeNum
;
for
(
int32_t
i
=
0
;
i
<
tsDMnodeInfos
.
nodeNum
;
i
++
)
{
taosGetFqdnPortFromEp
(
tsDMnodeInfos
.
nodeInfos
[
i
].
nodeEp
,
tsDMnodeIpSet
ForShell
.
fqdn
[
i
],
&
tsDMnodeIpSetForShell
.
port
[
i
]);
dPrint
(
"mnode index:%d, for
shell %s %d"
,
i
,
tsDMnodeIpSetForShell
.
fqdn
[
i
],
tsDMnodeIpSetForShell
.
port
[
i
]);
taosGetFqdnPortFromEp
(
tsDMnodeInfos
.
nodeInfos
[
i
].
nodeEp
,
tsDMnodeIpSet
.
fqdn
[
i
],
&
tsDMnodeIpSet
.
port
[
i
]);
dPrint
(
"mnode index:%d, for
peer %s %d"
,
i
,
tsDMnodeIpSet
.
fqdn
[
i
],
tsDMnodeIpSet
.
port
[
i
]);
}
dnodeSaveMnodeInfos
();
...
...
@@ -555,7 +539,7 @@ static void dnodeSaveMnodeInfos() {
}
char
*
dnodeGetMnodeMasterEp
()
{
return
tsDMnodeInfos
.
nodeInfos
[
tsDMnodeIpSet
ForPeer
.
inUse
].
nodeEp
;
return
tsDMnodeInfos
.
nodeInfos
[
tsDMnodeIpSet
.
inUse
].
nodeEp
;
}
void
*
dnodeGetMnodeInfos
()
{
...
...
@@ -602,7 +586,9 @@ static void dnodeSendStatusMsg(void *handle, void *tmrId) {
.
msgType
=
TSDB_MSG_TYPE_DM_STATUS
};
dnodeSendMsgToDnode
(
&
tsDMnodeIpSetForPeer
,
&
rpcMsg
);
SRpcIpSet
ipSet
;
dnodeGetMnodeIpSetForPeer
(
&
ipSet
);
dnodeSendMsgToDnode
(
&
ipSet
,
&
rpcMsg
);
}
static
bool
dnodeReadDnodeCfg
()
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录