123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- package pub_balancer
- import (
- "fmt"
- cmap "github.com/orcaman/concurrent-map/v2"
- "github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
- "github.com/stretchr/testify/assert"
- "testing"
- )
- func Test_allocateOneBroker(t *testing.T) {
- brokers := cmap.New[*BrokerStats]()
- brokers.SetIfAbsent("localhost:17777", &BrokerStats{
- TopicPartitionCount: 0,
- CpuUsagePercent: 0,
- })
- tests := []struct {
- name string
- args args
- wantAssignments []*mq_pb.BrokerPartitionAssignment
- }{
- {
- name: "test only one broker",
- args: args{
- brokers: brokers,
- partitionCount: 1,
- },
- wantAssignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "localhost:17777",
- Partition: &mq_pb.Partition{
- RingSize: MaxPartitionCount,
- RangeStart: 0,
- RangeStop: MaxPartitionCount,
- },
- },
- },
- },
- }
- testThem(t, tests)
- }
- type args struct {
- brokers cmap.ConcurrentMap[string, *BrokerStats]
- partitionCount int32
- }
- func testThem(t *testing.T, tests []struct {
- name string
- args args
- wantAssignments []*mq_pb.BrokerPartitionAssignment
- }) {
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- gotAssignments := AllocateTopicPartitions(tt.args.brokers, tt.args.partitionCount)
- assert.Equal(t, len(tt.wantAssignments), len(gotAssignments))
- for i, gotAssignment := range gotAssignments {
- assert.Equal(t, tt.wantAssignments[i].LeaderBroker, gotAssignment.LeaderBroker)
- assert.Equal(t, tt.wantAssignments[i].Partition.RangeStart, gotAssignment.Partition.RangeStart)
- assert.Equal(t, tt.wantAssignments[i].Partition.RangeStop, gotAssignment.Partition.RangeStop)
- assert.Equal(t, tt.wantAssignments[i].Partition.RingSize, gotAssignment.Partition.RingSize)
- }
- })
- }
- }
- func TestEnsureAssignmentsToActiveBrokersX(t *testing.T) {
- type args struct {
- activeBrokers cmap.ConcurrentMap[string, *BrokerStats]
- followerCount int
- assignments []*mq_pb.BrokerPartitionAssignment
- }
- activeBrokers := cmap.New[*BrokerStats]()
- activeBrokers.SetIfAbsent("localhost:1", &BrokerStats{})
- activeBrokers.SetIfAbsent("localhost:2", &BrokerStats{})
- activeBrokers.SetIfAbsent("localhost:3", &BrokerStats{})
- activeBrokers.SetIfAbsent("localhost:4", &BrokerStats{})
- activeBrokers.SetIfAbsent("localhost:5", &BrokerStats{})
- activeBrokers.SetIfAbsent("localhost:6", &BrokerStats{})
- lowActiveBrokers := cmap.New[*BrokerStats]()
- lowActiveBrokers.SetIfAbsent("localhost:1", &BrokerStats{})
- lowActiveBrokers.SetIfAbsent("localhost:2", &BrokerStats{})
- singleActiveBroker := cmap.New[*BrokerStats]()
- singleActiveBroker.SetIfAbsent("localhost:1", &BrokerStats{})
- tests := []struct {
- name string
- args args
- hasChanges bool
- }{
- {
- name: "test empty leader",
- args: args{
- activeBrokers: activeBrokers,
- followerCount: 1,
- assignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "",
- Partition: &mq_pb.Partition{},
- FollowerBrokers: []string{
- "localhost:2",
- },
- },
- },
- },
- hasChanges: true,
- },
- {
- name: "test empty follower",
- args: args{
- activeBrokers: activeBrokers,
- followerCount: 1,
- assignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "localhost:1",
- Partition: &mq_pb.Partition{},
- FollowerBrokers: []string{
- "",
- },
- },
- },
- },
- hasChanges: true,
- },
- {
- name: "test dead follower",
- args: args{
- activeBrokers: activeBrokers,
- followerCount: 1,
- assignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "localhost:1",
- Partition: &mq_pb.Partition{},
- FollowerBrokers: []string{
- "localhost:200",
- },
- },
- },
- },
- hasChanges: true,
- },
- {
- name: "test dead leader and follower",
- args: args{
- activeBrokers: activeBrokers,
- followerCount: 1,
- assignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "localhost:100",
- Partition: &mq_pb.Partition{},
- FollowerBrokers: []string{
- "localhost:200",
- },
- },
- },
- },
- hasChanges: true,
- },
- {
- name: "test missing two followers",
- args: args{
- activeBrokers: activeBrokers,
- followerCount: 3,
- assignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "localhost:1",
- Partition: &mq_pb.Partition{},
- FollowerBrokers: []string{
- "localhost:2",
- },
- },
- },
- },
- hasChanges: true,
- },
- {
- name: "test missing some followers",
- args: args{
- activeBrokers: activeBrokers,
- followerCount: 10,
- assignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "localhost:1",
- Partition: &mq_pb.Partition{},
- FollowerBrokers: []string{
- "localhost:2",
- },
- },
- },
- },
- hasChanges: true,
- },
- {
- name: "test low active brokers",
- args: args{
- activeBrokers: lowActiveBrokers,
- followerCount: 3,
- assignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "localhost:1",
- Partition: &mq_pb.Partition{},
- FollowerBrokers: []string{
- "localhost:2",
- },
- },
- },
- },
- hasChanges: false,
- },
- {
- name: "test low active brokers with one follower",
- args: args{
- activeBrokers: lowActiveBrokers,
- followerCount: 1,
- assignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "localhost:1",
- Partition: &mq_pb.Partition{},
- },
- },
- },
- hasChanges: true,
- },
- {
- name: "test single active broker",
- args: args{
- activeBrokers: singleActiveBroker,
- followerCount: 3,
- assignments: []*mq_pb.BrokerPartitionAssignment{
- {
- LeaderBroker: "localhost:1",
- Partition: &mq_pb.Partition{},
- FollowerBrokers: []string{
- "localhost:2",
- },
- },
- },
- },
- hasChanges: true,
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- fmt.Printf("%v before %v\n", tt.name, tt.args.assignments)
- hasChanges := EnsureAssignmentsToActiveBrokers(tt.args.activeBrokers, tt.args.followerCount, tt.args.assignments)
- assert.Equalf(t, tt.hasChanges, hasChanges, "EnsureAssignmentsToActiveBrokers(%v, %v, %v)", tt.args.activeBrokers, tt.args.followerCount, tt.args.assignments)
- fmt.Printf("%v after %v\n", tt.name, tt.args.assignments)
- })
- }
- }
|