mirror of https://github.com/milvus-io/milvus.git
decrease default value of group max nq (#25380)
Signed-off-by: Wei Liu <wei.liu@zilliz.com>pull/25417/head
parent
2d1ed6af45
commit
342cfcad46
|
@ -243,7 +243,7 @@ queryNode:
|
|||
memoryLimit: 2147483648 # 2 GB, 2 * 1024 *1024 *1024
|
||||
grouping:
|
||||
enabled: true
|
||||
maxNQ: 50000
|
||||
maxNQ: 1000
|
||||
topKMergeRatio: 20
|
||||
scheduler:
|
||||
receiveChanSize: 10240
|
||||
|
|
|
@ -1694,7 +1694,7 @@ Max read concurrency must greater than or equal to 1, and less than or equal to
|
|||
p.MaxGroupNQ = ParamItem{
|
||||
Key: "queryNode.grouping.maxNQ",
|
||||
Version: "2.0.0",
|
||||
DefaultValue: "50000",
|
||||
DefaultValue: "1000",
|
||||
Export: true,
|
||||
}
|
||||
p.MaxGroupNQ.Init(base.mgr)
|
||||
|
|
Loading…
Reference in New Issue