2023-08-21 13:53:05 +08:00
|
|
|
package topic
|
|
|
|
|
|
|
|
import (
|
2024-03-28 13:58:20 +08:00
|
|
|
"context"
|
2023-08-29 00:02:12 +08:00
|
|
|
"fmt"
|
2024-01-15 16:20:12 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
2023-08-21 13:53:05 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util/log_buffer"
|
2024-03-25 03:57:09 +08:00
|
|
|
"google.golang.org/grpc"
|
2024-03-17 14:16:33 +08:00
|
|
|
"sync"
|
2024-03-11 05:34:28 +08:00
|
|
|
"sync/atomic"
|
2023-08-21 13:53:05 +08:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LocalPartition struct {
|
2024-03-17 14:16:33 +08:00
|
|
|
ListenersWaits int64
|
2024-03-28 01:27:08 +08:00
|
|
|
AckTsNs int64
|
2024-03-17 14:16:33 +08:00
|
|
|
|
|
|
|
// notifying clients
|
|
|
|
ListenersLock sync.Mutex
|
|
|
|
ListenersCond *sync.Cond
|
|
|
|
|
2023-08-21 13:53:05 +08:00
|
|
|
Partition
|
2024-03-17 01:51:47 +08:00
|
|
|
isLeader bool
|
|
|
|
FollowerBrokers []pb.ServerAddress
|
|
|
|
LogBuffer *log_buffer.LogBuffer
|
|
|
|
ConsumerCount int32
|
|
|
|
Publishers *LocalPartitionPublishers
|
|
|
|
Subscribers *LocalPartitionSubscribers
|
|
|
|
FollowerId int32
|
2024-03-25 03:57:09 +08:00
|
|
|
|
2024-03-27 12:52:12 +08:00
|
|
|
FollowerStream mq_pb.SeaweedMessaging_PublishFollowMeClient
|
|
|
|
FollowerGrpcConnection *grpc.ClientConn
|
2024-03-28 14:10:24 +08:00
|
|
|
follower string
|
2023-08-21 13:53:05 +08:00
|
|
|
}
|
|
|
|
|
2024-01-09 15:27:02 +08:00
|
|
|
var TIME_FORMAT = "2006-01-02-15-04-05"
|
2024-03-01 01:38:52 +08:00
|
|
|
|
2024-01-15 16:20:12 +08:00
|
|
|
func NewLocalPartition(partition Partition, isLeader bool, followerBrokers []pb.ServerAddress, logFlushFn log_buffer.LogFlushFuncType, readFromDiskFn log_buffer.LogReadFromDiskFuncType) *LocalPartition {
|
2024-03-17 14:16:33 +08:00
|
|
|
lp := &LocalPartition{
|
2023-08-29 00:02:12 +08:00
|
|
|
Partition: partition,
|
|
|
|
isLeader: isLeader,
|
|
|
|
FollowerBrokers: followerBrokers,
|
2023-12-12 04:05:54 +08:00
|
|
|
Publishers: NewLocalPartitionPublishers(),
|
|
|
|
Subscribers: NewLocalPartitionSubscribers(),
|
2023-08-29 00:02:12 +08:00
|
|
|
}
|
2024-03-17 14:16:33 +08:00
|
|
|
lp.ListenersCond = sync.NewCond(&lp.ListenersLock)
|
|
|
|
lp.LogBuffer = log_buffer.NewLogBuffer(fmt.Sprintf("%d/%04d-%04d", partition.UnixTimeNs, partition.RangeStart, partition.RangeStop),
|
|
|
|
2*time.Minute, logFlushFn, readFromDiskFn, func() {
|
|
|
|
if atomic.LoadInt64(&lp.ListenersWaits) > 0 {
|
|
|
|
lp.ListenersCond.Broadcast()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return lp
|
2023-08-29 00:02:12 +08:00
|
|
|
}
|
|
|
|
|
2024-03-28 14:10:24 +08:00
|
|
|
func (p *LocalPartition) Publish(message *mq_pb.DataMessage) error {
|
2024-03-08 02:57:04 +08:00
|
|
|
p.LogBuffer.AddToBuffer(message.Key, message.Value, time.Now().UnixNano())
|
2024-03-28 14:10:24 +08:00
|
|
|
|
|
|
|
// maybe send to the follower
|
|
|
|
if p.FollowerStream != nil {
|
|
|
|
println("recv", string(message.Key), message.TsNs)
|
|
|
|
if followErr := p.FollowerStream.Send(&mq_pb.PublishFollowMeRequest{
|
|
|
|
Message: &mq_pb.PublishFollowMeRequest_Data{
|
|
|
|
Data: message,
|
|
|
|
},
|
|
|
|
}); followErr != nil {
|
|
|
|
return fmt.Errorf("send to follower %s: %v", p.follower, followErr)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
atomic.StoreInt64(&p.AckTsNs, message.TsNs)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2023-08-21 13:53:05 +08:00
|
|
|
}
|
|
|
|
|
2024-01-15 16:20:12 +08:00
|
|
|
func (p *LocalPartition) Subscribe(clientName string, startPosition log_buffer.MessagePosition,
|
|
|
|
onNoMessageFn func() bool, eachMessageFn log_buffer.EachLogEntryFuncType) error {
|
|
|
|
var processedPosition log_buffer.MessagePosition
|
|
|
|
var readPersistedLogErr error
|
|
|
|
var readInMemoryLogErr error
|
|
|
|
var isDone bool
|
|
|
|
|
|
|
|
for {
|
2024-03-08 02:57:04 +08:00
|
|
|
processedPosition, isDone, readPersistedLogErr = p.LogBuffer.ReadFromDiskFn(startPosition, 0, eachMessageFn)
|
2024-01-15 16:20:12 +08:00
|
|
|
if readPersistedLogErr != nil {
|
|
|
|
glog.V(0).Infof("%s read %v persisted log: %v", clientName, p.Partition, readPersistedLogErr)
|
|
|
|
return readPersistedLogErr
|
|
|
|
}
|
|
|
|
if isDone {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
startPosition = processedPosition
|
2024-03-08 02:57:04 +08:00
|
|
|
processedPosition, isDone, readInMemoryLogErr = p.LogBuffer.LoopProcessLogData(clientName, startPosition, 0, onNoMessageFn, eachMessageFn)
|
2024-03-11 05:34:28 +08:00
|
|
|
if isDone {
|
|
|
|
return nil
|
|
|
|
}
|
2024-01-15 16:20:12 +08:00
|
|
|
startPosition = processedPosition
|
|
|
|
|
|
|
|
if readInMemoryLogErr == log_buffer.ResumeFromDiskError {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if readInMemoryLogErr != nil {
|
|
|
|
glog.V(0).Infof("%s read %v in memory log: %v", clientName, p.Partition, readInMemoryLogErr)
|
|
|
|
return readInMemoryLogErr
|
|
|
|
}
|
|
|
|
}
|
2024-01-08 16:03:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *LocalPartition) GetEarliestMessageTimeInMemory() time.Time {
|
2024-03-08 02:57:04 +08:00
|
|
|
return p.LogBuffer.GetEarliestTime()
|
2024-01-08 16:03:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *LocalPartition) HasData() bool {
|
2024-03-08 02:57:04 +08:00
|
|
|
return !p.LogBuffer.GetEarliestTime().IsZero()
|
2024-01-08 16:03:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *LocalPartition) GetEarliestInMemoryMessagePosition() log_buffer.MessagePosition {
|
2024-03-08 02:57:04 +08:00
|
|
|
return p.LogBuffer.GetEarliestPosition()
|
2023-08-28 04:13:14 +08:00
|
|
|
}
|
|
|
|
|
2024-01-16 13:22:41 +08:00
|
|
|
func FromPbBrokerPartitionAssignment(self pb.ServerAddress, partition Partition, assignment *mq_pb.BrokerPartitionAssignment, logFlushFn log_buffer.LogFlushFuncType, readFromDiskFn log_buffer.LogReadFromDiskFuncType) *LocalPartition {
|
2023-12-12 04:05:54 +08:00
|
|
|
isLeader := assignment.LeaderBroker == string(self)
|
2023-08-21 13:53:05 +08:00
|
|
|
followers := make([]pb.ServerAddress, len(assignment.FollowerBrokers))
|
2023-12-12 04:05:54 +08:00
|
|
|
for i, followerBroker := range assignment.FollowerBrokers {
|
|
|
|
followers[i] = pb.ServerAddress(followerBroker)
|
|
|
|
}
|
2024-01-16 13:22:41 +08:00
|
|
|
return NewLocalPartition(partition, isLeader, followers, logFlushFn, readFromDiskFn)
|
2023-12-12 04:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *LocalPartition) closePublishers() {
|
|
|
|
p.Publishers.SignalShutdown()
|
|
|
|
}
|
|
|
|
func (p *LocalPartition) closeSubscribers() {
|
|
|
|
p.Subscribers.SignalShutdown()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *LocalPartition) WaitUntilNoPublishers() {
|
|
|
|
for {
|
|
|
|
if p.Publishers.IsEmpty() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
time.Sleep(113 * time.Millisecond)
|
2023-08-21 13:53:05 +08:00
|
|
|
}
|
|
|
|
}
|
2024-01-17 00:43:07 +08:00
|
|
|
|
2024-03-28 13:58:20 +08:00
|
|
|
func (p *LocalPartition) MaybeConnectToFollowers(initMessage *mq_pb.PublishMessageRequest_InitMessage, grpcDialOption grpc.DialOption) (err error) {
|
|
|
|
if p.FollowerStream != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if len(initMessage.FollowerBrokers) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-28 14:10:24 +08:00
|
|
|
p.follower = initMessage.FollowerBrokers[0]
|
2024-03-28 13:58:20 +08:00
|
|
|
ctx := context.Background()
|
2024-03-28 14:10:24 +08:00
|
|
|
p.FollowerGrpcConnection, err = pb.GrpcDial(ctx, p.follower, true, grpcDialOption)
|
2024-03-28 13:58:20 +08:00
|
|
|
if err != nil {
|
2024-03-28 14:10:24 +08:00
|
|
|
return fmt.Errorf("fail to dial %s: %v", p.follower, err)
|
2024-03-28 13:58:20 +08:00
|
|
|
}
|
|
|
|
followerClient := mq_pb.NewSeaweedMessagingClient(p.FollowerGrpcConnection)
|
|
|
|
p.FollowerStream, err = followerClient.PublishFollowMe(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("fail to create publish client: %v", err)
|
|
|
|
}
|
|
|
|
if err = p.FollowerStream.Send(&mq_pb.PublishFollowMeRequest{
|
|
|
|
Message: &mq_pb.PublishFollowMeRequest_Init{
|
|
|
|
Init: &mq_pb.PublishFollowMeRequest_InitMessage{
|
|
|
|
Topic: initMessage.Topic,
|
|
|
|
Partition: initMessage.Partition,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// start receiving ack from follower
|
|
|
|
go func() {
|
|
|
|
defer func() {
|
|
|
|
println("stop receiving ack from follower")
|
|
|
|
}()
|
|
|
|
|
|
|
|
for {
|
|
|
|
ack, err := p.FollowerStream.Recv()
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Error receiving follower ack: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
atomic.StoreInt64(&p.AckTsNs, ack.AckTsNs)
|
|
|
|
println("recv ack", ack.AckTsNs)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-01-17 00:43:07 +08:00
|
|
|
func (p *LocalPartition) MaybeShutdownLocalPartition() (hasShutdown bool) {
|
2024-03-28 14:02:51 +08:00
|
|
|
if !p.Publishers.IsEmpty() {
|
|
|
|
return
|
2024-03-28 13:48:37 +08:00
|
|
|
}
|
2024-03-28 14:02:51 +08:00
|
|
|
if !p.Subscribers.IsEmpty() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p.LogBuffer.ShutdownLogBuffer()
|
2024-03-28 13:48:37 +08:00
|
|
|
|
2024-03-28 14:02:51 +08:00
|
|
|
if p.FollowerStream != nil {
|
|
|
|
// send close to the follower
|
|
|
|
if followErr := p.FollowerStream.Send(&mq_pb.PublishFollowMeRequest{
|
|
|
|
Message: &mq_pb.PublishFollowMeRequest_Close{
|
|
|
|
Close: &mq_pb.PublishFollowMeRequest_CloseMessage{},
|
|
|
|
},
|
|
|
|
}); followErr != nil {
|
|
|
|
glog.Errorf("Error closing follower stream: %v", followErr)
|
|
|
|
}
|
|
|
|
glog.V(4).Infof("closing grpcConnection to follower")
|
|
|
|
p.FollowerGrpcConnection.Close()
|
|
|
|
p.FollowerStream = nil
|
2024-01-17 00:43:07 +08:00
|
|
|
}
|
2024-03-28 14:02:51 +08:00
|
|
|
|
2024-01-17 00:43:07 +08:00
|
|
|
return
|
|
|
|
}
|
2024-03-11 05:34:28 +08:00
|
|
|
|
|
|
|
func (p *LocalPartition) Shutdown() {
|
|
|
|
p.closePublishers()
|
|
|
|
p.closeSubscribers()
|
|
|
|
p.LogBuffer.ShutdownLogBuffer()
|
|
|
|
atomic.StoreInt32(&p.FollowerId, 0)
|
2024-03-18 13:24:20 +08:00
|
|
|
glog.V(0).Infof("local partition %v shutting down", p.Partition)
|
2024-03-11 05:34:28 +08:00
|
|
|
}
|