Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
b91734cf
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看板
提交
b91734cf
编写于
3月 04, 2023
作者:
B
Benguang Zhao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
enh: sync log retention of mnode configurable with mndLogRetention
上级
d27f392b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
6 addition
and
3 deletion
+6
-3
include/common/tglobal.h
include/common/tglobal.h
+1
-0
include/libs/sync/sync.h
include/libs/sync/sync.h
+0
-1
source/common/src/tglobal.c
source/common/src/tglobal.c
+4
-1
source/libs/sync/src/syncMain.c
source/libs/sync/src/syncMain.c
+1
-1
未找到文件。
include/common/tglobal.h
浏览文件 @
b91734cf
...
...
@@ -76,6 +76,7 @@ extern int64_t tsVndCommitMaxIntervalMs;
// mnode
extern
int64_t
tsMndSdbWriteDelta
;
extern
int64_t
tsMndLogRetention
;
// monitor
extern
bool
tsEnableMonitor
;
...
...
include/libs/sync/sync.h
浏览文件 @
b91734cf
...
...
@@ -35,7 +35,6 @@ extern "C" {
#define SYNC_MAX_RECV_TIME_RANGE_MS 1200
#define SYNC_DEL_WAL_MS (1000 * 60)
#define SYNC_ADD_QUORUM_COUNT 3
#define SYNC_MNODE_LOG_RETENTION 10000
#define SYNC_VNODE_LOG_RETENTION (TSDB_SYNC_LOG_BUFFER_RETENTION + 1)
#define SNAPSHOT_MAX_CLOCK_SKEW_MS 1000 * 10
#define SNAPSHOT_WAIT_MS 1000 * 30
...
...
source/common/src/tglobal.c
浏览文件 @
b91734cf
...
...
@@ -66,7 +66,8 @@ int32_t tsHeartbeatTimeout = 20 * 1000;
int64_t
tsVndCommitMaxIntervalMs
=
600
*
1000
;
// mnode
int64_t
tsMndSdbWriteDelta
=
2000
;
int64_t
tsMndSdbWriteDelta
=
200
;
int64_t
tsMndLogRetention
=
2000
;
// monitor
bool
tsEnableMonitor
=
true
;
...
...
@@ -461,6 +462,7 @@ static int32_t taosAddServerCfg(SConfig *pCfg) {
if
(
cfgAddInt64
(
pCfg
,
"vndCommitMaxInterval"
,
tsVndCommitMaxIntervalMs
,
1000
,
1000
*
60
*
60
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt64
(
pCfg
,
"mndSdbWriteDelta"
,
tsMndSdbWriteDelta
,
20
,
10000
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt64
(
pCfg
,
"mndLogRetention"
,
tsMndLogRetention
,
500
,
10000
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddBool
(
pCfg
,
"monitor"
,
tsEnableMonitor
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt32
(
pCfg
,
"monitorInterval"
,
tsMonitorInterval
,
1
,
200000
,
0
)
!=
0
)
return
-
1
;
...
...
@@ -810,6 +812,7 @@ static int32_t taosSetServerCfg(SConfig *pCfg) {
tsVndCommitMaxIntervalMs
=
cfgGetItem
(
pCfg
,
"vndCommitMaxInterval"
)
->
i64
;
tsMndSdbWriteDelta
=
cfgGetItem
(
pCfg
,
"mndSdbWriteDelta"
)
->
i64
;
tsMndLogRetention
=
cfgGetItem
(
pCfg
,
"mndLogRetention"
)
->
i64
;
tsStartUdfd
=
cfgGetItem
(
pCfg
,
"udf"
)
->
bval
;
tstrncpy
(
tsUdfdResFuncs
,
cfgGetItem
(
pCfg
,
"udfdResFuncs"
)
->
str
,
sizeof
(
tsUdfdResFuncs
));
...
...
source/libs/sync/src/syncMain.c
浏览文件 @
b91734cf
...
...
@@ -285,7 +285,7 @@ int32_t syncBeginSnapshot(int64_t rid, int64_t lastApplyIndex) {
if
(
syncNodeIsMnode
(
pSyncNode
))
{
// mnode
logRetention
=
SYNC_MNODE_LOG_RETENTION
;
logRetention
=
tsMndLogRetention
;
}
else
{
// vnode
if
(
pSyncNode
->
replicaNum
>
1
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录