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've seen some cases where users are providing fixed-size thread pools to `OkHttpChannelBuilder.transportExecutor()`. gRPC provides no guarantees how many threads it may need, and queuing a Runnable can prevent transports...

enhancement
okhttp
android

The gRPC docs for error codes state that both client and server should use the `unimplemented` code for cardinality violations. See table at the bottom of this doc (you can...

### What version of gRPC-Java are you using? grpc-xds 1.56.1, but the recent version (1.64.0) also suffers from this issue. ### What is your environment? Linux/Kubernetes with Istio 1.16.7 installed....

bug

1. Although grpc currently supports configuring onReadyThreshold, the withOnReadyThreshold() method is not provided in AbstractStub ![image](https://github.com/grpc/grpc-java/assets/73785906/ec0cd6f2-a2be-4a61-855b-116e418938dd) 2. Because the onReadyThreshold property is not copied in the toBuilder() method of CallOptions....

bug

This PR is a part of 'Stabilize Advanced TLS' effort. Clean up, improve javadoc, de-experimentalize of AdvancedTlsX509TrustManager, add a unit test (e2e already exists).

Netty upgrade to 4.1.110 in grpc-java Issue #11150

### What version of gRPC-Java are you using? 1.63.0 ### What is your environment? RHEL Docker image, JDK 17. We use https://github.com/grpc-ecosystem/grpc-spring, which uses `awaitTermination` to shut down the server...

When the client uses “gzip” compression to compress requests, if it sends a message where the compressed size is acceptable (less than or equal to the server’s configured max) but...

enhancement