Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
e6039839
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看板
提交
e6039839
编写于
6月 12, 2023
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refact code
上级
b8fb34e6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
25 deletion
+10
-25
source/dnode/vnode/src/tsdb/dev/tsdbDataFileRW.c
source/dnode/vnode/src/tsdb/dev/tsdbDataFileRW.c
+10
-25
未找到文件。
source/dnode/vnode/src/tsdb/dev/tsdbDataFileRW.c
浏览文件 @
e6039839
...
...
@@ -17,9 +17,6 @@
typedef
struct
{
SFDataPtr
brinBlkPtr
[
1
];
#if 0
SFDataPtr blockIdxPtr[1];
#endif
SFDataPtr
rsrvd
[
2
];
}
SHeadFooter
;
...
...
@@ -39,11 +36,6 @@ struct SDataFileReader {
bool
tombFooterLoaded
;
bool
brinBlkLoaded
;
bool
tombBlkLoaded
;
#if 0
TABLEID tbid[1];
bool blockIdxLoaded;
#endif
}
ctx
[
1
];
STsdbFD
*
fd
[
TSDB_FTYPE_MAX
];
...
...
@@ -52,11 +44,6 @@ struct SDataFileReader {
STombFooter
tombFooter
[
1
];
TBrinBlkArray
brinBlkArray
[
1
];
TTombBlkArray
tombBlkArray
[
1
];
#if 0
TDataBlkArray dataBlkArray[1];
TBlockIdxArray blockIdxArray[1];
#endif
};
static
int32_t
tsdbDataFileReadHeadFooter
(
SDataFileReader
*
reader
)
{
...
...
@@ -1065,15 +1052,15 @@ _exit:
}
static
int32_t
tsdbDataFileWriteTableDataBegin
(
SDataFileWriter
*
writer
,
const
TABLEID
*
tbid
)
{
int32_t
code
=
0
;
int32_t
lino
=
0
;
SMetaInfo
info
;
bool
drop
=
false
;
TABLEID
tbid1
[
1
];
int32_t
code
=
0
;
int32_t
lino
=
0
;
ASSERT
(
writer
->
ctx
->
blockDataIdx
==
writer
->
ctx
->
blockData
->
nRow
);
ASSERT
(
writer
->
blockData
->
nRow
==
0
);
SMetaInfo
info
;
bool
drop
=
false
;
TABLEID
tbid1
[
1
];
writer
->
ctx
->
tbHasOldData
=
false
;
while
(
writer
->
ctx
->
brinBlkArray
)
{
// skip data of previous table
for
(;
writer
->
ctx
->
brinBlockIdx
<
BRIN_BLOCK_SIZE
(
writer
->
ctx
->
brinBlock
);
writer
->
ctx
->
brinBlockIdx
++
)
{
...
...
@@ -1265,13 +1252,8 @@ static int32_t tsdbDataFileDoWriteTombRecord(SDataFileWriter *writer, const STom
while
(
writer
->
ctx
->
hasOldTomb
)
{
for
(;
writer
->
ctx
->
tombBlockIdx
<
TOMB_BLOCK_SIZE
(
writer
->
ctx
->
tombBlock
);
writer
->
ctx
->
tombBlockIdx
++
)
{
STombRecord
record1
[
1
]
=
{{
.
suid
=
TARRAY2_GET
(
writer
->
ctx
->
tombBlock
->
suid
,
writer
->
ctx
->
tombBlockIdx
),
.
uid
=
TARRAY2_GET
(
writer
->
ctx
->
tombBlock
->
uid
,
writer
->
ctx
->
tombBlockIdx
),
.
version
=
TARRAY2_GET
(
writer
->
ctx
->
tombBlock
->
version
,
writer
->
ctx
->
tombBlockIdx
),
.
skey
=
TARRAY2_GET
(
writer
->
ctx
->
tombBlock
->
skey
,
writer
->
ctx
->
tombBlockIdx
),
.
ekey
=
TARRAY2_GET
(
writer
->
ctx
->
tombBlock
->
ekey
,
writer
->
ctx
->
tombBlockIdx
),
}};
STombRecord
record1
[
1
];
tTombBlockGet
(
writer
->
ctx
->
tombBlock
,
writer
->
ctx
->
tombBlockIdx
,
record1
);
int32_t
c
=
tTombRecordCompare
(
record
,
record1
);
if
(
c
<
0
)
{
...
...
@@ -1365,6 +1347,9 @@ static int32_t tsdbDataFileWriterCloseCommit(SDataFileWriter *writer, TFileOpArr
code
=
tsdbDataFileWriteTableDataBegin
(
writer
,
tbid
);
TSDB_CHECK_CODE
(
code
,
lino
,
_exit
);
code
=
tsdbDataFileWriteBrinBlock
(
writer
);
TSDB_CHECK_CODE
(
code
,
lino
,
_exit
);
code
=
tsdbDataFileWriteBrinBlk
(
writer
);
TSDB_CHECK_CODE
(
code
,
lino
,
_exit
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录