Top "Grpc" questions

A general RPC (Remote Procedure Call) framework over HTTP/2, initially developed at Google.

XXX_* type in generated *.pb.go file

I'm working on a tutorial about gRPC. When I generated the .pb.go file, I'm getting some XXX_* type in …

go protocol-buffers grpc
How should a GRPC Service be hosted?

I have created a GRPC Server in C# using the example given at Link. Now I want to figure out …

c# grpc
How to set a value for a protobuf map<string, string> property in C#

I have the following protoc3 message: message LocalizedString { map<string, string> translations = 1 } When compiled into C#, I get …

c# protocol-buffers grpc protobuf-csharp-port
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
Are channel/stubs in gRPC thread-safe

When using gRPC from Java, can I cache stubs (clients) and call them in a multi-threaded environment or are the …

java thread-safety grpc
Can both ends of a gRPC connection accept method calls?

From the introduction on gRPC: In gRPC a client application can directly call methods on a server application on a …

grpc
Docker build taking too long when installing grpcio via pip

I have a Dockerfile which installs a few packages via pip. Some of them are requiring grpcio, and it takes …

python docker pip dockerfile grpc
gRPC client side load balancing

I'm using gRPC with Python as client/server inside kubernetes pods... I would like to be able to launch multiple …

python http dns kubernetes grpc
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
Why do we need to register reflection service on gRPC server

I was going through this code of gRPC server. Can anyone tell me the need for reflection used here Code : …

reflection grpc