GRPC: make high-throughput client in Java/Scala
I solved the issue by creating several ManagedChannel
instances per destination. Despite articles say that a ManagedChannel
can spawn enough connections itself so one instance is enough it's wasn't true in my case.
Performance is in parity with akka-tcp implementation.