[skip e2e] modify default used balancer for 2.3 (#24937)

Signed-off-by: MrPresent-Han <chun.han@zilliz.com>
pull/24945/head
MrPresent-Han 2023-06-16 14:00:45 +08:00 committed by GitHub
parent 26a6e1b946
commit ce5cb3c0c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -190,7 +190,7 @@ proxy:
queryCoord:
autoHandoff: true # Enable auto handoff
autoBalance: true # Enable auto balance
balancer: RowCountBasedBalancer # Balancer to use
balancer: ScoreBasedBalancer # Balancer to use
globalRowCountFactor: 0.1 # expert parameters, only used by scoreBasedBalancer
scoreUnbalanceTolerationFactor: 0.05 # expert parameters, only used by scoreBasedBalancer
reverseUnBalanceTolerationFactor: 1.3 #expert parameters, only used by scoreBasedBalancer

View File

@ -1192,8 +1192,8 @@ func (p *queryCoordConfig) init(base *BaseTable) {
p.Balancer = ParamItem{
Key: "queryCoord.balancer",
Version: "2.0.0",
DefaultValue: "RowCountBasedBalancer",
PanicIfEmpty: true,
DefaultValue: "ScoreBasedBalancer",
PanicIfEmpty: false,
Doc: "auto balancer used for segments on queryNodes",
Export: true,
}