Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
d8743b72
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22017
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看板
未验证
提交
d8743b72
编写于
5月 17, 2022
作者:
dengyihao
提交者:
GitHub
5月 17, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #12569 from taosdata/fix/query_limit
fix: mem size limit
上级
b69fc660
f464ecb9
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
68 addition
and
65 deletion
+68
-65
source/common/src/tglobal.c
source/common/src/tglobal.c
+2
-1
source/dnode/mgmt/test/sut/src/sut.cpp
source/dnode/mgmt/test/sut/src/sut.cpp
+2
-1
source/util/src/tqueue.c
source/util/src/tqueue.c
+9
-9
source/util/test/procTest.cpp
source/util/test/procTest.cpp
+55
-54
未找到文件。
source/common/src/tglobal.c
浏览文件 @
d8743b72
...
...
@@ -433,7 +433,8 @@ static int32_t taosAddServerCfg(SConfig *pCfg) {
tsRpcQueueMemoryAllowed
=
tsTotalMemoryKB
*
1024
*
0
.
1
;
tsRpcQueueMemoryAllowed
=
TRANGE
(
tsRpcQueueMemoryAllowed
,
TSDB_MAX_WAL_SIZE
*
10L
,
TSDB_MAX_WAL_SIZE
*
10000L
);
if
(
cfgAddInt64
(
pCfg
,
"rpcQueueMemoryAllowed"
,
tsRpcQueueMemoryAllowed
,
1
,
INT64_MAX
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt64
(
pCfg
,
"rpcQueueMemoryAllowed"
,
tsRpcQueueMemoryAllowed
,
TSDB_MAX_WAL_SIZE
*
10L
,
INT64_MAX
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddBool
(
pCfg
,
"monitor"
,
tsEnableMonitor
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt32
(
pCfg
,
"monitorInterval"
,
tsMonitorInterval
,
1
,
200000
,
0
)
!=
0
)
return
-
1
;
...
...
source/dnode/mgmt/test/sut/src/sut.cpp
浏览文件 @
d8743b72
...
...
@@ -30,6 +30,7 @@ void Testbase::InitLog(const char* path) {
tsdbDebugFlag
=
0
;
tsLogEmbedded
=
1
;
tsAsyncLog
=
0
;
tsRpcQueueMemoryAllowed
=
1024
*
1024
*
64
;
taosRemoveDir
(
path
);
taosMkDir
(
path
);
...
...
@@ -82,7 +83,7 @@ SRpcMsg* Testbase::SendReq(tmsg_t msgType, void* pCont, int32_t contLen) {
return
client
.
SendReq
(
&
rpcMsg
);
}
int32_t
Testbase
::
SendShowReq
(
int8_t
showType
,
const
char
*
tb
,
const
char
*
db
)
{
int32_t
Testbase
::
SendShowReq
(
int8_t
showType
,
const
char
*
tb
,
const
char
*
db
)
{
if
(
showRsp
!=
NULL
)
{
rpcFreeCont
(
showRsp
);
showRsp
=
NULL
;
...
...
source/util/src/tqueue.c
浏览文件 @
d8743b72
...
...
@@ -33,11 +33,11 @@ typedef struct STaosQnode {
}
STaosQnode
;
typedef
struct
STaosQueue
{
STaosQnode
*
head
;
STaosQnode
*
tail
;
STaosQueue
*
next
;
// for queue set
STaosQset
*
qset
;
// for queue set
void
*
ahandle
;
// for queue set
STaosQnode
*
head
;
STaosQnode
*
tail
;
STaosQueue
*
next
;
// for queue set
STaosQset
*
qset
;
// for queue set
void
*
ahandle
;
// for queue set
FItem
itemFp
;
FItems
itemsFp
;
TdThreadMutex
mutex
;
...
...
@@ -46,8 +46,8 @@ typedef struct STaosQueue {
}
STaosQueue
;
typedef
struct
STaosQset
{
STaosQueue
*
head
;
STaosQueue
*
current
;
STaosQueue
*
head
;
STaosQueue
*
current
;
TdThreadMutex
mutex
;
tsem_t
sem
;
int32_t
numOfQueues
;
...
...
@@ -85,7 +85,7 @@ void taosSetQueueFp(STaosQueue *queue, FItem itemFp, FItems itemsFp) {
void
taosCloseQueue
(
STaosQueue
*
queue
)
{
if
(
queue
==
NULL
)
return
;
STaosQnode
*
pTemp
;
STaosQset
*
qset
;
STaosQset
*
qset
;
taosThreadMutexLock
(
&
queue
->
mutex
);
STaosQnode
*
pNode
=
queue
->
head
;
...
...
@@ -152,7 +152,7 @@ void *taosAllocateQitem(int32_t size, EQItype itype) {
if
(
itype
==
RPC_QITEM
)
{
int64_t
alloced
=
atomic_add_fetch_64
(
&
tsRpcQueueMemoryUsed
,
size
);
if
(
alloced
>
tsRpcQueueMemory
Us
ed
)
{
if
(
alloced
>
tsRpcQueueMemory
Allow
ed
)
{
taosMemoryFree
(
pNode
);
terrno
=
TSDB_CODE_OUT_OF_RPC_MEMORY_QUEUE
;
return
NULL
;
...
...
source/util/test/procTest.cpp
浏览文件 @
d8743b72
...
...
@@ -16,11 +16,11 @@
typedef
struct
STestMsg
{
uint16_t
msgType
;
void
*
pCont
;
void
*
pCont
;
int
contLen
;
int32_t
code
;
void
*
handle
;
// rpc handle returned to app
void
*
ahandle
;
// app handle set by client
void
*
handle
;
// rpc handle returned to app
void
*
ahandle
;
// app handle set by client
int
noResp
;
// has response or not(default 0, 0: resp, 1: no resp);
int
persistHandle
;
// persist handle or not
}
STestMsg
;
...
...
@@ -37,7 +37,7 @@ class UtilTesProc : public ::testing::Test {
head
.
msgType
=
2
;
head
.
noResp
=
3
;
head
.
persistHandle
=
4
;
tsRpcQueueMemoryAllowed
=
1024
*
1024
*
64
;
taosRemoveDir
(
"/tmp/td"
);
taosMkDir
(
"/tmp/td"
);
tstrncpy
(
tsLogDir
,
"/tmp/td"
,
PATH_MAX
);
...
...
@@ -64,18 +64,18 @@ TEST_F(UtilTesProc, 00_Init_Cleanup) {
shm
.
size
=
1023
;
SProcCfg
cfg
=
{(
ProcConsumeFp
)
NULL
,
(
ProcMallocFp
)
taosAllocateQitem
,
(
ProcFreeFp
)
taosFreeQitem
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryMalloc
,
(
ProcConsumeFp
)
NULL
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryMalloc
,
shm
,
&
shm
,
"1234"
};
(
ProcMallocFp
)
taosAllocateQitem
,
(
ProcFreeFp
)
taosFreeQitem
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryMalloc
,
(
ProcConsumeFp
)
NULL
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryMalloc
,
shm
,
&
shm
,
"1234"
};
SProcObj
*
proc
=
taosProcInit
(
&
cfg
);
ASSERT_EQ
(
proc
,
nullptr
);
...
...
@@ -105,18 +105,18 @@ TEST_F(UtilTesProc, 01_Push_Pop_Child) {
shm
.
size
=
3000
;
ASSERT_EQ
(
taosCreateShm
(
&
shm
,
1235
,
shm
.
size
),
0
);
SProcCfg
cfg
=
{(
ProcConsumeFp
)
ConsumeChild1
,
(
ProcMallocFp
)
taosAllocateQitem
,
(
ProcFreeFp
)
taosFreeQitem
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcConsumeFp
)
NULL
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
shm
,
(
void
*
)((
int64_t
)
1235
),
"1235_c"
};
(
ProcMallocFp
)
taosAllocateQitem
,
(
ProcFreeFp
)
taosFreeQitem
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcConsumeFp
)
NULL
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
shm
,
(
void
*
)((
int64_t
)
1235
),
"1235_c"
};
SProcObj
*
cproc
=
taosProcInit
(
&
cfg
);
ASSERT_NE
(
cproc
,
nullptr
);
...
...
@@ -163,18 +163,18 @@ TEST_F(UtilTesProc, 02_Push_Pop_Parent) {
shm
.
size
=
3000
;
ASSERT_EQ
(
taosCreateShm
(
&
shm
,
1236
,
shm
.
size
),
0
);
SProcCfg
cfg
=
{(
ProcConsumeFp
)
NULL
,
(
ProcMallocFp
)
taosAllocateQitem
,
(
ProcFreeFp
)
taosFreeQitem
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcConsumeFp
)
ConsumeParent1
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
shm
,
(
void
*
)((
int64_t
)
1236
),
"1236_c"
};
(
ProcMallocFp
)
taosAllocateQitem
,
(
ProcFreeFp
)
taosFreeQitem
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcConsumeFp
)
ConsumeParent1
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
shm
,
(
void
*
)((
int64_t
)
1236
),
"1236_c"
};
SProcObj
*
cproc
=
taosProcInit
(
&
cfg
);
ASSERT_NE
(
cproc
,
nullptr
);
...
...
@@ -217,18 +217,18 @@ TEST_F(UtilTesProc, 03_Handle) {
shm
.
size
=
3000
;
ASSERT_EQ
(
taosCreateShm
(
&
shm
,
1237
,
shm
.
size
),
0
);
SProcCfg
cfg
=
{(
ProcConsumeFp
)
ConsumeChild3
,
(
ProcMallocFp
)
taosAllocateQitem
,
(
ProcFreeFp
)
taosFreeQitem
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcConsumeFp
)
NULL
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
shm
,
(
void
*
)((
int64_t
)
1235
),
"1237_p"
};
(
ProcMallocFp
)
taosAllocateQitem
,
(
ProcFreeFp
)
taosFreeQitem
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcConsumeFp
)
NULL
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
(
ProcMallocFp
)
taosMemoryMalloc
,
(
ProcFreeFp
)
taosMemoryFree
,
shm
,
(
void
*
)((
int64_t
)
1235
),
"1237_p"
};
SProcObj
*
cproc
=
taosProcInit
(
&
cfg
);
ASSERT_NE
(
cproc
,
nullptr
);
...
...
@@ -236,7 +236,8 @@ TEST_F(UtilTesProc, 03_Handle) {
int32_t
i
=
0
;
for
(
i
=
0
;
i
<
20
;
++
i
)
{
head
.
handle
=
(
void
*
)((
int64_t
)
i
);
ASSERT_EQ
(
taosProcPutToChildQ
(
cproc
,
&
head
,
sizeof
(
STestMsg
),
body
,
i
,
(
void
*
)((
int64_t
)
i
),
i
,
PROC_FUNC_REQ
),
0
);
ASSERT_EQ
(
taosProcPutToChildQ
(
cproc
,
&
head
,
sizeof
(
STestMsg
),
body
,
i
,
(
void
*
)((
int64_t
)
i
),
i
,
PROC_FUNC_REQ
),
0
);
}
cfg
.
isChild
=
true
;
...
...
@@ -247,7 +248,7 @@ TEST_F(UtilTesProc, 03_Handle) {
taosProcCleanup
(
pproc
);
int64_t
ref
=
0
;
ref
=
taosProcRemoveHandle
(
cproc
,
(
void
*
)((
int64_t
)
3
));
EXPECT_EQ
(
ref
,
3
);
ref
=
taosProcRemoveHandle
(
cproc
,
(
void
*
)((
int64_t
)
5
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录