GithubHelp home page GithubHelp logo

Comments (4)

WangXijue avatar WangXijue commented on August 31, 2024

I also encountered this problem. I add a goroutine checking registration and registering again after connection broken, it seems working.

from kafka.

bhirbec avatar bhirbec commented on August 31, 2024

@WangXijue
I solved my problem by sending an error into cg.errors channel like this (about consumer_group.go#L264):

cg.Logf("Currently registered consumers: %d\n", len(cg.consumers))
if len(cg.consumers) == 0 {
    cg.errors <- &sarama.ConsumerError{
        Topic:     "-",
        Partition: -1,
        Err:       fmt.Errorf("No consumer registered"),
    }
    return
}

This gives an opportunity to the caller to receive a notification by reading from Errors(). If this occurs then I close the group and restart it. It works ok.

side note: I found later that cg.errors doesn't receive any error from Sarama since config.Consumer.Return.Errors is false. By setting this to true Errors() should receive connection errors...

from kafka.

WangXijue avatar WangXijue commented on August 31, 2024

Uh... did you use the latest version?
I found the problem had been solved in this commit:
0479015

from kafka.

bhirbec avatar bhirbec commented on August 31, 2024

@WangXijue
I did miss this. Thanks for the update.

from kafka.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.