From 6bb9ee9b4eed35a3c5d411b60a26c031521aba29 Mon Sep 17 00:00:00 2001 From: Benguang Zhao Date: Mon, 20 Feb 2023 13:51:14 +0800 Subject: [PATCH] enh: change the default of vndCommitMaxInterval as 10 minutes --- source/common/src/tglobal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/tglobal.c b/source/common/src/tglobal.c index e3f08e912a..c8f1efa1ab 100644 --- a/source/common/src/tglobal.c +++ b/source/common/src/tglobal.c @@ -61,7 +61,7 @@ int32_t tsHeartbeatInterval = 1000; int32_t tsHeartbeatTimeout = 20 * 1000; // vnode -int64_t tsVndCommitMaxIntervalMs = 60 * 1000; +int64_t tsVndCommitMaxIntervalMs = 600 * 1000; // monitor bool tsEnableMonitor = true; -- GitLab