From 3e51256fb4051c12624f972f7ef36bc8accf8715 Mon Sep 17 00:00:00 2001 From: cqy123456 <39671710+cqy123456@users.noreply.github.com> Date: Tue, 25 Jun 2024 08:24:05 -0500 Subject: [PATCH] enhance: [cherry-pick]update new mmap config parmeters version (#34145) issue: https://github.com/milvus-io/milvus/issues/32984 related pr: https://github.com/milvus-io/milvus/pull/34143 Signed-off-by: cqy123456 --- pkg/util/paramtable/component_param.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index 6709212e6828..c207a160d389 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -2322,7 +2322,7 @@ func (p *queryNodeConfig) init(base *BaseTable) { p.GrowingMmapEnabled = ParamItem{ Key: "queryNode.mmap.growingMmapEnabled", - Version: "2.4.4", + Version: "2.4.6", DefaultValue: "false", FallbackKeys: []string{"queryNode.growingMmapEnabled"}, Doc: "Enable mmap for using in growing raw data", @@ -2336,7 +2336,7 @@ func (p *queryNodeConfig) init(base *BaseTable) { p.FixedFileSizeForMmapManager = ParamItem{ Key: "queryNode.mmap.fixedFileSizeForMmapAlloc", - Version: "2.4.0", + Version: "2.4.6", DefaultValue: "64", Doc: "tmp file size for mmap chunk manager", Export: true, @@ -2345,7 +2345,7 @@ func (p *queryNodeConfig) init(base *BaseTable) { p.MaxMmapDiskPercentageForMmapManager = ParamItem{ Key: "querynode.mmap.maxDiskUsagePercentageForMmapAlloc", - Version: "2.4.0", + Version: "2.4.6", DefaultValue: "20", Doc: "disk percentage used in mmap chunk manager", Export: true,