Skip to main content

All Questions

Tagged with
4 votes
1 answer
3k views

gRPC Node Js client: "Method not found"

I have a gRPC server implemented in python and I am calling an RPC from NodeJS but it gives an error "Method not found". When I call using the python client, the request is successful. ...
D14TEN's user avatar
  • 289
1 vote
1 answer
3k views

Why does my Node.js gRPC client take 3 seconds to send a request to my Python gRPC server?

Let's begin by acknowledging that I am a gRPC noob. If I've asked a stupid question, go ahead and let me know, but only after explaining why it's stupid. Thanks! :) Overview I am developing an ...
Question Asker's user avatar
1 vote
1 answer
2k views

Make gRPC messages JSON serializable

I have a gRPC definition that contains repeated scalar values. For example message Request { bool dryrun = 1; bool verbose = 2; bool enabled = 3; float ratio = 4; int32 count = 5; ...
kakyo's user avatar
  • 11.7k
1 vote
0 answers
2k views

Will gRPC automatically start supporting HTTP/3 protocol or will coders/developers have to make changes?

The question is self-explanatory. I'd like to ask if the libraries for C++, Python, etc. will of gRPC will automatically use HTTP/3 once it's introduced?
Shuaib Hussain's user avatar
1 vote
0 answers
1k views

gRPC: From Node Js, How to send Array of float by using repeated bytes of protobuff to python

I would like to send a list of float list via nodejs and receive it in python using protobuff's repeated bytes type. The graph helps to understand the problem: I tried with this configuration and ...
TrankilEmil's user avatar
0 votes
1 answer
2k views

How does communication between 2 microservices with grpc work?

Let's say you have an application like a bookstore, and you split it into two simple microservices in the backend -> Microservice 1: Book purchasers (with Accounts) Microservice 2: Book list. Let's ...
TheRoadLessTaken's user avatar
0 votes
0 answers
1k views

grpc client in docker can't reach server on host

I have a node grpc-server running on localhost and my grpc-client is a python flask server. If the client also runs on localhost directly then everything works as intended. Once I host the client(...
David's user avatar
  • 116
0 votes
1 answer
1k views

Are there any examples of multiple grpc services working alongside eachother

Multiple gRPC Services Example Hello, coming from a restful Scala play framework world. I was wondering if anyone knows of any example projects, videos, medium articles related to stringing together ...
Bernardo Arevalo's user avatar