grpc-java
grpc-java copied to clipboard
The Java gRPC implementation. HTTP/2 based RPC
This PR implements config changes defined for public preview. With new config schema, logging filters are matched on text-order basis compared to precedence basis and takes separate filters for client...
fix https://github.com/grpc/grpc-java/issues/9547
### What version of gRPC-Java are you using? 1.49.2 ### What is your environment? Android ### What did you see? When run after R8 full mode optimization, grpc throws an...
``` Sep 14, 2022 11:55:46 PM io.netty.util.concurrent.DefaultPromise notifyListener0 WARNING: An exception was thrown by io.grpc.netty.NettyClientHandler$4.operationComplete() java.util.concurrent.RejectedExecutionException at io.grpc.stub.ClientCalls$ThreadlessExecutor.execute(ClientCalls.java:790) at io.grpc.internal.RetriableStream$Sublistener.closed(RetriableStream.java:904) at io.grpc.internal.DelayedStream$DelayedStreamListener$4.run(DelayedStream.java:510) at io.grpc.internal.DelayedStream$DelayedStreamListener.delayOrExecute(DelayedStream.java:462) at io.grpc.internal.DelayedStream$DelayedStreamListener.closed(DelayedStream.java:507) at io.grpc.internal.ForwardingClientStreamListener.closed(ForwardingClientStreamListener.java:34) at io.grpc.internal.InternalSubchannel$CallTracingTransport$1$1.closed(InternalSubchannel.java:693)...
This is part of a migration to move all LBs away from using handleResolvedAddresses().
Hello, I have seen that Netty has a BDP feature - any plans to implement the same for OkHttp? Apologies if this is not the best place to ask. Many...
This PR includes changes to observability logging data model / proto as per latest logging design review. Explicit flush is removed to rely on [default batching settings](https://github.com/googleapis/java-logging/blob/main/google-cloud-logging/src/main/java/com/google/cloud/logging/v2/stub/LoggingServiceV2StubSettings.java#L649-L663) provided by Google...
I am not able to call my service with subdirectory "https://example.com/subdirectory_path" The call always resolves to example.com and ignores the subdirectory_path. This is how I create the channel : OkHttpChannelBuilder.forTarget(uri.host+uri.path).build()...
- I'm trying to use grpc in my android project. - I have generated my java class by protoc (version: libprotoc 3.21.7). - Here is my proto file: ``` syntax...
Part of a migration to move all LBs away from handleResolvedAddresses()