-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zilla Quickstart gRPC RouteGuide service hangs after lots of messages #719
Comments
After working in the quickstart some more this issue may be related to overall message count running through Zilla. The |
confirmed this bug still exists using The issue is still related to throughput, I can't replicate issue with the |
The reason why the request gets hung is that during the start the consumer group can't get into a stable state where it can assign partition so that fetch stream can start delivering messages. The failure to complete join group request is happening due to a session timeout that removes the member from the group. After further analysis, we found that there is a 3-second delay in the Join Group request and since we are using a connection pool this delay will be multiplied by the number of join group requests happening in parallel. After some digging, we found that there is Kafka config called
|
Describe the bug
Starting the zilla quickstart.
To Reproduce
Steps to reproduce the behavior:
ListFeature
endpoint in the gRPC RouteGuide collection one or many timesRecordRoute
endpoint, send multiple messages, end the stream, and a message should return stating the number of messages recievedThe text was updated successfully, but these errors were encountered: