From 9220ec5a92ccb257ab5dac1557243dac72c0e4eb Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Fri, 29 Nov 2024 14:18:40 +0800 Subject: [PATCH] refactor: update the default checkpoint interval. --- 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 95788a7ff0..47d754fd04 100644 --- a/source/common/src/tglobal.c +++ b/source/common/src/tglobal.c @@ -280,7 +280,7 @@ int32_t tsTtlBatchDropNum = 10000; // number of tables dropped per batch int32_t tsTransPullupInterval = 2; int32_t tsCompactPullupInterval = 10; int32_t tsMqRebalanceInterval = 2; -int32_t tsStreamCheckpointInterval = 60; +int32_t tsStreamCheckpointInterval = 300; float tsSinkDataRate = 2.0; int32_t tsStreamNodeCheckInterval = 20; int32_t tsMaxConcurrentCheckpoint = 1;