Top "Grpc-java" questions

Java version of general RPC (Remote Procedure Call) framework over HTTP/2.

file transfer using gRPC

What is the standard way to use gRPC and protocol buffer to transfer file or images from one process to …

redis protocol-buffers grpc grpc-java capnproto
Exception handling in gRPC

I have a server written in Java and client written in PHP. How can client catch exception from server if …

protocol-buffers grpc proto3 grpc-java
What is the exact use of the executor in grpc-java’s ServerBuilder? Does it just execute the handler methods?

grpc-java uses an executor in its ServerBuilder, which if not defined by the builder.executor() method, uses a static cached …

java multithreading netty grpc grpc-java
java-grpc: How to increase the message size limit in a ManagedChannel?

Our communication exceeds the default grpc-java limit on the message size: Caused by: io.grpc.StatusRuntimeException: INTERNAL: Frame size 4555602 exceeds …

java grpc grpc-java
Does gRPC server spin up a new thread for each request?

I tried profiling a gRPC java server. And i see the below set of thread pools majorly. grpc-default-executor Threads : Created 1 …

server netty grpc grpc-java
gRPC connection: use keepAlive or idleTimeout?

Looking at gRPC Java doc - ManagedChannelBuilder, there're two options to manage the connections. It seems idleTimeout() is the default/…

grpc keep-alive grpc-java