mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-02 17:05:33 +08:00
issue: #40638 - Add `ChannelID` for streaming replica in future. - Remove the pchannel count fair balance policy for streaming. - Add Score based vchannel fair balance policy for streaming. - Add pchannel stats manager to collect the stats of pchannel for balancer. - Add configuration and metrics for new balance policy --------- Signed-off-by: chyezh <chyezh@outlook.com>
11 lines
268 B
Go
11 lines
268 B
Go
package vchannelfair
|
|
|
|
import (
|
|
"github.com/milvus-io/milvus/internal/streamingcoord/server/balancer"
|
|
"github.com/milvus-io/milvus/internal/streamingcoord/server/balancer/policy/vchannelfair"
|
|
)
|
|
|
|
func init() {
|
|
balancer.RegisterPolicy(&vchannelfair.PolicyBuilder{})
|
|
}
|