From be30838cf990a2027a8ca1f1f7a9fe0e15a7b5f2 Mon Sep 17 00:00:00 2001 From: XuanYang-cn Date: Thu, 17 Aug 2023 10:54:18 +0800 Subject: [PATCH] Refine some comments (#26401) Signed-off-by: yangxuan --- pkg/util/paramtable/component_param.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index f258b1875..ba13b5e42 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -2264,12 +2264,12 @@ During compaction, the size of segment # of rows is able to exceed segment max # } p.GCInterval.Init(base.mgr) - // Do you set this to incredible small value, make sure this to be more than 10 minutes at least + // Do not set this to incredible small value, make sure this to be more than 10 minutes at least p.GCMissingTolerance = ParamItem{ Key: "dataCoord.gc.missingTolerance", Version: "2.0.0", DefaultValue: "3600", - Doc: "file meta missing tolerance duration in seconds, 60*60*3", + Doc: "file meta missing tolerance duration in seconds, default to 1hr", Export: true, } p.GCMissingTolerance.Init(base.mgr) -- GitLab