[skip e2e] Align default value with milvus.yaml file (#25619)

Signed-off-by: jaime <yun.zhang@zilliz.com>
pull/26448/head
jaime 2023-08-17 20:24:19 +08:00 committed by GitHub
parent 08547fe1a6
commit 4a388cf450
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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.`,