mirror of https://github.com/milvus-io/milvus.git
58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
|
package querycoord
|
||
|
|
||
|
import "sort"
|
||
|
|
||
|
type balancer interface {
|
||
|
addNode(nodeID int64) ([]*balancePlan, error)
|
||
|
removeNode(nodeID int64) []*balancePlan
|
||
|
rebalance() []*balancePlan
|
||
|
}
|
||
|
|
||
|
type balancePlan struct {
|
||
|
nodeID int64
|
||
|
sourceReplica int64
|
||
|
targetReplica int64
|
||
|
}
|
||
|
|
||
|
type replicaBalancer struct {
|
||
|
meta Meta
|
||
|
}
|
||
|
|
||
|
func newReplicaBalancer(meta Meta) *replicaBalancer {
|
||
|
return &replicaBalancer{meta}
|
||
|
}
|
||
|
|
||
|
func (b *replicaBalancer) addNode(nodeID int64) ([]*balancePlan, error) {
|
||
|
// allocate this node to all collections replicas
|
||
|
var ret []*balancePlan
|
||
|
collections := b.meta.showCollections()
|
||
|
for _, c := range collections {
|
||
|
replicas, err := b.meta.getReplicasByCollectionID(c.GetCollectionID())
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if len(replicas) == 0 {
|
||
|
continue
|
||
|
}
|
||
|
sort.Slice(replicas, func(i, j int) bool {
|
||
|
return len(replicas[i].GetNodeIds()) < len(replicas[j].GetNodeIds())
|
||
|
})
|
||
|
|
||
|
ret = append(ret, &balancePlan{
|
||
|
nodeID: nodeID,
|
||
|
sourceReplica: -1,
|
||
|
targetReplica: replicas[0].GetReplicaID(),
|
||
|
})
|
||
|
}
|
||
|
return ret, nil
|
||
|
}
|
||
|
|
||
|
func (b *replicaBalancer) removeNode(nodeID int64) []*balancePlan {
|
||
|
// for this version, querynode does not support move from a replica to another
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (b *replicaBalancer) rebalance() []*balancePlan {
|
||
|
return nil
|
||
|
}
|