grpc-java icon indicating copy to clipboard operation
grpc-java copied to clipboard

The Java gRPC implementation. HTTP/2 based RPC

Results 408 grpc-java issues
Sort by recently updated
recently updated
newest added

We are using grpc client in hive which is a long running process, but seems there are many threads named grpc-default-worker-ELG won't close even if the task is done. How...

question

Implementation of https://github.com/grpc/proposal/blob/master/A71-xds-fallback.md in Java

Hi @ejona86 we implemented the changes as discussed here - https://github.com/grpc/grpc-java/issues/11151 and it looks load balancing is working fine. But as mentioned here - https://medium.com/jamf-engineering/how-three-lines-of-configuration-solved-our-grpc-scaling-issues-in-kubernetes-ca1ff13f7f06, we are facing grpc UNAVAILABLE...

question

Lets the Name Resolver receive the status of the acceptance of the name resolution by the load balancer.

There's a missing if-statement to check SSLEngine vs socket before calling currentDelegateManager.checkClientTrusted

Full disclosure: this issue was _not_ found using grpc-xds, but I raise it as a potential issue for grpc-xds because I suspect it can happen there also. Here's the setup:...

Using `top -c` to check RES memory usage, it was 1.2g on Friday and rose to 1.5g on Monday. Using `pmap` to check 1539536kb (1.5g), and turning on NMT to...

question

### What version of gRPC-Java are you using? 1.64.0 ### What is your environment? Docker, JDK 21 ### What did you expect to see? After upgrading gRPC-Java from 1.38.0 to...

### What version of gRPC-Java are you using? 1.60.0 ### What is your environment? jdk-18.0.2.1-x64 Linux 3.10.0-1160.76.1.el7.x86_64 ### Client intialization? ``` NettyChannelBuilder.forTarget(target) .withOption(ChannelOption.CONNECT_TIMEOUT_MILLIS, timeout) .defaultLoadBalancingPolicy("round_robin") .keepAliveTime(60, TimeUnit.SECONDS) .keepAliveWithoutCalls(true) .sslContext( GrpcSslContexts.forClient()...

grpc version: 1.52.1 java version: 1.8 Now my client uses 100 threads, each thread sends 1M data, the server directly returns the response, I set the out-of-heap memory size limit...

question