From 74d158e149dac9650cec2718dd44504063b163e2 Mon Sep 17 00:00:00 2001 From: Ten Thousand Leaves <69466447+soothing-rain@users.noreply.github.com> Date: Wed, 1 Mar 2023 18:21:48 -0500 Subject: [PATCH] Fix enableAutoCompaction default value (#22254) /kind bug issue: #22253 Signed-off-by: Yuchen Gao --- internal/util/paramtable/component_param.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/util/paramtable/component_param.go b/internal/util/paramtable/component_param.go index 9e1ac34052..72417d5cf0 100644 --- a/internal/util/paramtable/component_param.go +++ b/internal/util/paramtable/component_param.go @@ -1753,7 +1753,7 @@ the number of binlog file reaches to max value.`, p.EnableAutoCompaction = ParamItem{ Key: "dataCoord.compaction.enableAutoCompaction", Version: "2.0.0", - DefaultValue: "false", + DefaultValue: "true", Export: true, } p.EnableAutoCompaction.Init(base.mgr)