mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-31 07:55:38 +08:00
issue: #33285 - add balancer implementation - add channel count fair balance policy - add channel assignment discover grpc service Signed-off-by: chyezh <chyezh@outlook.com>
8 lines
163 B
Go
8 lines
163 B
Go
package policy
|
|
|
|
import "github.com/milvus-io/milvus/internal/streamingcoord/server/balancer"
|
|
|
|
func init() {
|
|
balancer.RegisterPolicy(&pchannelCountFairPolicy{})
|
|
}
|