mirror of https://github.com/milvus-io/milvus.git
[skip e2e] modify default used balancer for 2.3 (#24937)
Signed-off-by: MrPresent-Han <chun.han@zilliz.com>pull/24945/head
parent
26a6e1b946
commit
ce5cb3c0c5
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue