Description
What version of gRPC-Java are you using?
1.44.0
What is your environment?
A client and server communicating over localhost.
Operating system: Mac OSX
JDK: 11.0.9
What did you expect to see?
Client in this branch not failing the majority of RPCs with DEADLINE_EXCEEDED
when using Netty for transport.
What did you see instead?
The majority of call fails with DEADLINE_EXCEEDED
using Netty
whereas using OkHttp
doesn't .
Steps to reproduce the bug
This (hacky) reproducible might indicate a potential problem where the periodic flushing of the WriteQueue doesn't happen frequently enough. This causes latency leading to DEADLINE_EXCEEDED
during startup. Switching to ÒkHttp
for this particular case does not cause any RPCs to fail.
On the wire with Netty multiple RPCs are batched and sent togheter whereas with ÒkHttp
they are immediately dispatched.
Here is a screenshot from Perfmark using Netty:
is this a known issue or am I doing something fundamentally wrong in the reproducer?