Re: [grpc-io] Pointless for server to stay behind load balancer?

2016-09-22 Thread 'Kun Zhang' via grpc.io
If you are using Java, a proposed new LoadBalancer API should be able to solve your problem: https://github.com/grpc/grpc-java/issues/1600 It will allow LoadBalancer to create multiple connections for the same address. On Thursday, September 22, 2016 at 9:19:56 AM UTC-7, idan...@gmail.com

Re: [grpc-io] Re: gRPC server side access timeout deadline?

2016-09-22 Thread 'Nathaniel Manista' via grpc.io
On Thu, Sep 22, 2016 at 7:39 AM, wrote: > I'm having the same trouble finding documentation and/or examples for how > a server can get the timeout deadline from a client call. > Is it possible ? > In what language are you writing your service-side code? -Nathaniel -- You

Re: [grpc-io] Pointless for server to stay behind load balancer?

2016-09-22 Thread idan . yael
Hi, Found this thread while searching for an answer to the same issue... I am doing the same implementation, having a client that is directed to a kubernetes service (DNS discovery) and I have noticed that all calls are going to the same server. This is a single client with multiple servers

Re: [grpc-io] Re: gRPC server side access timeout deadline?

2016-09-22 Thread Mathias Chouilly
In java On Thu, Sep 22, 2016 at 4:46 PM, Nathaniel Manista wrote: > On Thu, Sep 22, 2016 at 7:39 AM, wrote: > >> I'm having the same trouble finding documentation and/or examples for how >> a server can get the timeout deadline from a client call. >> Is