Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
d7ec7ed9
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,发现更多精彩内容 >>
提交
d7ec7ed9
编写于
1月 06, 2023
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more code
上级
75cd1fc9
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
39 addition
and
9 deletion
+39
-9
source/dnode/vnode/src/inc/vnd.h
source/dnode/vnode/src/inc/vnd.h
+2
-0
source/dnode/vnode/src/vnd/vnodeBufPool.c
source/dnode/vnode/src/vnd/vnodeBufPool.c
+0
-2
source/dnode/vnode/src/vnd/vnodeCommit.c
source/dnode/vnode/src/vnd/vnodeCommit.c
+37
-7
未找到文件。
source/dnode/vnode/src/inc/vnd.h
浏览文件 @
d7ec7ed9
...
...
@@ -62,6 +62,8 @@ struct SVBufPoolNode {
struct
SVBufPool
{
SVBufPool
*
freeNext
;
SVBufPool
*
recycleNext
;
SVBufPool
*
recyclePrev
;
SVnode
*
pVnode
;
TdThreadSpinlock
*
lock
;
volatile
int32_t
nRef
;
...
...
source/dnode/vnode/src/vnd/vnodeBufPool.c
浏览文件 @
d7ec7ed9
...
...
@@ -69,8 +69,6 @@ static int vnodeBufPoolDestroy(SVBufPool *pPool) {
int
vnodeOpenBufPool
(
SVnode
*
pVnode
)
{
int64_t
size
=
pVnode
->
config
.
szBuf
/
VNODE_BUFPOOL_SEGMENTS
;
ASSERT
(
pVnode
->
freeList
==
NULL
);
for
(
int
i
=
0
;
i
<
VNODE_BUFPOOL_SEGMENTS
;
i
++
)
{
// create pool
if
(
vnodeBufPoolCreate
(
pVnode
,
size
,
&
pVnode
->
aBufPool
[
i
]))
{
...
...
source/dnode/vnode/src/vnd/vnodeCommit.c
浏览文件 @
d7ec7ed9
...
...
@@ -21,18 +21,48 @@
static
int
vnodeEncodeInfo
(
const
SVnodeInfo
*
pInfo
,
char
**
ppData
);
static
int
vnodeCommitImpl
(
SCommitInfo
*
pInfo
);
#define WAIT_TIME_MILI_SEC 10 // miliseconds
int
vnodeBegin
(
SVnode
*
pVnode
)
{
// alloc buffer pool
taosThreadMutexLock
(
&
pVnode
->
mutex
);
while
(
pVnode
->
freeList
==
NULL
)
{
taosThreadCondWait
(
&
pVnode
->
poolNotEmpty
,
&
pVnode
->
mutex
);
}
int32_t
nTry
=
0
;
for
(;;)
{
while
(
pVnode
->
freeList
==
NULL
)
{
vDebug
(
"vgId:%d no free buffer pool, try to wait %d..."
,
TD_VID
(
pVnode
),
++
nTry
);
struct
timeval
tv
;
struct
timespec
ts
;
taosGetTimeOfDay
(
&
tv
);
ts
.
tv_sec
=
tv
.
tv_sec
;
ts
.
tv_nsec
=
tv
.
tv_usec
*
1000
+
WAIT_TIME_MILI_SEC
*
1000000
;
int32_t
rc
=
taosThreadCondTimedWait
(
&
pVnode
->
poolNotEmpty
,
&
pVnode
->
mutex
,
&
ts
);
if
(
rc
==
ETIMEDOUT
)
{
// time out, break
break
;
}
else
if
(
rc
!=
0
)
{
// error occurred
terrno
=
TAOS_SYSTEM_ERROR
(
rc
);
vError
(
"vgId:%d %s failed since %s"
,
TD_VID
(
pVnode
),
__func__
,
tstrerror
(
terrno
));
taosThreadMutexUnlock
(
&
pVnode
->
mutex
);
return
-
1
;
}
}
pVnode
->
inUse
=
pVnode
->
freeList
;
pVnode
->
inUse
->
nRef
=
1
;
pVnode
->
freeList
=
pVnode
->
inUse
->
freeNext
;
pVnode
->
inUse
->
freeNext
=
NULL
;
if
(
pVnode
->
freeList
)
{
// allocate from free list
pVnode
->
inUse
=
pVnode
->
freeList
;
pVnode
->
inUse
->
nRef
=
1
;
pVnode
->
freeList
=
pVnode
->
inUse
->
freeNext
;
pVnode
->
inUse
->
freeNext
=
NULL
;
break
;
}
else
if
(
nTry
==
1
)
{
// try to recycle a buffer pool
vInfo
(
"vgId:%d no free buffer pool, try to recycle..."
,
TD_VID
(
pVnode
));
ASSERT
(
false
);
// TODO: condition of nTry == 1 may not be reasonable
}
}
taosThreadMutexUnlock
(
&
pVnode
->
mutex
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录