You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.3 KiB

Merge accumulated changes related to message queue (#5098) * balance partitions on brokers * prepare topic partition first and then publish, move partition * purge unused APIs * clean up * adjust logs * add BalanceTopics() grpc API * configure topic * configure topic command * refactor * repair missing partitions * sequence of operations to ensure ordering * proto to close publishers and consumers * rename file * topic partition versioned by unixTimeNs * create local topic partition * close publishers * randomize the client name * wait until no publishers * logs * close stop publisher channel * send last ack * comments * comment * comments * support list of brokers * add cli options * Update .gitignore * logs * return io.eof directly * refactor * optionally create topic * refactoring * detect consumer disconnection * sub client wait for more messages * subscribe by time stamp * rename * rename to sub_balancer * rename * adjust comments * rename * fix compilation * rename * rename * SubscriberToSubCoordinator * sticky rebalance * go fmt * add tests * balance partitions on brokers * prepare topic partition first and then publish, move partition * purge unused APIs * clean up * adjust logs * add BalanceTopics() grpc API * configure topic * configure topic command * refactor * repair missing partitions * sequence of operations to ensure ordering * proto to close publishers and consumers * rename file * topic partition versioned by unixTimeNs * create local topic partition * close publishers * randomize the client name * wait until no publishers * logs * close stop publisher channel * send last ack * comments * comment * comments * support list of brokers * add cli options * Update .gitignore * logs * return io.eof directly * refactor * optionally create topic * refactoring * detect consumer disconnection * sub client wait for more messages * subscribe by time stamp * rename * rename to sub_balancer * rename * adjust comments * rename * fix compilation * rename * rename * SubscriberToSubCoordinator * sticky rebalance * go fmt * add tests * tracking topic=>broker * merge * comment
1 year ago
  1. package sub_coordinator
  2. import (
  3. cmap "github.com/orcaman/concurrent-map/v2"
  4. "github.com/seaweedfs/seaweedfs/weed/mq/pub_balancer"
  5. "github.com/seaweedfs/seaweedfs/weed/mq/topic"
  6. "github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
  7. )
  8. type ConsumerGroupInstance struct {
  9. InstanceId string
  10. // the consumer group instance may not have an active partition
  11. Partitions []*topic.Partition
  12. ResponseChan chan *mq_pb.SubscriberToSubCoordinatorResponse
  13. }
  14. type ConsumerGroup struct {
  15. // map a consumer group instance id to a consumer group instance
  16. ConsumerGroupInstances cmap.ConcurrentMap[string, *ConsumerGroupInstance]
  17. mapping *PartitionConsumerMapping
  18. }
  19. func NewConsumerGroup() *ConsumerGroup {
  20. return &ConsumerGroup{
  21. ConsumerGroupInstances: cmap.New[*ConsumerGroupInstance](),
  22. mapping: NewPartitionConsumerMapping(pub_balancer.MaxPartitionCount),
  23. }
  24. }
  25. func NewConsumerGroupInstance(instanceId string) *ConsumerGroupInstance {
  26. return &ConsumerGroupInstance{
  27. InstanceId: instanceId,
  28. ResponseChan: make(chan *mq_pb.SubscriberToSubCoordinatorResponse, 1),
  29. }
  30. }
  31. func (cg *ConsumerGroup) OnAddConsumerGroupInstance(consumerGroupInstance string, topic *mq_pb.Topic) {
  32. }
  33. func (cg *ConsumerGroup) OnRemoveConsumerGroupInstance(consumerGroupInstance string, topic *mq_pb.Topic) {
  34. }
  35. func (cg *ConsumerGroup) OnPartitionListChange() {
  36. }