2023-08-27 20:13:14 +00:00
|
|
|
package broker
|
|
|
|
|
|
|
|
import (
|
2023-12-11 20:05:54 +00:00
|
|
|
"context"
|
2023-08-28 00:50:59 +00:00
|
|
|
"fmt"
|
2023-08-27 20:13:14 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/mq/topic"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
|
2024-01-08 08:03:08 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util/log_buffer"
|
2023-08-27 20:13:14 +00:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2024-01-05 23:14:25 +00:00
|
|
|
func (b *MessageQueueBroker) SubscribeMessage(req *mq_pb.SubscribeMessageRequest, stream mq_pb.SeaweedMessaging_SubscribeMessageServer) error {
|
2023-08-27 20:13:14 +00:00
|
|
|
|
2024-01-12 07:08:02 +00:00
|
|
|
ctx := stream.Context()
|
|
|
|
clientName := fmt.Sprintf("%s/%s-%s", req.GetInit().ConsumerGroup, req.GetInit().ConsumerId, req.GetInit().ClientId)
|
|
|
|
|
2023-12-11 20:05:54 +00:00
|
|
|
t := topic.FromPbTopic(req.GetInit().Topic)
|
2024-01-05 23:24:14 +00:00
|
|
|
partition := topic.FromPbPartition(req.GetInit().GetPartitionOffset().GetPartition())
|
2024-01-12 07:08:02 +00:00
|
|
|
|
|
|
|
glog.V(0).Infof("Subscriber %s on %v %v connected", req.GetInit().ConsumerId, t, partition)
|
|
|
|
|
|
|
|
var localTopicPartition *topic.LocalPartition
|
|
|
|
localTopicPartition = b.localTopicManager.GetTopicPartition(t, partition)
|
|
|
|
for localTopicPartition == nil {
|
2024-01-05 23:14:25 +00:00
|
|
|
stream.Send(&mq_pb.SubscribeMessageResponse{
|
|
|
|
Message: &mq_pb.SubscribeMessageResponse_Ctrl{
|
|
|
|
Ctrl: &mq_pb.SubscribeMessageResponse_CtrlMessage{
|
2023-09-01 07:36:51 +00:00
|
|
|
Error: "not initialized",
|
2023-08-27 20:13:14 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2024-01-12 07:08:02 +00:00
|
|
|
time.Sleep(337 * time.Millisecond)
|
|
|
|
// Check if the client has disconnected by monitoring the context
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
err := ctx.Err()
|
|
|
|
if err == context.Canceled {
|
|
|
|
// Client disconnected
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
glog.V(0).Infof("Subscriber %s disconnected: %v", clientName, err)
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
// Continue processing the request
|
|
|
|
}
|
|
|
|
localTopicPartition = b.localTopicManager.GetTopicPartition(t, partition)
|
2023-08-27 20:13:14 +00:00
|
|
|
}
|
|
|
|
|
2023-12-11 20:05:54 +00:00
|
|
|
localTopicPartition.Subscribers.AddSubscriber(clientName, topic.NewLocalSubscriber())
|
|
|
|
glog.V(0).Infof("Subscriber %s connected on %v %v", clientName, t, partition)
|
|
|
|
isConnected := true
|
|
|
|
sleepIntervalCount := 0
|
|
|
|
defer func() {
|
|
|
|
isConnected = false
|
|
|
|
localTopicPartition.Subscribers.RemoveSubscriber(clientName)
|
|
|
|
glog.V(0).Infof("Subscriber %s on %v %v disconnected", clientName, t, partition)
|
|
|
|
}()
|
|
|
|
|
2024-01-08 08:03:08 +00:00
|
|
|
var startPosition log_buffer.MessagePosition
|
|
|
|
var inMemoryOnly bool
|
|
|
|
if req.GetInit()!=nil && req.GetInit().GetPartitionOffset() != nil {
|
|
|
|
offset := req.GetInit().GetPartitionOffset()
|
|
|
|
if offset.StartTsNs != 0 {
|
|
|
|
startPosition = log_buffer.NewMessagePosition(offset.StartTsNs, -2)
|
|
|
|
}
|
|
|
|
if offset.StartType == mq_pb.PartitionOffsetStartType_EARLIEST {
|
|
|
|
startPosition = log_buffer.NewMessagePosition(1, -2)
|
|
|
|
} else if offset.StartType == mq_pb.PartitionOffsetStartType_LATEST {
|
|
|
|
startPosition = log_buffer.NewMessagePosition(time.Now().UnixNano(), -2)
|
|
|
|
} else if offset.StartType == mq_pb.PartitionOffsetStartType_EARLIEST_IN_MEMORY {
|
|
|
|
inMemoryOnly = true
|
|
|
|
for !localTopicPartition.HasData() {
|
|
|
|
time.Sleep(337 * time.Millisecond)
|
|
|
|
}
|
|
|
|
memPosition := localTopicPartition.GetEarliestInMemoryMessagePosition()
|
|
|
|
if startPosition.Before(memPosition.Time) {
|
|
|
|
startPosition = memPosition
|
|
|
|
}
|
|
|
|
}
|
2023-12-11 20:05:54 +00:00
|
|
|
}
|
|
|
|
|
2024-01-08 08:03:08 +00:00
|
|
|
localTopicPartition.Subscribe(clientName, startPosition, inMemoryOnly, func() bool {
|
2023-12-11 20:05:54 +00:00
|
|
|
if !isConnected {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
sleepIntervalCount++
|
|
|
|
if sleepIntervalCount > 10 {
|
|
|
|
sleepIntervalCount = 10
|
|
|
|
}
|
2024-01-08 08:03:08 +00:00
|
|
|
time.Sleep(time.Duration(sleepIntervalCount) * 337 * time.Millisecond)
|
2023-12-11 20:05:54 +00:00
|
|
|
|
|
|
|
// Check if the client has disconnected by monitoring the context
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
err := ctx.Err()
|
|
|
|
if err == context.Canceled {
|
|
|
|
// Client disconnected
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
glog.V(0).Infof("Subscriber %s disconnected: %v", clientName, err)
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
// Continue processing the request
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}, func(logEntry *filer_pb.LogEntry) error {
|
|
|
|
// reset the sleep interval count
|
|
|
|
sleepIntervalCount = 0
|
2023-09-01 07:36:51 +00:00
|
|
|
|
2023-08-28 00:50:59 +00:00
|
|
|
value := logEntry.GetData()
|
2024-01-05 23:14:25 +00:00
|
|
|
if err := stream.Send(&mq_pb.SubscribeMessageResponse{Message: &mq_pb.SubscribeMessageResponse_Data{
|
2023-08-27 20:13:14 +00:00
|
|
|
Data: &mq_pb.DataMessage{
|
2023-08-28 00:50:59 +00:00
|
|
|
Key: []byte(fmt.Sprintf("key-%d", logEntry.PartitionKeyHash)),
|
|
|
|
Value: value,
|
2023-12-11 20:05:54 +00:00
|
|
|
TsNs: logEntry.TsNs,
|
2023-08-27 20:13:14 +00:00
|
|
|
},
|
|
|
|
}}); err != nil {
|
|
|
|
glog.Errorf("Error sending setup response: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|