Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upImprove consumer group example [documentation] #1336
Comments
|
And it seems like that this command is not work:
Has anyone encountered the same problem? |
|
Is it possible to enhance the documentation and examples/test cases describing how to handle the following ? Suppose there is a go-routine A which is invoked (periodically). This go-routine A represents a consumer of a consumer-group. Therefore, A will initiate consume() and that will lead to processing of messages on various claims. All the messages need to be aggregated at A. One way to achieve this is to create channels. Can we do that without creating channels and communicate between A and ConsumeClaim() methods ? |
|
Thank you for taking the time to raise this issue. However, it has not had any activity on it in the past 90 days and will be closed in 30 days if no updates occur. |
Running the existing consumer group example results in a panic. It's pretty clear why, but it might be good to have an example that shows an idiomatic way to cleanly break out of the
Consume()loop if the client is closed.