-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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
Health checks no longer works with legacy compression options. #8162
Comments
We encountered this issue when upgrading from v1.64.0 to v1.70.0, and were able to reproduce following the steps provided above. With the reproduction steps provided (using legacy compression options on the client and server in the healthcheck example), we observe the following output from the healthcheck example on the v1.64.x branch:
The error log comes from here, and seems to occur because the client does not have a decompressor registered, which is recorded as an On the v1.70.x branch, following the reproduction steps, we observe the following output from the healthcheck example:
We believe this behavior was exposed by #7461, though as described in the original post, the fix may be to register the legacy decompressor in the health check stream. |
Checked with @s-matyukevich and he will provide a patch for this. |
I see. So, #7461 changed to return INTERNAL status instead of UNIMPLEMENTED and the upstream code is expecting UNIMPLEMENTED to be considered healthy with server health check disabled. However, I am not sure "register the legacy decompressor in the health check stream" is the appropriate fix here. Shouldn't the server with a disabled health check be updated? @dfawley @easwars |
There's a cross-language design question, I think. Are there cases where health checks should use compression? cc @ejona86 any hints on whether java ever enable compression on health checks? There's nothing explicit on the design. Since, at least in Go, there's no way to control per- |
I don't understand why the grpc-java doesn't use compression for health, unless you do something from an interceptor or such. |
I tried to reproduce the issue on
This can be verified by adding
It's not clear to me what happened in this issue then which triggered the |
What version of gRPC are you using?
Found the bug in v1.70.0 and confirmed it is wtill there in the HEAD of master.
What version of Go are you using (
go version
)?go version go1.24.0 darwin/arm64
What operating system (Linux, Windows, …) and version?
Mac OS
What did you do?
Modify health example in the following way:
What did you expect to see?
Example working correctly
What did you see instead?
Health check failing. Client can't connect to the server.
I think I traced the issue to its root cause. If I modify this code to include decompressor provided in the options, e.g
everything is working as expected. This is not a proper fix as you also need to handle cases when compression is configured using the new API, but it should be easy to handle that.
The text was updated successfully, but these errors were encountered: