Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
297 views
in Technique[技术] by (71.8m points)

c - How to handle connection drop in pubsub model?

Below function(BroadcastMessage) broadcast messages to subscribers(PublisherHub.subscribers). BroadcastMessage establishes a connection from source(PCF firehose)

In the below case, BroadcastMessage() establishing a connection from PCF firehose using api consumer.New()(https://github.com/cloudfoundry/noaa/blob/master/consumer/consumer.go#L78):

func BroadcastMessage(publisherHub *publisher.PublisherHub) {
    ....
    cnsmr := consumer.New(dopplerAddress, &tls.Config{InsecureSkipVerify: true}, nil)
    ....
    var (
        msgChan   <-chan *events.Envelope
        errorChan <-chan error
    )

    switch *filterType {
    case "logs":
        msgChan, errorChan = cnsmr.FilteredFirehose(firehoseSubscriptionId, authToken, consumer.LogMessages)
    case "metrics":
        msgChan, errorChan = cnsmr.FilteredFirehose(firehoseSubscriptionId, authToken, consumer.Metrics)
    default:
        msgChan, errorChan = cnsmr.Firehose(firehoseSubscriptionId, authToken)
    }

    go func() {
        for err := range errorChan {
            fmt.Fprintf(os.Stderr, "%v
", err.Error())
        }
    }()

    for msg := range msgChan {
        publisherHub.Broadcast <- msg
    }
    // ....
    // Listening to shutdown signal
}

publisherHub broadcast msg to all subscribers where type PublisherHub maintains the hub of subscribers:

type PublisherHub struct {
    subscribers map[*subscriptionmediator.HandlerSubscription]struct{}
    Register    chan *subscriptionmediator.HandlerSubscription
    Unregister  chan *subscriptionmediator.HandlerSubscription
    Broadcast   chan *events.Envelope
}

main() blocks in BroadcastMessage() until explicit shutdown through SIGTERM

func main() {

    ....
    publisherHub := publisher.NewHub()
    go publisherHub.Run()
    ....
    go loadbroadcast.BroadcastMessage(publisherHub)
    ....   
}

But in production this connection(consumer.New()) is being lost due to loss of network connectivity and all the subscribers are getting affected.


How to handle loss of connection in BroadcastMessage, so that subscribers can receive messages seamlessly? Because Broadcastmessage() is already in an infinite loop(for msg := range msgChan) until shutdown initiates closing of channel(msgChan)

Does errorChan supposed to provide more details on connection loss?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...