From 4a388cf450c4d7769d8ef903b35838b0e64b41ce Mon Sep 17 00:00:00 2001 From: jaime Date: Thu, 17 Aug 2023 20:24:19 +0800 Subject: [PATCH] [skip e2e] Align default value with milvus.yaml file (#25619) Signed-off-by: jaime --- 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 ba13b5e42..2a33e36be 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -2042,7 +2042,7 @@ func (p *dataCoordConfig) init(base *BaseTable) { p.SegmentSealProportion = ParamItem{ Key: "dataCoord.segment.sealProportion", Version: "2.0.0", - DefaultValue: "0.25", + DefaultValue: "0.23", Export: true, } p.SegmentSealProportion.Init(base.mgr) @@ -2077,7 +2077,7 @@ func (p *dataCoordConfig) init(base *BaseTable) { p.SegmentMaxIdleTime = ParamItem{ Key: "dataCoord.segment.maxIdleTime", Version: "2.0.0", - DefaultValue: "3600", + DefaultValue: "600", Doc: `If a segment didn't accept dml records in ` + "maxIdleTime" + ` and the size of segment is greater than ` + "minSizeFromIdleToSealed" + `, Milvus will automatically seal it. The max idle time of segment in seconds, 10*60.`, -- GitLab