Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8f3c4e46
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看板
提交
8f3c4e46
编写于
6月 11, 2022
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more work
上级
7bed7854
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
99 addition
and
56 deletion
+99
-56
source/dnode/vnode/src/inc/tsdb.h
source/dnode/vnode/src/inc/tsdb.h
+18
-14
source/dnode/vnode/src/tsdb/tsdbCommit.c
source/dnode/vnode/src/tsdb/tsdbCommit.c
+24
-34
source/dnode/vnode/src/tsdb/tsdbReaderWriter.c
source/dnode/vnode/src/tsdb/tsdbReaderWriter.c
+44
-8
source/dnode/vnode/src/tsdb/tsdbUtil.c
source/dnode/vnode/src/tsdb/tsdbUtil.c
+13
-0
未找到文件。
source/dnode/vnode/src/inc/tsdb.h
浏览文件 @
8f3c4e46
...
...
@@ -31,18 +31,21 @@ extern "C" {
#define tsdbDebug(...) do { if (tsdbDebugFlag & DEBUG_DEBUG) { taosPrintLog("TSDB ", DEBUG_DEBUG, tsdbDebugFlag, __VA_ARGS__); }} while(0)
#define tsdbTrace(...) do { if (tsdbDebugFlag & DEBUG_TRACE) { taosPrintLog("TSDB ", DEBUG_TRACE, tsdbDebugFlag, __VA_ARGS__); }} while(0)
// clang-format on
typedef
struct
TSDBROW
TSDBROW
;
typedef
struct
TSDBKEY
TSDBKEY
;
typedef
struct
TABLEID
TABLEID
;
typedef
struct
SDelOp
SDelOp
;
typedef
struct
TSDBROW
TSDBROW
;
typedef
struct
TSDBKEY
TSDBKEY
;
typedef
struct
TABLEID
TABLEID
;
typedef
struct
SDelOp
SDelOp
;
typedef
struct
SDelDataItem
SDelDataItem
;
typedef
struct
SDelData
SDelData
;
typedef
struct
SDelIdxItem
SDelIdxItem
;
typedef
struct
SDelIdx
SDelIdx
;
typedef
struct
STbData
STbData
;
typedef
struct
SMemTable
SMemTable
;
typedef
struct
STbDataIter
STbDataIter
;
typedef
struct
SMergeInfo
SMergeInfo
;
typedef
struct
STable
STable
;
// tsdbMemTable ==============================================================================================
typedef
struct
STbData
STbData
;
typedef
struct
SMemTable
SMemTable
;
typedef
struct
STbDataIter
STbDataIter
;
typedef
struct
SMergeInfo
SMergeInfo
;
typedef
struct
STable
STable
;
// SMemTable
int32_t
tsdbMemTableCreate
(
STsdb
*
pTsdb
,
SMemTable
**
ppMemTable
);
...
...
@@ -75,10 +78,6 @@ int32_t tsdbFSStart(STsdbFS *pFS);
int32_t
tsdbFSEnd
(
STsdbFS
*
pFS
,
int8_t
rollback
);
// tsdbReaderWriter.c ==============================================================================================
typedef
struct
SDelDataItem
SDelDataItem
;
typedef
struct
SDelData
SDelData
;
typedef
struct
SDelIdxItem
SDelIdxItem
;
typedef
struct
SDelIdx
SDelIdx
;
// SDataFWriter
typedef
struct
SDataFWriter
SDataFWriter
;
...
...
@@ -149,14 +148,19 @@ void tsdbFree(uint8_t *pBuf);
int32_t
tTABLEIDCmprFn
(
const
void
*
p1
,
const
void
*
p2
);
int32_t
tsdbKeyCmprFn
(
const
void
*
p1
,
const
void
*
p2
);
// SDelIdx
int32_t
tDelIdxGetSize
(
SDelIdx
*
pDelIdx
);
int32_t
tDelIdxGetItem
(
SDelIdx
*
pDelIdx
,
int32_t
idx
,
SDelIdxItem
*
pItem
);
int32_t
tPutDelIdx
(
uint8_t
*
p
,
SDelIdx
*
pDelIdx
);
int32_t
tGetDelIdx
(
uint8_t
*
p
,
SDelIdx
*
pDelIdx
);
// SDelData
int32_t
tPutDelData
(
uint8_t
*
p
,
SDelData
*
pDelData
);
int32_t
tGetDelData
(
uint8_t
*
p
,
SDelData
*
pDelData
);
int32_t
tPutDelFileHdr
(
uint8_t
*
p
,
SDelFile
*
pDelFile
);
int32_t
tGetDelFileHdr
(
uint8_t
*
p
,
SDelFile
*
pDelFile
);
// structs
typedef
struct
{
int
minFid
;
...
...
source/dnode/vnode/src/tsdb/tsdbCommit.c
浏览文件 @
8f3c4e46
...
...
@@ -210,44 +210,34 @@ static int32_t tsdbCommitDelImpl(SCommitter *pCommitter) {
int32_t
iTbData
=
0
;
int32_t
nTbData
=
taosArrayGetSize
(
pMemTable
->
aTbData
);
int32_t
iDelIdx
=
0
;
int32_t
nDelIdx
;
// TODO
int32_t
c
;
int32_t
nDelIdx
=
0
;
// TODO
STbData
*
pTbData
=
NULL
;
SDelIdx
*
pDelIdx
=
NULL
;
SDelIdx
delIdx
;
if
(
iTbData
<
nTbData
)
{
pTbData
=
(
STbData
*
)
taosArrayGetP
(
pMemTable
->
aTbData
,
iTbData
);
}
if
(
iDelIdx
<
nDelIdx
)
{
// tIMapGet();
pDelIdx
=
&
delIdx
;
}
while
(
iTbData
<
nTbData
||
iDelIdx
<
nDelIdx
)
{
// if (iTbData < nTbData) {
// pTbData = (STbData *)taosArrayGetP(pMemTable->aTbData, iTbData);
// } else {
// pTbData = NULL;
// }
// if (iDelIdx < nDelIdx) {
// // pDelIdx = ; // TODO
// } else {
// pDelIdx = NULL;
// }
// if (pTbData && pDelIdx) {
// c = tTABLEIDCmprFn(pTbData, pDelIdx);
// if (c == 0) {
// iTbData++;
// iDelIdx++;
// } else if (c < 0) {
// iTbData++;
// pDelIdx = NULL;
// } else {
// iDelIdx++;
// pTbData = NULL;
// }
// } else {
// if (pTbData) {
// iTbData++;
// } else {
// iDelIdx++;
// }
// }
// TODO: commit with the pTbData and pDelIdx
if
(
pTbData
&&
pDelIdx
)
{
}
else
{
}
// start
// 1. load table del if exist
// impl
while
(
1
)
{
// do merge
}
// end
// tsdbWriteDelData
}
return
code
;
...
...
source/dnode/vnode/src/tsdb/tsdbReaderWriter.c
浏览文件 @
8f3c4e46
...
...
@@ -136,11 +136,45 @@ _err:
return
code
;
}
int32_t
tsdbWriteDelData
(
SDelFWriter
*
pWriter
,
SDelData
*
pDelData
,
uint8_t
**
ppBuf
,
SDelIdxItem
*
pItem
)
{
int32_t
code
=
0
;
int64_t
size
;
int32_t
tsdbWriteDelDta
(
SDelFWriter
*
pWriter
,
SDelData
*
pDelData
,
uint8_t
**
ppBuf
)
{
int32_t
code
=
0
;
uint8_t
*
pBuf
=
NULL
;
int64_t
size
;
int64_t
n
;
// TODO
// prepare
// alloc
if
(
!
ppBuf
)
ppBuf
=
&
pBuf
;
size
=
tPutDelData
(
NULL
,
pDelData
)
+
sizeof
(
TSCKSUM
);
code
=
tsdbRealloc
(
ppBuf
,
size
);
if
(
code
)
goto
_err
;
// build
n
=
tPutDelData
(
*
ppBuf
,
pDelData
);
taosCalcChecksumAppend
(
0
,
*
ppBuf
,
size
);
ASSERT
(
n
+
sizeof
(
TSCKSUM
)
==
size
);
// write
n
=
taosWriteFile
(
pWriter
->
pWriteH
,
*
ppBuf
,
size
);
if
(
n
<
0
)
{
code
=
TAOS_SYSTEM_ERROR
(
errno
);
goto
_err
;
}
ASSERT
(
n
==
size
);
// update
pWriter
->
pFile
->
offset
=
pWriter
->
pFile
->
size
;
pWriter
->
pFile
->
size
+=
size
;
tsdbFree
(
pBuf
);
return
code
;
_err:
tsdbError
(
"vgId:%d failed to write del data since %s"
,
TD_VID
(
pWriter
->
pTsdb
->
pVnode
),
tstrerror
(
code
));
tsdbFree
(
pBuf
);
return
code
;
}
...
...
@@ -158,9 +192,7 @@ int32_t tsdbWriteDelIdx(SDelFWriter *pWriter, SDelIdx *pDelIdx, uint8_t **ppBuf)
if
(
!
ppBuf
)
ppBuf
=
&
pBuf
;
size
=
tPutDelIdx
(
NULL
,
pDelIdx
)
+
sizeof
(
TSCKSUM
);
code
=
tsdbRealloc
(
ppBuf
,
size
);
if
(
code
)
{
goto
_err
;
}
if
(
code
)
goto
_err
;
// build
n
=
tPutDelIdx
(
*
ppBuf
,
pDelIdx
);
...
...
@@ -291,10 +323,14 @@ int32_t tsdbDelFReaderClose(SDelFReader *pReader) {
int32_t
code
=
0
;
if
(
pReader
)
{
taosCloseFile
(
&
pReader
->
pReadH
);
if
(
taosCloseFile
(
&
pReader
->
pReadH
)
<
0
)
{
code
=
TAOS_SYSTEM_ERROR
(
errno
);
goto
_exit
;
}
taosMemoryFree
(
pReader
);
}
_exit:
return
code
;
}
...
...
source/dnode/vnode/src/tsdb/tsdbUtil.c
浏览文件 @
8f3c4e46
...
...
@@ -88,6 +88,19 @@ int32_t tsdbKeyCmprFn(const void *p1, const void *p2) {
return
0
;
}
// SDelIdx ======================================================
int32_t
tDelIdxGetSize
(
SDelIdx
*
pDelIdx
)
{
int32_t
code
=
0
;
// TODO
return
code
;
}
int32_t
tDelIdxGetItem
(
SDelIdx
*
pDelIdx
,
int32_t
idx
,
SDelIdxItem
*
pItem
)
{
int32_t
code
=
0
;
// TODO
return
code
;
}
int32_t
tPutDelIdx
(
uint8_t
*
p
,
SDelIdx
*
pDelIdx
)
{
int32_t
n
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录