Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
72cb9c01
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看板
提交
72cb9c01
编写于
11月 02, 2021
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
minor changes
上级
f4e648b7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
30 addition
and
33 deletion
+30
-33
source/dnode/mgmt/src/dnodeTransport.c
source/dnode/mgmt/src/dnodeTransport.c
+30
-33
未找到文件。
source/dnode/mgmt/src/dnodeTransport.c
浏览文件 @
72cb9c01
...
...
@@ -25,11 +25,11 @@
#include "dnodeMnode.h"
#include "dnodeVnodes.h"
#include "mnode.h"
#include "vnode.h"
static
struct
{
void
*
serverRpc
;
void
*
clientRpc
;
void
*
peerRpc
;
void
*
shellRpc
;
void
*
clientRpc
;
MsgFp
msgFp
[
TSDB_MSG_TYPE_MAX
];
}
tsTrans
;
...
...
@@ -120,7 +120,7 @@ static void dnodeInitMsgFp() {
}
static
void
dnodeProcessPeerReq
(
SRpcMsg
*
pMsg
,
SRpcEpSet
*
pEpSet
)
{
SRpcMsg
rspMsg
=
{.
handle
=
pMsg
->
handle
,
.
pCont
=
NULL
,
.
contLen
=
0
};
SRpcMsg
rspMsg
=
{.
handle
=
pMsg
->
handle
};
int32_t
msgType
=
pMsg
->
msgType
;
if
(
msgType
==
TSDB_MSG_TYPE_NETWORK_TEST
)
{
...
...
@@ -154,7 +154,7 @@ static void dnodeProcessPeerReq(SRpcMsg *pMsg, SRpcEpSet *pEpSet) {
}
}
static
int32_t
dnodeInitServer
()
{
static
int32_t
dnodeInit
Peer
Server
()
{
SRpcInit
rpcInit
;
memset
(
&
rpcInit
,
0
,
sizeof
(
rpcInit
));
rpcInit
.
localPort
=
tsDnodeDnodePort
;
...
...
@@ -165,8 +165,8 @@ static int32_t dnodeInitServer() {
rpcInit
.
connType
=
TAOS_CONN_SERVER
;
rpcInit
.
idleTime
=
tsShellActivityTimer
*
1000
;
tsTrans
.
serv
erRpc
=
rpcOpen
(
&
rpcInit
);
if
(
tsTrans
.
serv
erRpc
==
NULL
)
{
tsTrans
.
pe
erRpc
=
rpcOpen
(
&
rpcInit
);
if
(
tsTrans
.
pe
erRpc
==
NULL
)
{
dError
(
"failed to init peer rpc server"
);
return
-
1
;
}
...
...
@@ -175,10 +175,10 @@ static int32_t dnodeInitServer() {
return
0
;
}
static
void
dnodeCleanupServer
()
{
if
(
tsTrans
.
serv
erRpc
)
{
rpcClose
(
tsTrans
.
serv
erRpc
);
tsTrans
.
serv
erRpc
=
NULL
;
static
void
dnodeCleanup
Peer
Server
()
{
if
(
tsTrans
.
pe
erRpc
)
{
rpcClose
(
tsTrans
.
pe
erRpc
);
tsTrans
.
pe
erRpc
=
NULL
;
dInfo
(
"dnode peer server is closed"
);
}
}
...
...
@@ -205,7 +205,8 @@ static void dnodeProcessPeerRsp(SRpcMsg *pMsg, SRpcEpSet *pEpSet) {
}
static
int32_t
dnodeInitClient
()
{
char
secret
[
TSDB_KEY_LEN
]
=
"secret"
;
char
secret
[
TSDB_KEY_LEN
]
=
"secret"
;
SRpcInit
rpcInit
;
memset
(
&
rpcInit
,
0
,
sizeof
(
rpcInit
));
rpcInit
.
label
=
"DND-C"
;
...
...
@@ -237,7 +238,7 @@ static void dnodeCleanupClient() {
}
static
void
dnodeProcessShellReq
(
SRpcMsg
*
pMsg
,
SRpcEpSet
*
pEpSet
)
{
SRpcMsg
rspMsg
=
{.
handle
=
pMsg
->
handle
,
.
pCont
=
NULL
,
.
contLen
=
0
};
SRpcMsg
rspMsg
=
{.
handle
=
pMsg
->
handle
};
int32_t
msgType
=
pMsg
->
msgType
;
if
(
dnodeGetRunStat
()
==
DN_RUN_STAT_STOPPED
)
{
...
...
@@ -272,14 +273,6 @@ static void dnodeProcessShellReq(SRpcMsg *pMsg, SRpcEpSet *pEpSet) {
}
}
void
dnodeSendMsgToDnode
(
SRpcEpSet
*
epSet
,
SRpcMsg
*
rpcMsg
)
{
rpcSendRequest
(
tsTrans
.
clientRpc
,
epSet
,
rpcMsg
,
NULL
);
}
void
dnodeSendMsgToMnode
(
SRpcMsg
*
rpcMsg
)
{
SRpcEpSet
epSet
=
{
0
};
dnodeGetMnodeEpSetForPeer
(
&
epSet
);
dnodeSendMsgToDnode
(
&
epSet
,
rpcMsg
);
}
static
void
dnodeSendMsgToMnodeRecv
(
SRpcMsg
*
rpcMsg
,
SRpcMsg
*
rpcRsp
)
{
SRpcEpSet
epSet
=
{
0
};
dnodeGetMnodeEpSetForPeer
(
&
epSet
);
...
...
@@ -293,20 +286,16 @@ static int32_t dnodeRetrieveUserAuthInfo(char *user, char *spi, char *encrypt, c
SAuthMsg
*
pMsg
=
rpcMallocCont
(
sizeof
(
SAuthMsg
));
tstrncpy
(
pMsg
->
user
,
user
,
sizeof
(
pMsg
->
user
));
SRpcMsg
rpcMsg
=
{
0
};
rpcMsg
.
pCont
=
pMsg
;
rpcMsg
.
contLen
=
sizeof
(
SAuthMsg
);
rpcMsg
.
msgType
=
TSDB_MSG_TYPE_AUTH
;
dDebug
(
"user:%s, send auth msg to mnodes"
,
user
);
SRpcMsg
rpcMsg
=
{.
pCont
=
pMsg
,
.
contLen
=
sizeof
(
SAuthMsg
),
.
msgType
=
TSDB_MSG_TYPE_AUTH
};
SRpcMsg
rpcRsp
=
{
0
};
dnodeSendMsgToMnodeRecv
(
&
rpcMsg
,
&
rpcRsp
);
if
(
rpcRsp
.
code
!=
0
)
{
dError
(
"user:%s, auth msg received from mnodes, error:%s"
,
user
,
tstrerror
(
rpcRsp
.
code
));
}
else
{
SAuthRsp
*
pRsp
=
rpcRsp
.
pCont
;
dDebug
(
"user:%s, auth msg received from mnodes"
,
user
);
SAuthRsp
*
pRsp
=
rpcRsp
.
pCont
;
memcpy
(
secret
,
pRsp
->
secret
,
TSDB_KEY_LEN
);
memcpy
(
ckey
,
pRsp
->
ckey
,
TSDB_KEY_LEN
);
*
spi
=
pRsp
->
spi
;
...
...
@@ -317,7 +306,7 @@ static int32_t dnodeRetrieveUserAuthInfo(char *user, char *spi, char *encrypt, c
return
rpcRsp
.
code
;
}
static
int32_t
dnodeInitShell
()
{
static
int32_t
dnodeInitShell
Server
()
{
int32_t
numOfThreads
=
(
int32_t
)((
tsNumOfCores
*
tsNumOfThreadsPerCore
)
/
2
.
0
);
if
(
numOfThreads
<
1
)
{
numOfThreads
=
1
;
...
...
@@ -344,7 +333,7 @@ static int32_t dnodeInitShell() {
return
0
;
}
static
void
dnodeCleanupShell
()
{
static
void
dnodeCleanupShell
Server
()
{
if
(
tsTrans
.
shellRpc
)
{
rpcClose
(
tsTrans
.
shellRpc
);
tsTrans
.
shellRpc
=
NULL
;
...
...
@@ -356,11 +345,11 @@ int32_t dnodeInitTrans() {
return
-
1
;
}
if
(
dnodeInitServer
()
!=
0
)
{
if
(
dnodeInit
Peer
Server
()
!=
0
)
{
return
-
1
;
}
if
(
dnodeInitShell
()
!=
0
)
{
if
(
dnodeInitShell
Server
()
!=
0
)
{
return
-
1
;
}
...
...
@@ -368,7 +357,15 @@ int32_t dnodeInitTrans() {
}
void
dnodeCleanupTrans
()
{
dnodeCleanupShell
();
dnodeCleanupServer
();
dnodeCleanupShell
Server
();
dnodeCleanup
Peer
Server
();
dnodeCleanupClient
();
}
void
dnodeSendMsgToDnode
(
SRpcEpSet
*
epSet
,
SRpcMsg
*
rpcMsg
)
{
rpcSendRequest
(
tsTrans
.
clientRpc
,
epSet
,
rpcMsg
,
NULL
);
}
void
dnodeSendMsgToMnode
(
SRpcMsg
*
rpcMsg
)
{
SRpcEpSet
epSet
=
{
0
};
dnodeGetMnodeEpSetForPeer
(
&
epSet
);
dnodeSendMsgToDnode
(
&
epSet
,
rpcMsg
);
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录