seaweedfs/weed/messaging/broker/topic_manager.go

125 lines
2.8 KiB
Go
Raw Normal View History

2020-04-18 08:12:01 +00:00
package broker
import (
2020-04-19 07:18:32 +00:00
"fmt"
2020-04-18 08:12:01 +00:00
"sync"
"time"
2020-04-19 07:18:32 +00:00
"github.com/chrislusf/seaweedfs/weed/filer2"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/messaging_pb"
2020-04-18 08:12:01 +00:00
"github.com/chrislusf/seaweedfs/weed/util/log_buffer"
)
type TopicPartition struct {
Namespace string
Topic string
Partition int32
}
2020-05-10 10:50:30 +00:00
2020-05-08 09:47:22 +00:00
const (
TopicPartitionFmt = "%s/%s_%02d"
2020-05-08 09:47:22 +00:00
)
2020-05-10 10:50:30 +00:00
2020-05-08 09:47:22 +00:00
func (tp *TopicPartition) String() string {
return fmt.Sprintf(TopicPartitionFmt, tp.Namespace, tp.Topic, tp.Partition)
}
type TopicCursor struct {
2020-04-18 08:12:01 +00:00
sync.Mutex
2020-04-21 00:48:06 +00:00
cond *sync.Cond
2020-04-18 08:12:01 +00:00
subscriberCount int
publisherCount int
logBuffer *log_buffer.LogBuffer
subscriptions *TopicPartitionSubscriptions
2020-04-18 08:12:01 +00:00
}
2020-05-12 15:48:00 +00:00
type TopicManager struct {
2020-04-18 08:12:01 +00:00
sync.Mutex
2020-05-13 04:26:49 +00:00
topicCursors map[TopicPartition]*TopicCursor
broker *MessageBroker
2020-04-18 08:12:01 +00:00
}
2020-05-12 15:48:00 +00:00
func NewTopicManager(messageBroker *MessageBroker) *TopicManager {
return &TopicManager{
2020-05-13 04:26:49 +00:00
topicCursors: make(map[TopicPartition]*TopicCursor),
broker: messageBroker,
2020-04-18 08:12:01 +00:00
}
}
func (tm *TopicManager) buildLogBuffer(tl *TopicCursor, tp TopicPartition, topicConfig *messaging_pb.TopicConfiguration) *log_buffer.LogBuffer {
2020-04-18 08:12:01 +00:00
2020-04-19 07:18:32 +00:00
flushFn := func(startTime, stopTime time.Time, buf []byte) {
if topicConfig.IsTransient {
2020-04-30 10:05:34 +00:00
// return
}
2020-04-20 06:37:40 +00:00
// fmt.Printf("flushing with topic config %+v\n", topicConfig)
2020-04-19 07:18:32 +00:00
targetFile := fmt.Sprintf(
"%s/%s/%s/%04d-%02d-%02d/%02d-%02d.part%02d",
filer2.TopicsDir, tp.Namespace, tp.Topic,
startTime.Year(), startTime.Month(), startTime.Day(), startTime.Hour(), startTime.Minute(),
tp.Partition,
)
2020-05-12 15:48:00 +00:00
if err := tm.broker.appendToFile(targetFile, topicConfig, buf); err != nil {
2020-04-19 07:18:32 +00:00
glog.V(0).Infof("log write failed %s: %v", targetFile, err)
}
2020-04-18 08:12:01 +00:00
}
2020-04-19 07:18:32 +00:00
logBuffer := log_buffer.NewLogBuffer(time.Minute, flushFn, func() {
tl.subscriptions.NotifyAll()
2020-04-19 07:18:32 +00:00
})
2020-04-18 08:12:01 +00:00
2020-04-19 07:18:32 +00:00
return logBuffer
2020-04-18 08:12:01 +00:00
}
func (tm *TopicManager) RequestLock(partition TopicPartition, topicConfig *messaging_pb.TopicConfiguration, isPublisher bool) *TopicCursor {
2020-05-12 15:48:00 +00:00
tm.Lock()
defer tm.Unlock()
2020-04-18 08:12:01 +00:00
2020-05-13 04:26:49 +00:00
lock, found := tm.topicCursors[partition]
2020-04-18 08:12:01 +00:00
if !found {
lock = &TopicCursor{}
2020-05-13 04:26:49 +00:00
tm.topicCursors[partition] = lock
lock.subscriptions = NewTopicPartitionSubscriptions()
2020-05-12 15:48:00 +00:00
lock.logBuffer = tm.buildLogBuffer(lock, partition, topicConfig)
2020-04-18 08:12:01 +00:00
}
2020-04-19 07:18:32 +00:00
if isPublisher {
lock.publisherCount++
} else {
lock.subscriberCount++
}
return lock
2020-04-18 08:12:01 +00:00
}
2020-05-12 15:48:00 +00:00
func (tm *TopicManager) ReleaseLock(partition TopicPartition, isPublisher bool) {
tm.Lock()
defer tm.Unlock()
2020-04-18 08:12:01 +00:00
2020-05-13 04:26:49 +00:00
lock, found := tm.topicCursors[partition]
2020-04-18 08:12:01 +00:00
if !found {
return
}
if isPublisher {
lock.publisherCount--
} else {
lock.subscriberCount--
}
if lock.subscriberCount <= 0 && lock.publisherCount <= 0 {
2020-05-13 04:26:49 +00:00
delete(tm.topicCursors, partition)
lock.logBuffer.Shutdown()
2020-04-18 08:12:01 +00:00
}
}
2020-05-08 09:47:22 +00:00
2020-05-12 15:48:00 +00:00
func (tm *TopicManager) ListTopicPartitions() (tps []TopicPartition) {
tm.Lock()
defer tm.Unlock()
2020-05-08 09:47:22 +00:00
2020-05-13 04:26:49 +00:00
for k := range tm.topicCursors {
2020-05-08 09:47:22 +00:00
tps = append(tps, k)
}
return
}