enhance: update new mmap config parmeters version (#34143)

issue: https://github.com/milvus-io/milvus/issues/32984
related pr: https://github.com/milvus-io/milvus/pull/34145

Signed-off-by: cqy123456 <qianya.cheng@zilliz.com>
This commit is contained in:
cqy123456 2024-06-25 08:20:05 -05:00 committed by GitHub
parent 9630974fbb
commit 381d43717d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2390,7 +2390,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",
@ -2404,7 +2404,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,
@ -2413,7 +2413,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,