2023-12-11 20:05:54 +00:00
|
|
|
package pub_balancer
|
|
|
|
|
|
|
|
import (
|
|
|
|
cmap "github.com/orcaman/concurrent-map/v2"
|
2023-12-29 04:35:15 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/mq/topic"
|
2023-12-11 20:05:54 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
MaxPartitionCount = 8 * 9 * 5 * 7 //2520
|
|
|
|
LockBrokerBalancer = "broker_balancer"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Balancer collects stats from all brokers.
|
|
|
|
//
|
|
|
|
// When publishers wants to create topics, it picks brokers to assign the topic partitions.
|
|
|
|
// When consumers wants to subscribe topics, it tells which brokers are serving the topic partitions.
|
|
|
|
//
|
|
|
|
// When a partition needs to be split or merged, or a partition needs to be moved to another broker,
|
|
|
|
// the balancer will let the broker tell the consumer instance to stop processing the partition.
|
|
|
|
// The existing consumer instance will flush the internal state, and then stop processing.
|
|
|
|
// Then the balancer will tell the brokers to start sending new messages in the new/moved partition to the consumer instances.
|
|
|
|
//
|
|
|
|
// Failover to standby consumer instances:
|
|
|
|
//
|
|
|
|
// A consumer group can have min and max number of consumer instances.
|
|
|
|
// For consumer instances joined after the max number, they will be in standby mode.
|
|
|
|
//
|
|
|
|
// When a consumer instance is down, the broker will notice this and inform the balancer.
|
|
|
|
// The balancer will then tell the broker to send the partition to another standby consumer instance.
|
|
|
|
type Balancer struct {
|
|
|
|
Brokers cmap.ConcurrentMap[string, *BrokerStats] // key: broker address
|
|
|
|
// Collected from all brokers when they connect to the broker leader
|
|
|
|
TopicToBrokers cmap.ConcurrentMap[string, *PartitionSlotToBrokerList] // key: topic name
|
2024-01-03 21:30:30 +00:00
|
|
|
OnPartitionChange func(topic *mq_pb.Topic, assignments []*mq_pb.BrokerPartitionAssignment)
|
2023-12-11 20:05:54 +00:00
|
|
|
}
|
2023-12-22 19:33:50 +00:00
|
|
|
|
2023-12-11 20:05:54 +00:00
|
|
|
func NewBalancer() *Balancer {
|
|
|
|
return &Balancer{
|
2023-12-22 19:33:50 +00:00
|
|
|
Brokers: cmap.New[*BrokerStats](),
|
2023-12-11 20:05:54 +00:00
|
|
|
TopicToBrokers: cmap.New[*PartitionSlotToBrokerList](),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (balancer *Balancer) OnBrokerConnected(broker string) (brokerStats *BrokerStats) {
|
|
|
|
var found bool
|
|
|
|
brokerStats, found = balancer.Brokers.Get(broker)
|
|
|
|
if !found {
|
|
|
|
brokerStats = NewBrokerStats()
|
|
|
|
if !balancer.Brokers.SetIfAbsent(broker, brokerStats) {
|
|
|
|
brokerStats, _ = balancer.Brokers.Get(broker)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return brokerStats
|
|
|
|
}
|
|
|
|
|
|
|
|
func (balancer *Balancer) OnBrokerDisconnected(broker string, stats *BrokerStats) {
|
|
|
|
balancer.Brokers.Remove(broker)
|
|
|
|
|
|
|
|
// update TopicToBrokers
|
|
|
|
for _, topic := range stats.Topics {
|
|
|
|
partitionSlotToBrokerList, found := balancer.TopicToBrokers.Get(topic.String())
|
|
|
|
if !found {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
partitionSlotToBrokerList.RemoveBroker(broker)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (balancer *Balancer) OnBrokerStatsUpdated(broker string, brokerStats *BrokerStats, receivedStats *mq_pb.BrokerStats) {
|
|
|
|
brokerStats.UpdateStats(receivedStats)
|
|
|
|
|
|
|
|
// update TopicToBrokers
|
|
|
|
for _, topicPartitionStats := range receivedStats.Stats {
|
2023-12-29 04:35:15 +00:00
|
|
|
topicKey := topic.FromPbTopic(topicPartitionStats.Topic).String()
|
2023-12-11 20:05:54 +00:00
|
|
|
partition := topicPartitionStats.Partition
|
2023-12-29 04:35:15 +00:00
|
|
|
partitionSlotToBrokerList, found := balancer.TopicToBrokers.Get(topicKey)
|
2023-12-11 20:05:54 +00:00
|
|
|
if !found {
|
|
|
|
partitionSlotToBrokerList = NewPartitionSlotToBrokerList(MaxPartitionCount)
|
2023-12-29 04:35:15 +00:00
|
|
|
if !balancer.TopicToBrokers.SetIfAbsent(topicKey, partitionSlotToBrokerList) {
|
|
|
|
partitionSlotToBrokerList, _ = balancer.TopicToBrokers.Get(topicKey)
|
2023-12-11 20:05:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
partitionSlotToBrokerList.AddBroker(partition, broker)
|
|
|
|
}
|
|
|
|
}
|