-
Notifications
You must be signed in to change notification settings - Fork 781
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
Incomplete message error #1778
Comments
Hello,
For me this is definitely bug in implementation,because it works properly without retry policy. Also there is no retrying just retry policy set. |
@JamesNK Hello. Do you have any update for this issue? |
I believe we are running into a similar issue. @JamesNK I can try to provide more information/traces to help track this down as it is occurring very frequently in our stack - just let me know what you need. Both client and server are running in a container based on mcr.microsoft.com/dotnet/aspnet:6.0 With Debug level logging turned on client and server side, the only relevant logs seem to come from the client:
|
What version of gRPC and what language are you using?
grpc-dotnet client version 2.46.0 / C#
What operating system (Linux, Windows,...) and version?
Linux
What runtime / compiler are you using (e.g. .NET Core SDK version
dotnet --info
).NET 6 (6.0.202) SDK
What did you do?
A client sends unary grpc requests that contain some bytes and expects back a response containing two int32 values.
From time to time the client receives an error for the request with grpc status code 13 and the message
Incomplete message
from the server.To me it seems to be related to the server closing the HTTP2 connection by sending a GOAWAY.
Sadly i can't provide a reproducer as the issue only occurs seldomly.
I have attached some logs and stack traces that i have gathered when the error occurs
What did you expect to see?
A successful response for the grpc request
What did you see instead?
An error response with grpc status code 13 and the message
Incomplete message
I would also be thankful for guidance on how to further investigate the issue.
Kind regards,
Lars
The text was updated successfully, but these errors were encountered: