mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
626854cf0c
Signed-off-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: yah01 <yang.cen@zilliz.com> Co-authored-by: Wei Liu <wei.liu@zilliz.com> Co-authored-by: Congqi Xia <congqi.xia@zilliz.com> Signed-off-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: yah01 <yang.cen@zilliz.com> Co-authored-by: Wei Liu <wei.liu@zilliz.com> Co-authored-by: Congqi Xia <congqi.xia@zilliz.com>
147 lines
4.7 KiB
Go
147 lines
4.7 KiB
Go
package balance
|
|
|
|
import (
|
|
"testing"
|
|
|
|
etcdkv "github.com/milvus-io/milvus/internal/kv/etcd"
|
|
"github.com/milvus-io/milvus/internal/proto/datapb"
|
|
"github.com/milvus-io/milvus/internal/querycoordv2/meta"
|
|
. "github.com/milvus-io/milvus/internal/querycoordv2/params"
|
|
"github.com/milvus-io/milvus/internal/querycoordv2/session"
|
|
"github.com/milvus-io/milvus/internal/querycoordv2/utils"
|
|
"github.com/milvus-io/milvus/internal/util/etcd"
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type RowCountBasedBalancerTestSuite struct {
|
|
suite.Suite
|
|
balancer *RowCountBasedBalancer
|
|
kv *etcdkv.EtcdKV
|
|
}
|
|
|
|
func (suite *RowCountBasedBalancerTestSuite) SetupSuite() {
|
|
Params.Init()
|
|
}
|
|
|
|
func (suite *RowCountBasedBalancerTestSuite) SetupTest() {
|
|
var err error
|
|
config := GenerateEtcdConfig()
|
|
cli, err := etcd.GetEtcdClient(&config)
|
|
suite.Require().NoError(err)
|
|
suite.kv = etcdkv.NewEtcdKV(cli, config.MetaRootPath)
|
|
|
|
store := meta.NewMetaStore(suite.kv)
|
|
idAllocator := RandomIncrementIDAllocator()
|
|
testMeta := meta.NewMeta(idAllocator, store)
|
|
|
|
distManager := meta.NewDistributionManager()
|
|
nodeManager := session.NewNodeManager()
|
|
suite.balancer = NewRowCountBasedBalancer(nil, nodeManager, distManager, testMeta)
|
|
}
|
|
|
|
func (suite *RowCountBasedBalancerTestSuite) TearDownTest() {
|
|
suite.kv.Close()
|
|
}
|
|
|
|
func (suite *RowCountBasedBalancerTestSuite) TestAssignSegment() {
|
|
cases := []struct {
|
|
name string
|
|
distributions map[int64][]*meta.Segment
|
|
assignments []*meta.Segment
|
|
nodes []int64
|
|
expectPlans []SegmentAssignPlan
|
|
}{
|
|
{
|
|
name: "test normal assignment",
|
|
distributions: map[int64][]*meta.Segment{
|
|
2: {{SegmentInfo: &datapb.SegmentInfo{ID: 1, NumOfRows: 20}, Node: 2}},
|
|
3: {{SegmentInfo: &datapb.SegmentInfo{ID: 2, NumOfRows: 30}, Node: 3}},
|
|
},
|
|
assignments: []*meta.Segment{
|
|
{SegmentInfo: &datapb.SegmentInfo{ID: 3, NumOfRows: 5}},
|
|
{SegmentInfo: &datapb.SegmentInfo{ID: 4, NumOfRows: 10}},
|
|
{SegmentInfo: &datapb.SegmentInfo{ID: 5, NumOfRows: 15}},
|
|
},
|
|
nodes: []int64{1, 2, 3},
|
|
expectPlans: []SegmentAssignPlan{
|
|
{Segment: &meta.Segment{SegmentInfo: &datapb.SegmentInfo{ID: 3, NumOfRows: 5}}, From: -1, To: 2},
|
|
{Segment: &meta.Segment{SegmentInfo: &datapb.SegmentInfo{ID: 4, NumOfRows: 10}}, From: -1, To: 1},
|
|
{Segment: &meta.Segment{SegmentInfo: &datapb.SegmentInfo{ID: 5, NumOfRows: 15}}, From: -1, To: 1},
|
|
},
|
|
},
|
|
// TODO: add more cases
|
|
}
|
|
|
|
for _, c := range cases {
|
|
suite.Run(c.name, func() {
|
|
// I do not find a better way to do the setup and teardown work for subtests yet.
|
|
// If you do, please replace with it.
|
|
suite.SetupSuite()
|
|
defer suite.TearDownTest()
|
|
balancer := suite.balancer
|
|
for node, s := range c.distributions {
|
|
balancer.dist.SegmentDistManager.Update(node, s...)
|
|
}
|
|
plans := balancer.AssignSegment(c.assignments, c.nodes)
|
|
suite.ElementsMatch(c.expectPlans, plans)
|
|
})
|
|
}
|
|
}
|
|
|
|
func (suite *RowCountBasedBalancerTestSuite) TestBalance() {
|
|
cases := []struct {
|
|
name string
|
|
nodes []int64
|
|
distributions map[int64][]*meta.Segment
|
|
expectPlans []SegmentAssignPlan
|
|
}{
|
|
{
|
|
name: "normal balance",
|
|
nodes: []int64{1, 2},
|
|
distributions: map[int64][]*meta.Segment{
|
|
1: {{SegmentInfo: &datapb.SegmentInfo{ID: 1, CollectionID: 1, NumOfRows: 10}, Node: 1}},
|
|
2: {
|
|
{SegmentInfo: &datapb.SegmentInfo{ID: 2, CollectionID: 1, NumOfRows: 20}, Node: 2},
|
|
{SegmentInfo: &datapb.SegmentInfo{ID: 3, CollectionID: 1, NumOfRows: 30}, Node: 2},
|
|
},
|
|
},
|
|
expectPlans: []SegmentAssignPlan{
|
|
{Segment: &meta.Segment{SegmentInfo: &datapb.SegmentInfo{ID: 2, CollectionID: 1, NumOfRows: 20}, Node: 2}, From: 2, To: 1, ReplicaID: 1},
|
|
},
|
|
},
|
|
{
|
|
name: "already balanced",
|
|
nodes: []int64{1, 2},
|
|
distributions: map[int64][]*meta.Segment{
|
|
1: {{SegmentInfo: &datapb.SegmentInfo{ID: 1, CollectionID: 1, NumOfRows: 30}, Node: 1}},
|
|
2: {
|
|
{SegmentInfo: &datapb.SegmentInfo{ID: 2, CollectionID: 1, NumOfRows: 20}, Node: 2},
|
|
{SegmentInfo: &datapb.SegmentInfo{ID: 3, CollectionID: 1, NumOfRows: 30}, Node: 2},
|
|
},
|
|
},
|
|
expectPlans: []SegmentAssignPlan{},
|
|
},
|
|
}
|
|
|
|
for _, c := range cases {
|
|
suite.Run(c.name, func() {
|
|
suite.SetupSuite()
|
|
defer suite.TearDownTest()
|
|
balancer := suite.balancer
|
|
balancer.meta.CollectionManager.PutCollection(utils.CreateTestCollection(1, 1))
|
|
balancer.meta.ReplicaManager.Put(utils.CreateTestReplica(1, 1, c.nodes))
|
|
for node, s := range c.distributions {
|
|
balancer.dist.SegmentDistManager.Update(node, s...)
|
|
}
|
|
segmentPlans, channelPlans := balancer.Balance()
|
|
suite.Empty(channelPlans)
|
|
suite.ElementsMatch(c.expectPlans, segmentPlans)
|
|
})
|
|
}
|
|
|
|
}
|
|
|
|
func TestRowCountBasedBalancerSuite(t *testing.T) {
|
|
suite.Run(t, new(RowCountBasedBalancerTestSuite))
|
|
}
|