Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
c4b19166
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
c4b19166
编写于
3月 18, 2020
作者:
H
hzcheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
TD-27
上级
47f6402c
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
38 addition
and
4 deletion
+38
-4
src/vnode/tsdb/inc/tsdbMetaFile.h
src/vnode/tsdb/inc/tsdbMetaFile.h
+1
-1
src/vnode/tsdb/src/tsdbMeta.c
src/vnode/tsdb/src/tsdbMeta.c
+13
-0
src/vnode/tsdb/src/tsdbMetaFile.c
src/vnode/tsdb/src/tsdbMetaFile.c
+24
-3
未找到文件。
src/vnode/tsdb/inc/tsdbMetaFile.h
浏览文件 @
c4b19166
...
...
@@ -31,7 +31,7 @@ typedef void (*afterFunc)(void *);
typedef
struct
{
int
fd
;
// File descriptor
int
nDel
;
// number of deletions
int
tombSize
;
//
Number of records
int
tombSize
;
//
deleted size
int64_t
size
;
// Total file size
void
*
map
;
// Map from uid ==> position
iterFunc
iFunc
;
...
...
src/vnode/tsdb/src/tsdbMeta.c
浏览文件 @
c4b19166
...
...
@@ -241,9 +241,22 @@ int32_t tsdbCreateTableImpl(STsdbMeta *pMeta, STableCfg *pCfg) {
}
table
->
content
.
pData
=
tSkipListCreate
(
TSDB_SUPER_TABLE_SL_LEVEL
,
TSDB_DATA_TYPE_TIMESTAMP
,
TYPE_BYTES
[
TSDB_DATA_TYPE_TIMESTAMP
],
0
,
0
,
getTupleKey
);
// Register to meta
if
(
newSuper
)
tsdbAddTableToMeta
(
pMeta
,
super
,
true
);
tsdbAddTableToMeta
(
pMeta
,
table
,
true
);
// Write to meta file
int
bufLen
=
0
;
if
(
newSuper
)
{
void
*
buf
=
tsdbEncodeTable
(
super
,
&
bufLen
);
tsdbInsertMetaRecord
(
pMeta
->
mfh
,
super
->
tableId
.
uid
,
buf
,
bufLen
);
tsdbFreeEncode
(
buf
);
}
void
*
buf
=
tsdbEncodeTable
(
table
,
&
bufLen
);
tsdbInsertMetaRecord
(
pMeta
->
mfh
,
table
->
tableId
.
uid
,
buf
,
bufLen
);
tsdbFreeEncode
(
buf
);
return
0
;
}
...
...
src/vnode/tsdb/src/tsdbMetaFile.c
浏览文件 @
c4b19166
...
...
@@ -45,6 +45,9 @@ SMetaFile *tsdbInitMetaFile(char *rootDir, int32_t maxTables, iterFunc iFunc, af
mfh
->
iFunc
=
iFunc
;
mfh
->
aFunc
=
aFunc
;
mfh
->
appH
=
appH
;
mfh
->
nDel
=
0
;
mfh
->
tombSize
=
0
;
mfh
->
size
=
0
;
// OPEN MAP
mfh
->
map
=
...
...
@@ -62,6 +65,7 @@ SMetaFile *tsdbInitMetaFile(char *rootDir, int32_t maxTables, iterFunc iFunc, af
free
(
mfh
);
return
NULL
;
}
mfh
->
size
+=
TSDB_META_FILE_HEADER_SIZE
;
}
else
{
// file exists, recover from file
if
(
tsdbRestoreFromMetaFile
(
fname
,
mfh
)
<
0
)
{
taosHashCleanup
(
mfh
->
map
);
...
...
@@ -80,7 +84,7 @@ int32_t tsdbInsertMetaRecord(SMetaFile *mfh, int64_t uid, void *cont, int32_t co
SRecordInfo
info
;
info
.
offset
=
mfh
->
size
;
info
.
size
=
contLen
;
// TODO: Here is not correct
info
.
size
=
contLen
;
info
.
uid
=
uid
;
mfh
->
size
+=
(
contLen
+
sizeof
(
SRecordInfo
));
...
...
@@ -90,7 +94,7 @@ int32_t tsdbInsertMetaRecord(SMetaFile *mfh, int64_t uid, void *cont, int32_t co
}
// TODO: make below a function to implement
if
(
lseek
(
mfh
->
fd
,
info
.
offset
,
SEEK_
CUR
)
<
0
)
{
if
(
lseek
(
mfh
->
fd
,
info
.
offset
,
SEEK_
SET
)
<
0
)
{
return
-
1
;
}
...
...
@@ -196,6 +200,11 @@ static int32_t tsdbWriteMetaHeader(int fd) {
return
0
;
}
static
int32_t
tsdbReadMetaHeader
(
int
fd
)
{
lseek
(
fd
,
TSDB_META_FILE_HEADER_SIZE
,
SEEK_SET
);
return
0
;
}
static
int
tsdbCreateMetaFile
(
char
*
fname
)
{
int
fd
=
open
(
fname
,
O_RDWR
|
O_CREAT
,
0755
);
if
(
fd
<
0
)
return
-
1
;
...
...
@@ -229,6 +238,8 @@ static int tsdbRestoreFromMetaFile(char *fname, SMetaFile *mfh) {
return
-
1
;
}
mfh
->
size
+=
TSDB_META_FILE_HEADER_SIZE
;
mfh
->
fd
=
fd
;
void
*
buf
=
NULL
;
...
...
@@ -241,20 +252,30 @@ static int tsdbRestoreFromMetaFile(char *fname, SMetaFile *mfh) {
mfh
->
size
+=
(
info
.
size
+
sizeof
(
SRecordInfo
));
mfh
->
tombSize
+=
(
info
.
size
+
sizeof
(
SRecordInfo
));
lseek
(
mfh
->
fd
,
info
.
size
,
SEEK_CUR
);
mfh
->
size
=
mfh
->
size
+
sizeof
(
SRecordInfo
)
+
info
.
size
;
mfh
->
tombSize
=
mfh
->
tombSize
+
sizeof
(
SRecordInfo
)
+
info
.
size
;
}
else
{
if
(
taosHashPut
(
mfh
->
map
,
(
char
*
)(
&
info
.
uid
),
sizeof
(
info
.
uid
),
(
void
*
)(
&
info
),
sizeof
(
SRecordInfo
))
<
0
)
{
if
(
buf
)
free
(
buf
);
return
-
1
;
}
buf
=
realloc
(
buf
,
info
.
size
);
if
(
buf
==
NULL
)
return
-
1
;
if
(
read
(
mfh
->
fd
,
buf
,
info
.
size
)
<
0
)
return
-
1
;
if
(
read
(
mfh
->
fd
,
buf
,
info
.
size
)
<
0
)
{
if
(
buf
)
free
(
buf
);
return
-
1
;
}
(
*
mfh
->
iFunc
)(
mfh
->
appH
,
buf
,
info
.
size
);
mfh
->
size
=
mfh
->
size
+
sizeof
(
SRecordInfo
)
+
info
.
size
;
}
}
(
*
mfh
->
aFunc
)(
mfh
->
appH
);
if
(
buf
)
free
(
buf
);
return
0
;
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录