mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
refactor
This commit is contained in:
parent
321fda552c
commit
2a578b9033
|
@ -22,11 +22,7 @@ func main() {
|
||||||
Filter: "",
|
Filter: "",
|
||||||
}
|
}
|
||||||
|
|
||||||
subscriber := sub_client.NewTopicSubscriber(subscriberConfig, contentConfig)
|
subscriber := sub_client.NewTopicSubscriber("localhost:17777", subscriberConfig, contentConfig)
|
||||||
if err := subscriber.Connect("localhost:17777"); err != nil {
|
|
||||||
fmt.Println(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
subscriber.SetEachMessageFunc(func(key, value []byte) bool {
|
subscriber.SetEachMessageFunc(func(key, value []byte) bool {
|
||||||
println(string(key), "=>", string(value))
|
println(string(key), "=>", string(value))
|
||||||
|
|
81
weed/mq/client/sub_client/process.go
Normal file
81
weed/mq/client/sub_client/process.go
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
package sub_client
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
||||||
|
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (sub *TopicSubscriber) doProcess() error {
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
for _, brokerPartitionAssignment := range sub.brokerPartitionAssignments {
|
||||||
|
brokerAddress := brokerPartitionAssignment.LeaderBroker
|
||||||
|
grpcConnection, err := pb.GrpcDial(context.Background(), brokerAddress, true, sub.SubscriberConfig.GrpcDialOption)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("dial broker %s: %v", brokerAddress, err)
|
||||||
|
}
|
||||||
|
brokerClient := mq_pb.NewSeaweedMessagingClient(grpcConnection)
|
||||||
|
subscribeClient, err := brokerClient.Subscribe(context.Background(), &mq_pb.SubscribeRequest{
|
||||||
|
Message: &mq_pb.SubscribeRequest_Init{
|
||||||
|
Init: &mq_pb.SubscribeRequest_InitMessage{
|
||||||
|
ConsumerGroup: sub.SubscriberConfig.GroupId,
|
||||||
|
ConsumerId: sub.SubscriberConfig.GroupInstanceId,
|
||||||
|
Topic: &mq_pb.Topic{
|
||||||
|
Namespace: sub.ContentConfig.Namespace,
|
||||||
|
Name: sub.ContentConfig.Topic,
|
||||||
|
},
|
||||||
|
Partition: &mq_pb.Partition{
|
||||||
|
RingSize: brokerPartitionAssignment.Partition.RingSize,
|
||||||
|
RangeStart: brokerPartitionAssignment.Partition.RangeStart,
|
||||||
|
RangeStop: brokerPartitionAssignment.Partition.RangeStop,
|
||||||
|
},
|
||||||
|
Filter: sub.ContentConfig.Filter,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("create subscribe client: %v", err)
|
||||||
|
}
|
||||||
|
wg.Add(1)
|
||||||
|
go func() {
|
||||||
|
defer wg.Done()
|
||||||
|
if sub.OnCompletionFunc != nil {
|
||||||
|
defer sub.OnCompletionFunc()
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
subscribeClient.SendMsg(&mq_pb.SubscribeRequest{
|
||||||
|
Message: &mq_pb.SubscribeRequest_Ack{
|
||||||
|
Ack: &mq_pb.SubscribeRequest_AckMessage{
|
||||||
|
Sequence: 0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
subscribeClient.CloseSend()
|
||||||
|
}()
|
||||||
|
for {
|
||||||
|
resp, err := subscribeClient.Recv()
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("subscribe error: %v\n", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if resp.Message == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
switch m := resp.Message.(type) {
|
||||||
|
case *mq_pb.SubscribeResponse_Data:
|
||||||
|
if !sub.OnEachMessageFunc(m.Data.Key, m.Data.Value) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
case *mq_pb.SubscribeResponse_Ctrl:
|
||||||
|
if m.Ctrl.IsEndOfStream || m.Ctrl.IsEndOfTopic {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
wg.Wait()
|
||||||
|
return nil
|
||||||
|
}
|
|
@ -1,72 +1,28 @@
|
||||||
package sub_client
|
package sub_client
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/seaweedfs/seaweedfs/weed/pb"
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
||||||
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
|
"io"
|
||||||
"sync"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Subscribe subscribes to a topic's specified partitions.
|
// Subscribe subscribes to a topic's specified partitions.
|
||||||
// If a partition is moved to another broker, the subscriber will automatically reconnect to the new broker.
|
// If a partition is moved to another broker, the subscriber will automatically reconnect to the new broker.
|
||||||
|
|
||||||
func (sub *TopicSubscriber) Subscribe() error {
|
func (sub *TopicSubscriber) Subscribe() error {
|
||||||
var wg sync.WaitGroup
|
util.RetryUntil("subscribe", func() error {
|
||||||
for _, brokerPartitionAssignment := range sub.brokerPartitionAssignments {
|
if err := sub.doLookup(sub.bootstrapBroker); err != nil {
|
||||||
brokerAddress := brokerPartitionAssignment.LeaderBroker
|
return fmt.Errorf("lookup topic %s/%s: %v", sub.ContentConfig.Namespace, sub.ContentConfig.Topic, err)
|
||||||
grpcConnection, err := pb.GrpcDial(context.Background(), brokerAddress, true, sub.SubscriberConfig.GrpcDialOption)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("dial broker %s: %v", brokerAddress, err)
|
|
||||||
}
|
}
|
||||||
brokerClient := mq_pb.NewSeaweedMessagingClient(grpcConnection)
|
if err := sub.doProcess(); err != nil {
|
||||||
subscribeClient, err := brokerClient.Subscribe(context.Background(), &mq_pb.SubscribeRequest{
|
return fmt.Errorf("subscribe topic %s/%s: %v", sub.ContentConfig.Namespace, sub.ContentConfig.Topic, err)
|
||||||
Message: &mq_pb.SubscribeRequest_Init{
|
}
|
||||||
Init: &mq_pb.SubscribeRequest_InitMessage{
|
return nil
|
||||||
ConsumerGroup: sub.SubscriberConfig.GroupId,
|
}, func(err error) bool {
|
||||||
ConsumerId: sub.SubscriberConfig.GroupInstanceId,
|
if err == io.EOF {
|
||||||
Topic: &mq_pb.Topic{
|
return false
|
||||||
Namespace: sub.ContentConfig.Namespace,
|
}
|
||||||
Name: sub.ContentConfig.Topic,
|
return true
|
||||||
},
|
|
||||||
Partition: &mq_pb.Partition{
|
|
||||||
RingSize: brokerPartitionAssignment.Partition.RingSize,
|
|
||||||
RangeStart: brokerPartitionAssignment.Partition.RangeStart,
|
|
||||||
RangeStop: brokerPartitionAssignment.Partition.RangeStop,
|
|
||||||
},
|
|
||||||
Filter: sub.ContentConfig.Filter,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("create subscribe client: %v", err)
|
|
||||||
}
|
|
||||||
wg.Add(1)
|
|
||||||
go func() {
|
|
||||||
defer wg.Done()
|
|
||||||
if sub.OnCompletionFunc != nil {
|
|
||||||
defer sub.OnCompletionFunc()
|
|
||||||
}
|
|
||||||
for {
|
|
||||||
resp, err := subscribeClient.Recv()
|
|
||||||
if err != nil {
|
|
||||||
fmt.Printf("subscribe error: %v\n", err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if resp.Message == nil {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
switch m := resp.Message.(type) {
|
|
||||||
case *mq_pb.SubscribeResponse_Data:
|
|
||||||
if !sub.OnEachMessageFunc(m.Data.Key, m.Data.Value) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
case *mq_pb.SubscribeResponse_Ctrl:
|
|
||||||
// ignore
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
wg.Wait()
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,22 +28,17 @@ type TopicSubscriber struct {
|
||||||
brokerPartitionAssignments []*mq_pb.BrokerPartitionAssignment
|
brokerPartitionAssignments []*mq_pb.BrokerPartitionAssignment
|
||||||
OnEachMessageFunc OnEachMessageFunc
|
OnEachMessageFunc OnEachMessageFunc
|
||||||
OnCompletionFunc OnCompletionFunc
|
OnCompletionFunc OnCompletionFunc
|
||||||
|
bootstrapBroker string
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewTopicSubscriber(subscriber *SubscriberConfiguration, content *ContentConfiguration) *TopicSubscriber {
|
func NewTopicSubscriber(bootstrapBroker string, subscriber *SubscriberConfiguration, content *ContentConfiguration) *TopicSubscriber {
|
||||||
return &TopicSubscriber{
|
return &TopicSubscriber{
|
||||||
SubscriberConfig: subscriber,
|
SubscriberConfig: subscriber,
|
||||||
ContentConfig: content,
|
ContentConfig: content,
|
||||||
|
bootstrapBroker: bootstrapBroker,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sub *TopicSubscriber) Connect(bootstrapBroker string) error {
|
|
||||||
if err := sub.doLookup(bootstrapBroker); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (sub *TopicSubscriber) SetEachMessageFunc(onEachMessageFn OnEachMessageFunc) {
|
func (sub *TopicSubscriber) SetEachMessageFunc(onEachMessageFn OnEachMessageFunc) {
|
||||||
sub.OnEachMessageFunc = onEachMessageFn
|
sub.OnEachMessageFunc = onEachMessageFn
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue