Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
ccbac086
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
ccbac086
编写于
12月 18, 2020
作者:
M
Minglei Jin
提交者:
GitHub
12月 18, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Revert "[TD-1827]<enhance>: force version check for client messages"
上级
fea7ab21
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
11 addition
and
22 deletion
+11
-22
src/client/src/tscServer.c
src/client/src/tscServer.c
+3
-4
src/dnode/src/dnodeMRead.c
src/dnode/src/dnodeMRead.c
+2
-0
src/dnode/src/dnodeMWrite.c
src/dnode/src/dnodeMWrite.c
+2
-0
src/dnode/src/dnodeShell.c
src/dnode/src/dnodeShell.c
+1
-14
src/dnode/src/dnodeVRead.c
src/dnode/src/dnodeVRead.c
+2
-0
src/dnode/src/dnodeVWrite.c
src/dnode/src/dnodeVWrite.c
+1
-0
src/inc/taosmsg.h
src/inc/taosmsg.h
+0
-4
未找到文件。
src/client/src/tscServer.c
浏览文件 @
ccbac086
...
...
@@ -243,7 +243,7 @@ int tscSendMsgToServer(SSqlObj *pSql) {
STscObj
*
pObj
=
pSql
->
pTscObj
;
SSqlCmd
*
pCmd
=
&
pSql
->
cmd
;
char
*
pMsg
=
rpcMallocCont
(
sizeof
(
SMsgVersion
)
+
pCmd
->
payloadLen
);
char
*
pMsg
=
rpcMallocCont
(
pCmd
->
payloadLen
);
if
(
NULL
==
pMsg
)
{
tscError
(
"%p msg:%s malloc failed"
,
pSql
,
taosMsg
[
pSql
->
cmd
.
msgType
]);
return
TSDB_CODE_TSC_OUT_OF_MEMORY
;
...
...
@@ -254,13 +254,12 @@ int tscSendMsgToServer(SSqlObj *pSql) {
tscDumpMgmtEpSet
(
pSql
);
}
tstrncpy
(
pMsg
,
version
,
sizeof
(
SMsgVersion
));
memcpy
(
pMsg
+
sizeof
(
SMsgVersion
),
pSql
->
cmd
.
payload
,
pSql
->
cmd
.
payloadLen
);
memcpy
(
pMsg
,
pSql
->
cmd
.
payload
,
pSql
->
cmd
.
payloadLen
);
SRpcMsg
rpcMsg
=
{
.
msgType
=
pSql
->
cmd
.
msgType
,
.
pCont
=
pMsg
,
.
contLen
=
pSql
->
cmd
.
payloadLen
+
sizeof
(
SMsgVersion
)
,
.
contLen
=
pSql
->
cmd
.
payloadLen
,
.
ahandle
=
(
void
*
)
pSql
->
self
,
.
handle
=
NULL
,
.
code
=
0
...
...
src/dnode/src/dnodeMRead.c
浏览文件 @
ccbac086
...
...
@@ -124,6 +124,8 @@ void dnodeDispatchToMReadQueue(SRpcMsg *pMsg) {
SMnodeMsg
*
pRead
=
mnodeCreateMsg
(
pMsg
);
taosWriteQitem
(
tsMReadQueue
,
TAOS_QTYPE_RPC
,
pRead
);
}
rpcFreeCont
(
pMsg
->
pCont
);
}
static
void
dnodeFreeMReadMsg
(
SMnodeMsg
*
pRead
)
{
...
...
src/dnode/src/dnodeMWrite.c
浏览文件 @
ccbac086
...
...
@@ -125,6 +125,8 @@ void dnodeDispatchToMWriteQueue(SRpcMsg *pMsg) {
taosMsg
[
pWrite
->
rpcMsg
.
msgType
],
tsMWriteQueue
);
taosWriteQitem
(
tsMWriteQueue
,
TAOS_QTYPE_RPC
,
pWrite
);
}
rpcFreeCont
(
pMsg
->
pCont
);
}
static
void
dnodeFreeMWriteMsg
(
SMnodeMsg
*
pWrite
)
{
...
...
src/dnode/src/dnodeShell.c
浏览文件 @
ccbac086
...
...
@@ -127,20 +127,7 @@ static void dnodeProcessMsgFromShell(SRpcMsg *pMsg, SRpcEpSet *pEpSet) {
}
else
{}
if
(
dnodeProcessShellMsgFp
[
pMsg
->
msgType
]
)
{
SMsgVersion
*
pMsgVersion
=
pMsg
->
pCont
;
if
(
taosCheckVersion
(
pMsgVersion
->
clientVersion
,
version
,
3
)
!=
TSDB_CODE_SUCCESS
)
{
rpcMsg
.
code
=
TSDB_CODE_TSC_INVALID_VERSION
;
rpcSendResponse
(
&
rpcMsg
);
rpcFreeCont
(
pMsg
->
pCont
);
return
;
// todo change the error code
}
pMsg
->
pCont
+=
sizeof
(
*
pMsgVersion
);
pMsg
->
contLen
-=
sizeof
(
*
pMsgVersion
);
(
*
dnodeProcessShellMsgFp
[
pMsg
->
msgType
])(
pMsg
);
//pMsg->contLen += sizeof(*pMsgVersion);
rpcFreeCont
(
pMsg
->
pCont
-
sizeof
(
*
pMsgVersion
));
}
else
{
dError
(
"RPC %p, shell msg:%s is not processed"
,
pMsg
->
handle
,
taosMsg
[
pMsg
->
msgType
]);
rpcMsg
.
code
=
TSDB_CODE_DND_MSG_NOT_PROCESSED
;
...
...
@@ -244,4 +231,4 @@ SStatisInfo dnodeGetStatisInfo() {
}
return
info
;
}
}
\ No newline at end of file
src/dnode/src/dnodeVRead.c
浏览文件 @
ccbac086
...
...
@@ -77,6 +77,8 @@ void dnodeDispatchToVReadQueue(SRpcMsg *pMsg) {
SRpcMsg
rpcRsp
=
{.
handle
=
pMsg
->
handle
,
.
code
=
TSDB_CODE_VND_INVALID_VGROUP_ID
};
rpcSendResponse
(
&
rpcRsp
);
}
rpcFreeCont
(
pMsg
->
pCont
);
}
void
*
dnodeAllocVQueryQueue
(
void
*
pVnode
)
{
...
...
src/dnode/src/dnodeVWrite.c
浏览文件 @
ccbac086
...
...
@@ -102,6 +102,7 @@ void dnodeDispatchToVWriteQueue(SRpcMsg *pRpcMsg) {
}
vnodeRelease
(
pVnode
);
rpcFreeCont
(
pRpcMsg
->
pCont
);
}
void
*
dnodeAllocVWriteQueue
(
void
*
pVnode
)
{
...
...
src/inc/taosmsg.h
浏览文件 @
ccbac086
...
...
@@ -198,10 +198,6 @@ typedef struct {
int32_t
numOfVnodes
;
}
SMsgDesc
;
typedef
struct
SMsgVersion
{
char
clientVersion
[
TSDB_VERSION_LEN
];
}
SMsgVersion
;
typedef
struct
SMsgHead
{
int32_t
contLen
;
int32_t
vgId
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录