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

CachingRlsLbClient already calls it with a lock held. The only reason the cache needs to manage the lock itself is for the periodic cleanup. Let the consumer of the cache...

``` EBUG|2024-05-11 14:13:10,249 +0800|io.grpc.netty.shaded.io.netty.util.internal.PlatformDependent0|direct buffer constructor: unavailable java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled at io.grpc.netty.shaded.io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[grpc-netty-shaded-1.63.0.jar:1.63.0] at io.grpc.netty.shaded.io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:293) ~[grpc-netty-shaded-1.63.0.jar:1.63.0] at java.security.AccessController.doPrivileged(AccessController.java:319) ~[?:?] at io.grpc.netty.shaded.io.netty.util.internal.PlatformDependent0.(PlatformDependent0.java:286) [grpc-netty-shaded-1.63.0.jar:1.63.0] at io.grpc.netty.shaded.io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:331) [grpc-netty-shaded-1.63.0.jar:1.63.0] at io.grpc.netty.shaded.io.netty.util.internal.PlatformDependent.(PlatformDependent.java:86) [grpc-netty-shaded-1.63.0.jar:1.63.0] at...

gRPC-java===1.63.0 java: 17.0.9 2023-10-17 LTS 64-Bit When I use gRPC streaming responses, I handle it like this: ```java observers.forEach((context, observer) -> { if (!context.isCancelled() && observer.isReady()) { observer.onNext(data); } });...

javadoc for `public void handleResolvedAddresses(ResolvedAddresses resolvedAddresses)` - refers to non-existent argument `servers` javadoc for `public Status acceptResolvedAddresses(ResolvedAddresses resolvedAddresses)` - refers to an argument named `addresses` - refers to returning values...

docs

What is the best practice to use client-side load balancing? I read through this thread - https://github.com/grpc/grpc-java/issues/428 and various options provided. I found one example - https://github.com/grpc/grpc-java/blob/master/examples/src/main/java/io/grpc/examples/customloadbalance/CustomLoadBalanceClient.java But don't think...

question
Waiting on reporter

### Is your feature request related to a problem? We want an easy/more consistent way to verify if a request has taken DirectPath or not. ### Existing Solution We are...

enhancement

### Is your feature request related to a problem? The problem is need to compile protoc instead of using prebuilt binary while building java_grpc_library ### Describe the solution you'd like...

enhancement
help wanted
Waiting on reporter

hello i deploy a grpc client an a grpc server on the same linux pc i send 89M req to server ,i find it very time-consuming,about 6~10 second i guess...

question

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