mirror of https://github.com/milvus-io/milvus.git
Reduce the load memory usage predict factor to 2 (#25469)
Signed-off-by: yah01 <yang.cen@zilliz.com>pull/24709/head
parent
5aec6036dc
commit
8b06941da3
|
@ -235,7 +235,7 @@ queryNode:
|
|||
enableIndex: true
|
||||
nlist: 128 # growing segment index nlist
|
||||
nprobe: 16 # nprobe to search growing segment, based on your accuracy requirement, must smaller than nlist
|
||||
loadMemoryUsageFactor: 3 # The multiply factor of calculating the memory usage while loading segments
|
||||
loadMemoryUsageFactor: 2 # The multiply factor of calculating the memory usage while loading segments
|
||||
enableDisk: true # enable querynode load disk index, and search on disk index
|
||||
maxDiskUsagePercentage: 95
|
||||
cache:
|
||||
|
|
|
@ -1599,7 +1599,7 @@ func (p *queryNodeConfig) init(base *BaseTable) {
|
|||
p.LoadMemoryUsageFactor = ParamItem{
|
||||
Key: "queryNode.loadMemoryUsageFactor",
|
||||
Version: "2.0.0",
|
||||
DefaultValue: "3",
|
||||
DefaultValue: "2",
|
||||
PanicIfEmpty: true,
|
||||
Doc: "The multiply factor of calculating the memory usage while loading segments",
|
||||
Export: true,
|
||||
|
|
Loading…
Reference in New Issue