Skip to main content

All Questions

Tagged with
0 votes
0 answers
69 views

Getting Error Exception calling application: [Errno 5] Input/output error sometimes

my sample.proto file syntax = "proto3"; package protofile; import "google/protobuf/timestamp.proto"; import "google/protobuf/struct.proto"; option go_package = "./...
user15511887's user avatar
1 vote
0 answers
93 views

Python gRPC client not reusing HTTP2 connection

I have a Python gRPC server inside a Kubernetes cluster. The gRPC server implements a Ping method. The server is load-balanced through Ingress Nginx, using the proper configuration (based on the ...
edthrn's user avatar
  • 1,182
-1 votes
1 answer
340 views

Why client can't acquire messages from server streaming?

I have Python server and client in gRPC. After adding ClientInterceptor I can't receive messages from unary_stream method from the server on client side. On the server side I can see that stream is ...
Afrodeziak's user avatar
0 votes
1 answer
1k views

Python grpc - reading in all messages before sending responses

I'm trying to understand if grpc server using streams is able to wait for all client messages to be read in prior to sending responses. I have a trivial application where I send in several numbers I'd ...
Christopher Dunderdale's user avatar
2 votes
1 answer
3k views

How to configure gRPC HTTP/2 flow control in python

I have a gRPC server with the following proto: syntax = "proto3"; service MyServicer { rpc DoSomething(stream InputBigData) returns (stream OutputBigData) {} } message InputBigData { ...
DouglasAdams's user avatar