Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
016f7642
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看板
未验证
提交
016f7642
编写于
12月 09, 2022
作者:
S
Shengliang Guan
提交者:
GitHub
12月 09, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #18854 from taosdata/feature/stream
fix: mem leak
上级
b4ca6c84
a6fff957
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
80 addition
and
35 deletion
+80
-35
include/libs/wal/wal.h
include/libs/wal/wal.h
+10
-10
source/client/src/clientMain.c
source/client/src/clientMain.c
+8
-8
source/client/src/clientTmq.c
source/client/src/clientTmq.c
+46
-11
source/dnode/vnode/src/tq/tq.c
source/dnode/vnode/src/tq/tq.c
+10
-4
source/libs/wal/src/walMgmt.c
source/libs/wal/src/walMgmt.c
+1
-0
source/libs/wal/src/walRef.c
source/libs/wal/src/walRef.c
+5
-2
未找到文件。
include/libs/wal/wal.h
浏览文件 @
016f7642
...
...
@@ -33,16 +33,16 @@ extern "C" {
#define wTrace(...) { if (wDebugFlag & DEBUG_TRACE) { taosPrintLog("WAL ", DEBUG_TRACE, wDebugFlag, __VA_ARGS__); }}
// clang-format on
#define WAL_PROTO_VER
0
#define WAL_NOSUFFIX_LEN
20
#define WAL_SUFFIX_AT
(WAL_NOSUFFIX_LEN + 1)
#define WAL_LOG_SUFFIX
"log"
#define WAL_INDEX_SUFFIX
"idx"
#define WAL_REFRESH_MS
1000
#define WAL_PATH_LEN
(TSDB_FILENAME_LEN + 12)
#define WAL_FILE_LEN
(WAL_PATH_LEN + 32)
#define WAL_MAGIC
0xFAFBFCFDF4F3F2F1ULL
#define WAL_SCAN_BUF_SIZE
(1024 * 1024 * 3)
#define WAL_PROTO_VER 0
#define WAL_NOSUFFIX_LEN 20
#define WAL_SUFFIX_AT (WAL_NOSUFFIX_LEN + 1)
#define WAL_LOG_SUFFIX "log"
#define WAL_INDEX_SUFFIX "idx"
#define WAL_REFRESH_MS 1000
#define WAL_PATH_LEN (TSDB_FILENAME_LEN + 12)
#define WAL_FILE_LEN (WAL_PATH_LEN + 32)
#define WAL_MAGIC 0xFAFBFCFDF4F3F2F1ULL
#define WAL_SCAN_BUF_SIZE (1024 * 1024 * 3)
typedef
enum
{
TAOS_WAL_WRITE
=
1
,
...
...
source/client/src/clientMain.c
浏览文件 @
016f7642
...
...
@@ -186,10 +186,10 @@ void taos_free_result(TAOS_RES *res) {
destroyRequest
(
pRequest
);
}
else
if
(
TD_RES_TMQ_METADATA
(
res
))
{
SMqTaosxRspObj
*
pRsp
=
(
SMqTaosxRspObj
*
)
res
;
if
(
pRsp
->
rsp
.
blockData
)
taosArrayDestroyP
(
pRsp
->
rsp
.
blockData
,
taosMemoryFree
);
if
(
pRsp
->
rsp
.
blockDataLen
)
taosArrayDestroy
(
pRsp
->
rsp
.
blockDataLen
);
if
(
pRsp
->
rsp
.
withTbName
)
taosArrayDestroyP
(
pRsp
->
rsp
.
blockTbName
,
taosMemoryFree
);
if
(
pRsp
->
rsp
.
withSchema
)
taosArrayDestroyP
(
pRsp
->
rsp
.
blockSchema
,
(
FDelete
)
tDeleteSSchemaWrapper
);
taosArrayDestroyP
(
pRsp
->
rsp
.
blockData
,
taosMemoryFree
);
taosArrayDestroy
(
pRsp
->
rsp
.
blockDataLen
);
taosArrayDestroyP
(
pRsp
->
rsp
.
blockTbName
,
taosMemoryFree
);
taosArrayDestroyP
(
pRsp
->
rsp
.
blockSchema
,
(
FDelete
)
tDeleteSSchemaWrapper
);
// taosx
taosArrayDestroy
(
pRsp
->
rsp
.
createTableLen
);
taosArrayDestroyP
(
pRsp
->
rsp
.
createTableReq
,
taosMemoryFree
);
...
...
@@ -199,10 +199,10 @@ void taos_free_result(TAOS_RES *res) {
taosMemoryFree
(
pRsp
);
}
else
if
(
TD_RES_TMQ
(
res
))
{
SMqRspObj
*
pRsp
=
(
SMqRspObj
*
)
res
;
if
(
pRsp
->
rsp
.
blockData
)
taosArrayDestroyP
(
pRsp
->
rsp
.
blockData
,
taosMemoryFree
);
if
(
pRsp
->
rsp
.
blockDataLen
)
taosArrayDestroy
(
pRsp
->
rsp
.
blockDataLen
);
if
(
pRsp
->
rsp
.
withTbName
)
taosArrayDestroyP
(
pRsp
->
rsp
.
blockTbName
,
taosMemoryFree
);
if
(
pRsp
->
rsp
.
withSchema
)
taosArrayDestroyP
(
pRsp
->
rsp
.
blockSchema
,
(
FDelete
)
tDeleteSSchemaWrapper
);
taosArrayDestroyP
(
pRsp
->
rsp
.
blockData
,
taosMemoryFree
);
taosArrayDestroy
(
pRsp
->
rsp
.
blockDataLen
);
taosArrayDestroyP
(
pRsp
->
rsp
.
blockTbName
,
taosMemoryFree
);
taosArrayDestroyP
(
pRsp
->
rsp
.
blockSchema
,
(
FDelete
)
tDeleteSSchemaWrapper
);
pRsp
->
resInfo
.
pRspMsg
=
NULL
;
doFreeReqResultInfo
(
&
pRsp
->
resInfo
);
taosMemoryFree
(
pRsp
);
...
...
source/client/src/clientTmq.c
浏览文件 @
016f7642
...
...
@@ -814,24 +814,55 @@ int32_t tmqHandleAllDelayedTask(tmq_t* tmq) {
return
0
;
}
static
void
tmqFreeRspWrapper
(
SMqRspWrapper
*
rspWrapper
)
{
if
(
rspWrapper
->
tmqRspType
==
TMQ_MSG_TYPE__END_RSP
)
{
// do nothing
}
else
if
(
rspWrapper
->
tmqRspType
==
TMQ_MSG_TYPE__EP_RSP
)
{
SMqAskEpRspWrapper
*
pEpRspWrapper
=
(
SMqAskEpRspWrapper
*
)
rspWrapper
;
tDeleteSMqAskEpRsp
(
&
pEpRspWrapper
->
msg
);
}
else
if
(
rspWrapper
->
tmqRspType
==
TMQ_MSG_TYPE__POLL_RSP
)
{
SMqPollRspWrapper
*
pRsp
=
(
SMqPollRspWrapper
*
)
rspWrapper
;
taosArrayDestroyP
(
pRsp
->
dataRsp
.
blockData
,
taosMemoryFree
);
taosArrayDestroy
(
pRsp
->
dataRsp
.
blockDataLen
);
taosArrayDestroyP
(
pRsp
->
dataRsp
.
blockTbName
,
taosMemoryFree
);
taosArrayDestroyP
(
pRsp
->
dataRsp
.
blockSchema
,
(
FDelete
)
tDeleteSSchemaWrapper
);
}
else
if
(
rspWrapper
->
tmqRspType
==
TMQ_MSG_TYPE__POLL_META_RSP
)
{
SMqPollRspWrapper
*
pRsp
=
(
SMqPollRspWrapper
*
)
rspWrapper
;
taosMemoryFree
(
pRsp
->
metaRsp
.
metaRsp
);
}
else
if
(
rspWrapper
->
tmqRspType
==
TMQ_MSG_TYPE__TAOSX_RSP
)
{
SMqPollRspWrapper
*
pRsp
=
(
SMqPollRspWrapper
*
)
rspWrapper
;
taosArrayDestroyP
(
pRsp
->
taosxRsp
.
blockData
,
taosMemoryFree
);
taosArrayDestroy
(
pRsp
->
taosxRsp
.
blockDataLen
);
taosArrayDestroyP
(
pRsp
->
taosxRsp
.
blockTbName
,
taosMemoryFree
);
taosArrayDestroyP
(
pRsp
->
taosxRsp
.
blockSchema
,
(
FDelete
)
tDeleteSSchemaWrapper
);
// taosx
taosArrayDestroy
(
pRsp
->
taosxRsp
.
createTableLen
);
taosArrayDestroyP
(
pRsp
->
taosxRsp
.
createTableReq
,
taosMemoryFree
);
}
}
void
tmqClearUnhandleMsg
(
tmq_t
*
tmq
)
{
SMqRspWrapper
*
msg
=
NULL
;
SMqRspWrapper
*
rspWrapper
=
NULL
;
while
(
1
)
{
taosGetQitem
(
tmq
->
qall
,
(
void
**
)
&
msg
);
if
(
msg
)
taosFreeQitem
(
msg
);
else
taosGetQitem
(
tmq
->
qall
,
(
void
**
)
&
rspWrapper
);
if
(
rspWrapper
)
{
tmqFreeRspWrapper
(
rspWrapper
);
taosFreeQitem
(
rspWrapper
);
}
else
{
break
;
}
}
msg
=
NULL
;
rspWrapper
=
NULL
;
taosReadAllQitems
(
tmq
->
mqueue
,
tmq
->
qall
);
while
(
1
)
{
taosGetQitem
(
tmq
->
qall
,
(
void
**
)
&
msg
);
if
(
msg
)
taosFreeQitem
(
msg
);
else
taosGetQitem
(
tmq
->
qall
,
(
void
**
)
&
rspWrapper
);
if
(
rspWrapper
)
{
tmqFreeRspWrapper
(
rspWrapper
);
taosFreeQitem
(
rspWrapper
);
}
else
{
break
;
}
}
}
...
...
@@ -1644,6 +1675,7 @@ int32_t tmqHandleNoPollRsp(tmq_t* tmq, SMqRspWrapper* rspWrapper, bool* pReset)
tDeleteSMqAskEpRsp
(
rspMsg
);
*
pReset
=
true
;
}
else
{
tmqFreeRspWrapper
(
rspWrapper
);
*
pReset
=
false
;
}
}
else
{
...
...
@@ -1695,6 +1727,7 @@ void* tmqHandleAllRsp(tmq_t* tmq, int64_t timeout, bool pollIfReset) {
}
else
{
tscDebug
(
"msg discard since epoch mismatch: msg epoch %d, consumer epoch %d"
,
pollRspWrapper
->
dataRsp
.
head
.
epoch
,
consumerEpoch
);
tmqFreeRspWrapper
(
rspWrapper
);
taosFreeQitem
(
pollRspWrapper
);
}
}
else
if
(
rspWrapper
->
tmqRspType
==
TMQ_MSG_TYPE__POLL_META_RSP
)
{
...
...
@@ -1713,6 +1746,7 @@ void* tmqHandleAllRsp(tmq_t* tmq, int64_t timeout, bool pollIfReset) {
}
else
{
tscDebug
(
"msg discard since epoch mismatch: msg epoch %d, consumer epoch %d"
,
pollRspWrapper
->
metaRsp
.
head
.
epoch
,
consumerEpoch
);
tmqFreeRspWrapper
(
rspWrapper
);
taosFreeQitem
(
pollRspWrapper
);
}
}
else
if
(
rspWrapper
->
tmqRspType
==
TMQ_MSG_TYPE__TAOSX_RSP
)
{
...
...
@@ -1743,6 +1777,7 @@ void* tmqHandleAllRsp(tmq_t* tmq, int64_t timeout, bool pollIfReset) {
}
else
{
tscDebug
(
"msg discard since epoch mismatch: msg epoch %d, consumer epoch %d"
,
pollRspWrapper
->
taosxRsp
.
head
.
epoch
,
consumerEpoch
);
tmqFreeRspWrapper
(
rspWrapper
);
taosFreeQitem
(
pollRspWrapper
);
}
}
else
{
...
...
@@ -1794,7 +1829,7 @@ TAOS_RES* tmq_consumer_poll(tmq_t* tmq, int64_t timeout) {
while
(
1
)
{
tmqHandleAllDelayedTask
(
tmq
);
if
(
tmqPollImpl
(
tmq
,
timeout
)
<
0
)
{
tscDebug
(
"
return since poll err"
);
tscDebug
(
"
consumer:%"
PRId64
" return since poll err"
,
tmq
->
consumerId
);
/*return NULL;*/
}
...
...
source/dnode/vnode/src/tq/tq.c
浏览文件 @
016f7642
...
...
@@ -725,9 +725,15 @@ int32_t tqProcessDeleteSubReq(STQ* pTq, int64_t version, char* msg, int32_t msgL
}
taosWUnLockLatch
(
&
pTq
->
pushLock
);
code
=
taosHashRemove
(
pTq
->
pHandle
,
pReq
->
subKey
,
strlen
(
pReq
->
subKey
));
if
(
code
!=
0
)
{
tqError
(
"cannot process tq delete req %s, since no such handle"
,
pReq
->
subKey
);
STqHandle
*
pHandle
=
taosHashGet
(
pTq
->
pHandle
,
pReq
->
subKey
,
strlen
(
pReq
->
subKey
));
if
(
pHandle
)
{
if
(
pHandle
->
pRef
)
{
walCloseRef
(
pTq
->
pVnode
->
pWal
,
pHandle
->
pRef
->
refId
);
}
code
=
taosHashRemove
(
pTq
->
pHandle
,
pReq
->
subKey
,
strlen
(
pReq
->
subKey
));
if
(
code
!=
0
)
{
tqError
(
"cannot process tq delete req %s, since no such handle"
,
pReq
->
subKey
);
}
}
code
=
tqOffsetDelete
(
pTq
->
pOffsetStore
,
pReq
->
subKey
);
...
...
@@ -736,7 +742,7 @@ int32_t tqProcessDeleteSubReq(STQ* pTq, int64_t version, char* msg, int32_t msgL
}
if
(
tqMetaDeleteHandle
(
pTq
,
pReq
->
subKey
)
<
0
)
{
ASSERT
(
0
);
tqError
(
"cannot process tq delete req %s, since no such offset in tdb"
,
pReq
->
subKey
);
}
return
0
;
}
...
...
source/libs/wal/src/walMgmt.c
浏览文件 @
016f7642
...
...
@@ -223,6 +223,7 @@ void walClose(SWal *pWal) {
taosMemoryFree
(
pRef
);
}
taosHashCleanup
(
pWal
->
pRefHash
);
pWal
->
pRefHash
=
NULL
;
taosThreadMutexUnlock
(
&
pWal
->
mutex
);
taosRemoveRef
(
tsWal
.
refSetId
,
pWal
->
refId
);
...
...
source/libs/wal/src/walRef.c
浏览文件 @
016f7642
...
...
@@ -32,15 +32,18 @@ SWalRef *walOpenRef(SWal *pWal) {
return
pRef
;
}
#if 1
void
walCloseRef
(
SWal
*
pWal
,
int64_t
refId
)
{
SWalRef
**
ppRef
=
taosHashGet
(
pWal
->
pRefHash
,
&
refId
,
sizeof
(
int64_t
));
if
(
ppRef
==
NULL
)
return
;
SWalRef
*
pRef
=
*
ppRef
;
if
(
pRef
)
{
wDebug
(
"vgId:%d, wal close ref %"
PRId64
", refId %"
PRId64
,
pWal
->
cfg
.
vgId
,
pRef
->
refVer
,
pRef
->
refId
);
}
else
{
wDebug
(
"vgId:%d, wal close ref null, refId %"
PRId64
,
pWal
->
cfg
.
vgId
,
refId
);
}
taosHashRemove
(
pWal
->
pRefHash
,
&
refId
,
sizeof
(
int64_t
));
taosMemoryFree
(
pRef
);
}
#endif
int32_t
walRefVer
(
SWalRef
*
pRef
,
int64_t
ver
)
{
SWal
*
pWal
=
pRef
->
pWal
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录