Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
c180e692
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看板
提交
c180e692
编写于
8月 17, 2021
作者:
L
lichuang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-4352]<feature>add tsdbMetaCompactRatio config item
上级
15090166
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
21 addition
and
4 deletion
+21
-4
packaging/cfg/taos.cfg
packaging/cfg/taos.cfg
+2
-0
src/common/src/tglobal.c
src/common/src/tglobal.c
+11
-0
src/inc/taosdef.h
src/inc/taosdef.h
+1
-0
src/tsdb/src/tsdbCommit.c
src/tsdb/src/tsdbCommit.c
+7
-4
未找到文件。
packaging/cfg/taos.cfg
浏览文件 @
c180e692
...
...
@@ -284,3 +284,5 @@ keepColumnName 1
# 0 no query allowed, queries are disabled
# queryBufferSize -1
# percent of redundant data in tsdb meta will compact meta data,0 means donot compact
# tsdbMetaCompactRatio 30
src/common/src/tglobal.c
浏览文件 @
c180e692
...
...
@@ -150,6 +150,7 @@ int32_t tsMaxVgroupsPerDb = 0;
int32_t
tsMinTablePerVnode
=
TSDB_TABLES_STEP
;
int32_t
tsMaxTablePerVnode
=
TSDB_DEFAULT_TABLES
;
int32_t
tsTableIncStepPerVnode
=
TSDB_TABLES_STEP
;
int32_t
tsTsdbMetaCompactRatio
=
TSDB_META_COMPACT_RATIO
;
// balance
int8_t
tsEnableBalance
=
1
;
...
...
@@ -1576,6 +1577,16 @@ static void doInitGlobalConfig(void) {
cfg
.
unitType
=
TAOS_CFG_UTYPE_NONE
;
taosInitConfigOption
(
cfg
);
cfg
.
option
=
"tsdbMetaCompactRatio"
;
cfg
.
ptr
=
&
tsTsdbMetaCompactRatio
;
cfg
.
valType
=
TAOS_CFG_VTYPE_INT32
;
cfg
.
cfgType
=
TSDB_CFG_CTYPE_B_CONFIG
;
cfg
.
minValue
=
0
;
cfg
.
maxValue
=
100
;
cfg
.
ptrLength
=
0
;
cfg
.
unitType
=
TAOS_CFG_UTYPE_NONE
;
taosInitConfigOption
(
cfg
);
assert
(
tsGlobalConfigNum
<=
TSDB_CFG_MAX_NUM
);
#ifdef TD_TSZ
// lossy compress
...
...
src/inc/taosdef.h
浏览文件 @
c180e692
...
...
@@ -275,6 +275,7 @@ do { \
#define TSDB_MAX_TABLES 10000000
#define TSDB_DEFAULT_TABLES 1000000
#define TSDB_TABLES_STEP 1000
#define TSDB_META_COMPACT_RATIO 30
#define TSDB_MIN_DAYS_PER_FILE 1
#define TSDB_MAX_DAYS_PER_FILE 3650
...
...
src/tsdb/src/tsdbCommit.c
浏览文件 @
c180e692
...
...
@@ -14,6 +14,8 @@
*/
#include "tsdbint.h"
extern
int32_t
tsTsdbMetaCompactRatio
;
#define TSDB_MAX_SUBBLOCKS 8
static
FORCE_INLINE
int
TSDB_KEY_FID
(
TSKEY
key
,
int32_t
days
,
int8_t
precision
)
{
if
(
key
<
0
)
{
...
...
@@ -339,7 +341,7 @@ static int tsdbCommitMeta(STsdbRepo *pRepo) {
tsdbCloseMFile
(
&
mf
);
tsdbUpdateMFile
(
pfs
,
&
mf
);
if
(
tsdbCompactMetaFile
(
pRepo
,
pfs
,
&
mf
)
<
0
)
{
if
(
ts
TsdbMetaCompactRatio
>
0
&&
ts
dbCompactMetaFile
(
pRepo
,
pfs
,
&
mf
)
<
0
)
{
tsdbError
(
"compact meta file error"
);
}
...
...
@@ -455,8 +457,9 @@ static int tsdbDropMetaRecord(STsdbFS *pfs, SMFile *pMFile, uint64_t uid) {
static
int
tsdbCompactMetaFile
(
STsdbRepo
*
pRepo
,
STsdbFS
*
pfs
,
SMFile
*
pMFile
)
{
float
delPercent
=
(
float
)(
pMFile
->
info
.
nDels
)
/
(
float
)(
pMFile
->
info
.
nRecords
);
float
tombPercent
=
(
float
)(
pMFile
->
info
.
tombSize
)
/
(
float
)(
pMFile
->
info
.
size
);
float
compactRatio
=
(
float
)(
tsTsdbMetaCompactRatio
)
/
100
;
if
(
delPercent
<
0
.
33
&&
tombPercent
<
0
.
33
)
{
if
(
delPercent
<
compactRatio
&&
tombPercent
<
compactRatio
)
{
return
0
;
}
...
...
@@ -465,8 +468,8 @@ static int tsdbCompactMetaFile(STsdbRepo *pRepo, STsdbFS *pfs, SMFile *pMFile) {
return
-
1
;
}
tsdbInfo
(
"begin compact tsdb meta file, nDels:%"
PRId64
",nRecords:%"
PRId64
",tombSize:%"
PRId64
",size:%"
PRId64
,
pMFile
->
info
.
nDels
,
pMFile
->
info
.
nRecords
,
pMFile
->
info
.
tombSize
,
pMFile
->
info
.
size
);
tsdbInfo
(
"begin compact tsdb meta file,
ratio:%d,
nDels:%"
PRId64
",nRecords:%"
PRId64
",tombSize:%"
PRId64
",size:%"
PRId64
,
tsTsdbMetaCompactRatio
,
pMFile
->
info
.
nDels
,
pMFile
->
info
.
nRecords
,
pMFile
->
info
.
tombSize
,
pMFile
->
info
.
size
);
SMFile
mf
;
SDiskID
did
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录