Skip to main content

All Questions

Tagged with
0 votes
1 answer
523 views

GRPC python server deployment on Azure app service not working

I've been stuck with this issue in a past couple days so was hoping if I can get someone's insights... I have a python grpc server in docker which works fine locally. The problem is that once its ...
Jinjing Arima's user avatar
1 vote
0 answers
187 views

gRPC Does not run after the docker container is built

I have a container with the following image: FROM python:3.6.2 COPY ./services/api/requirements.txt /myapp RUN pip install -r requirements.txt COPY . /myapp/src WORKDIR /myapp/src/services/api COPY ...
Kia Lia's user avatar
  • 33
0 votes
1 answer
2k views

My gRPC client could not connect to my Containerised gRPC Server hosted on the same machine

I am implementing a gRPC client and server application where my gRPC server is containerised. The idea is to use Unix domain sockets to communicate between the client and the server. My application ...
user1606191'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
1 vote
0 answers
3k views

module 'grpc' has no attribute 'insecure_channel'

I am trying to do a connection through grpc using: import grpc import class def main(): channel = grpc.insecure_channel('localhost:50051') stub = class_pb2_grpc.ClassStub(channel=channel) ...
mrc's user avatar
  • 3,193
9 votes
1 answer
3k views

How to hot reload grpc-server in python?

I'm developing some python microservices with grpc and i'm using docker for the cassandra database and the microservices. Is there a way to setup reload on change within docker-compose? I'm guessing ...
Luis Liz's user avatar
  • 1,969
4 votes
0 answers
471 views

Occasional gRPC unknown errors when running inside docker container

I am trying to connect with a gRPC server running inside a docker. However, I get the below errors sometimes: File "xxx/grpc/_channel.py", line 826, in __call__ return ...
pree's user avatar
  • 2,357
2 votes
1 answer
11k views

gRPC server responds with OS Error, grpc_status: 14

Using a basic gRPC client from the Tensorflow Serving examples to get predictions from a model running on docker I get this response: grpc._channel._Rendezvous: <_Rendezvous of RPC that terminated ...
Mattia's user avatar
  • 21
2 votes
3 answers
10k views

Cannot connect to a gRPC service running in local Docker container

I did read the answer to [this similar question][1] but it didn't help to resolve the issue for me. My setup: a remote gRPC service; a .py client that runs directly on the host. In that ...
H. Desane's user avatar
  • 653