From c8bc3b391d1d39bd45f17e5b257b34f7d0998aa8 Mon Sep 17 00:00:00 2001 From: xiao-77 Date: Fri, 13 Dec 2024 14:05:44 +0800 Subject: [PATCH] Set tsDiskIDCheckEnabled default = false. --- 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 98e19b5195..f620db240a 100644 --- a/source/common/src/tglobal.c +++ b/source/common/src/tglobal.c @@ -288,7 +288,7 @@ int32_t tsTtlFlushThreshold = 100; /* maximum number of dirty items in memory. int32_t tsTtlBatchDropNum = 10000; // number of tables dropped per batch // internal -bool tsDiskIDCheckEnabled = true; +bool tsDiskIDCheckEnabled = false; int32_t tsTransPullupInterval = 2; int32_t tsCompactPullupInterval = 10; int32_t tsMqRebalanceInterval = 2;