Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
437d4947
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
437d4947
编写于
8月 24, 2022
作者:
M
Minglei Jin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: tdb page cache hash page removing fix
上级
4c287f60
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
24 addition
and
18 deletion
+24
-18
source/libs/tdb/src/db/tdbBtree.c
source/libs/tdb/src/db/tdbBtree.c
+1
-1
source/libs/tdb/src/db/tdbPCache.c
source/libs/tdb/src/db/tdbPCache.c
+20
-17
source/libs/tdb/src/db/tdbPage.c
source/libs/tdb/src/db/tdbPage.c
+3
-0
未找到文件。
source/libs/tdb/src/db/tdbBtree.c
浏览文件 @
437d4947
...
...
@@ -1401,7 +1401,7 @@ static int tdbBtreeDecodeCell(SPage *pPage, const SCell *pCell, SCellDecoder *pD
pDecoder
->
pgno
=
0
;
TDB_CELLDECODER_SET_FREE_NIL
(
pDecoder
);
tdbDebug
(
"tdb btc decoder set nil: %p/0x%x "
,
pDecoder
,
pDecoder
->
freeKV
);
// tdbTrace
("tdb btc decoder set nil: %p/0x%x ", pDecoder, pDecoder->freeKV);
// 1. Decode header part
if
(
!
leaf
)
{
...
...
source/libs/tdb/src/db/tdbPCache.c
浏览文件 @
437d4947
...
...
@@ -145,7 +145,7 @@ static SPage *tdbPCacheFetchImpl(SPCache *pCache, const SPgid *pPgid, TXN *pTxn)
// 1. Search the hash table
pPage
=
pCache
->
pgHash
[
tdbPCachePageHash
(
pPgid
)
%
pCache
->
nHash
];
while
(
pPage
)
{
if
(
memcmp
(
pPage
->
pgid
.
fileid
,
pPgid
->
fileid
,
TDB_FILE_ID_LEN
)
==
0
&&
pPage
->
pgid
.
pgno
==
pPgid
->
pgno
)
break
;
if
(
pPage
->
pgid
.
pgno
==
pPgid
->
pgno
&&
memcmp
(
pPage
->
pgid
.
fileid
,
pPgid
->
fileid
,
TDB_FILE_ID_LEN
)
==
0
)
break
;
pPage
=
pPage
->
pHashNext
;
}
...
...
@@ -243,7 +243,7 @@ static void tdbPCachePinPage(SPCache *pCache, SPage *pPage) {
pCache
->
nRecyclable
--
;
// printf("pin page %d pgno %d pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
tdb
Trace
(
"pin page %d"
,
pPage
->
id
);
tdb
Debug
(
"pin page %d"
,
pPage
->
id
);
}
}
...
...
@@ -264,30 +264,33 @@ static void tdbPCacheUnpinPage(SPCache *pCache, SPage *pPage) {
pCache
->
nRecyclable
++
;
// printf("unpin page %d pgno %d pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
tdb
Trace
(
"unpin page %d"
,
pPage
->
id
);
tdb
Debug
(
"unpin page %d"
,
pPage
->
id
);
}
static
void
tdbPCacheRemovePageFromHash
(
SPCache
*
pCache
,
SPage
*
pPage
)
{
SPage
**
ppPage
;
uint32_t
h
;
h
=
tdbPCachePageHash
(
&
(
pPage
->
pgid
));
for
(
ppPage
=
&
(
pCache
->
pgHash
[
h
%
pCache
->
nHash
]);
(
*
ppPage
)
&&
*
ppPage
!=
pPage
;
ppPage
=
&
((
*
ppPage
)
->
pHashNext
))
;
uint32_t
h
=
tdbPCachePageHash
(
&
(
pPage
->
pgid
))
%
pCache
->
nHash
;
SPage
**
ppPage
=
&
(
pCache
->
pgHash
[
h
]);
if
(
*
ppPage
==
pPage
)
{
pCache
->
pgHash
[
h
]
=
pPage
->
pHashNext
;
}
else
{
for
(;
(
*
ppPage
)
&&
(
*
ppPage
)
->
pHashNext
!=
pPage
;
ppPage
=
&
((
*
ppPage
)
->
pHashNext
))
;
if
(
*
ppPage
)
{
(
*
ppPage
)
->
pHashNext
=
pPage
->
pHashNext
;
}
}
if
(
*
ppPage
)
{
*
ppPage
=
pPage
->
pHashNext
;
pCache
->
nPage
--
;
pPage
->
pHashNext
=
NULL
;
--
pCache
->
nPage
;
// printf("rmv page %d to hash, pgno %d, pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
}
tdb
Trace
(
"remove page %d to hash"
,
pPage
->
id
);
tdb
Debug
(
"remove page %p/%d from hash"
,
pPage
,
pPage
->
id
);
}
static
void
tdbPCacheAddPageToHash
(
SPCache
*
pCache
,
SPage
*
pPage
)
{
int
h
;
h
=
tdbPCachePageHash
(
&
(
pPage
->
pgid
))
%
pCache
->
nHash
;
uint32_t
h
=
tdbPCachePageHash
(
&
(
pPage
->
pgid
))
%
pCache
->
nHash
;
pPage
->
pHashNext
=
pCache
->
pgHash
[
h
];
pCache
->
pgHash
[
h
]
=
pPage
;
...
...
@@ -295,7 +298,7 @@ static void tdbPCacheAddPageToHash(SPCache *pCache, SPage *pPage) {
pCache
->
nPage
++
;
// printf("add page %d to hash, pgno %d, pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
tdb
Trace
(
"add page %d to hash"
,
pPage
->
id
);
tdb
Debug
(
"add page %p/%d to hash"
,
pPage
,
pPage
->
id
);
}
static
int
tdbPCacheOpenImpl
(
SPCache
*
pCache
)
{
...
...
source/libs/tdb/src/db/tdbPage.c
浏览文件 @
437d4947
...
...
@@ -74,6 +74,7 @@ int tdbPageCreate(int pageSize, SPage **ppPage, void *(*xMalloc)(void *, size_t)
int
tdbPageDestroy
(
SPage
*
pPage
,
void
(
*
xFree
)(
void
*
arg
,
void
*
ptr
),
void
*
arg
)
{
u8
*
ptr
;
tdbDebug
(
"page/destroy: %p %p"
,
pPage
,
xFree
);
ASSERT
(
xFree
);
for
(
int
iOvfl
=
0
;
iOvfl
<
pPage
->
nOverflow
;
iOvfl
++
)
{
...
...
@@ -87,6 +88,7 @@ int tdbPageDestroy(SPage *pPage, void (*xFree)(void *arg, void *ptr), void *arg)
}
void
tdbPageZero
(
SPage
*
pPage
,
u8
szAmHdr
,
int
(
*
xCellSize
)(
const
SPage
*
,
SCell
*
,
int
,
TXN
*
,
SBTree
*
pBt
))
{
tdbDebug
(
"page/zero: %p %"
PRIu8
" %p"
,
pPage
,
szAmHdr
,
xCellSize
);
pPage
->
pPageHdr
=
pPage
->
pData
+
szAmHdr
;
TDB_PAGE_NCELLS_SET
(
pPage
,
0
);
TDB_PAGE_CCELLS_SET
(
pPage
,
pPage
->
pageSize
-
sizeof
(
SPageFtr
));
...
...
@@ -103,6 +105,7 @@ void tdbPageZero(SPage *pPage, u8 szAmHdr, int (*xCellSize)(const SPage *, SCell
}
void
tdbPageInit
(
SPage
*
pPage
,
u8
szAmHdr
,
int
(
*
xCellSize
)(
const
SPage
*
,
SCell
*
,
int
,
TXN
*
,
SBTree
*
pBt
))
{
tdbDebug
(
"page/init: %p %"
PRIu8
" %p"
,
pPage
,
szAmHdr
,
xCellSize
);
pPage
->
pPageHdr
=
pPage
->
pData
+
szAmHdr
;
pPage
->
pCellIdx
=
pPage
->
pPageHdr
+
TDB_PAGE_HDR_SIZE
(
pPage
);
pPage
->
pFreeStart
=
pPage
->
pCellIdx
+
TDB_PAGE_OFFSET_SIZE
(
pPage
)
*
TDB_PAGE_NCELLS
(
pPage
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录