All Questions
9 questions
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 ...
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 ...
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 ...
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(...
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)
...
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 ...
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 ...
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 ...
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 ...