Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
fc5236ab
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1185
Star
22015
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看板
未验证
提交
fc5236ab
编写于
6月 29, 2020
作者:
S
Shengliang Guan
提交者:
GitHub
6月 29, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #2496 from taosdata/hotfix/invalidWrite
rpc did not handle simeple request head in right way if its session i…
上级
f4f9faa0
13cc896c
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
15 addition
and
4 deletion
+15
-4
src/common/src/tglobal.c
src/common/src/tglobal.c
+1
-1
src/rpc/src/rpcMain.c
src/rpc/src/rpcMain.c
+6
-0
src/rpc/src/rpcTcp.c
src/rpc/src/rpcTcp.c
+1
-1
src/rpc/src/rpcUdp.c
src/rpc/src/rpcUdp.c
+1
-1
src/util/src/tqueue.c
src/util/src/tqueue.c
+6
-1
未找到文件。
src/common/src/tglobal.c
浏览文件 @
fc5236ab
...
...
@@ -43,7 +43,7 @@ int16_t tsNumOfTotalVnodes = TSDB_INVALID_VNODE_NUM;
int32_t
tsNumOfMnodes
=
3
;
// common
int32_t
tsRpcTimer
=
3
00
;
int32_t
tsRpcTimer
=
10
00
;
int32_t
tsRpcMaxTime
=
600
;
// seconds;
int32_t
tsMaxShellConns
=
5000
;
int32_t
tsMaxConnections
=
5000
;
...
...
src/rpc/src/rpcMain.c
浏览文件 @
fc5236ab
...
...
@@ -665,6 +665,12 @@ static SRpcConn *rpcAllocateServerConn(SRpcInfo *pRpc, SRecvInfo *pRecv) {
return
pConn
;
}
// if code is not 0, it means it is simple reqhead, just ignore
if
(
pHead
->
code
!=
0
)
{
terrno
=
TSDB_CODE_RPC_ALREADY_PROCESSED
;
return
NULL
;
}
int
sid
=
taosAllocateId
(
pRpc
->
idPool
);
if
(
sid
<=
0
)
{
tError
(
"%s maximum number of sessions:%d is reached"
,
pRpc
->
label
,
pRpc
->
sessions
);
...
...
src/rpc/src/rpcTcp.c
浏览文件 @
fc5236ab
...
...
@@ -419,7 +419,7 @@ static int taosReadTcpData(SFdObj *pFdObj, SRecvInfo *pInfo) {
tError
(
"%s %p TCP malloc(size:%d) fail"
,
pThreadObj
->
label
,
pFdObj
->
thandle
,
msgLen
);
return
-
1
;
}
else
{
// tDebug("
malloc mem: %p", buffer);
tDebug
(
"TCP
malloc mem: %p"
,
buffer
);
}
msg
=
buffer
+
tsRpcOverhead
;
...
...
src/rpc/src/rpcUdp.c
浏览文件 @
fc5236ab
...
...
@@ -212,7 +212,7 @@ static void *taosRecvUdpData(void *param) {
tError
(
"%s failed to allocate memory, size:%ld"
,
pConn
->
label
,
dataLen
);
continue
;
}
else
{
// tTrace("
malloc mem: %p", tmsg);
tDebug
(
"UDP
malloc mem: %p"
,
tmsg
);
}
tmsg
+=
tsRpcOverhead
;
// overhead for SRpcReqContext
...
...
src/util/src/tqueue.c
浏览文件 @
fc5236ab
...
...
@@ -68,10 +68,15 @@ void taosCloseQueue(taos_queue param) {
if
(
param
==
NULL
)
return
;
STaosQueue
*
queue
=
(
STaosQueue
*
)
param
;
STaosQnode
*
pTemp
;
STaosQset
*
qset
;
pthread_mutex_lock
(
&
queue
->
mutex
);
STaosQnode
*
pNode
=
queue
->
head
;
queue
->
head
=
NULL
;
qset
=
queue
->
qset
;
pthread_mutex_unlock
(
&
queue
->
mutex
);
if
(
queue
->
qset
)
taosRemoveFromQset
(
q
ueue
->
q
set
,
queue
);
if
(
queue
->
qset
)
taosRemoveFromQset
(
qset
,
queue
);
pthread_mutex_lock
(
&
queue
->
mutex
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录