decrease default value of group max nq (#25380)

Signed-off-by: Wei Liu <wei.liu@zilliz.com>
pull/25417/head
wei liu 2023-07-07 15:40:25 +08:00 committed by GitHub
parent 2d1ed6af45
commit 342cfcad46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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)