Re: [grpc-io] gRPC client auto reconnect

2021-11-08 Thread Hemendra Rawat
omes alive? Regards, Hemendra On Monday, November 8, 2021 at 10:12:58 AM UTC-8 golo...@google.com wrote: > Hi Hemendra, > > A gRPC channel will reconnect automatically. > > On Sun, Nov 7, 2021 at 7:59 PM Hemendra Rawat wrote: > >> Hi All, >> >> I'm new to using gRPC

[grpc-io] gRPC client auto reconnect

2021-11-07 Thread Hemendra Rawat
Hi All, I'm new to using gRPC framework! What will happen if the gRPC server process terminates and is restarted after few seconds for e.g. 20 seconds delay ? Will the client side channel auto reconnect or do I need to add specific logic on client side to handle reconnects on server restart?

[grpc-io] Re: Create a GRPC channel from a file descriptor

2021-11-07 Thread Hemendra Rawat
ve file descriptor objects against >> sockets which will be transmit between server process and server which >> doesn't make any sense and why the grpc channel exist ? >> >> On Sunday, November 7, 2021 at 4:17:15 AM UTC+5 Hemendra Rawat wrote: >> >>> H

[grpc-io] Create a GRPC channel from a file descriptor

2021-11-06 Thread Hemendra Rawat
Hi All, I'm new to using gRPC! I'm implementing a gRPC server application that supports live reload of the server with the update version. To achieve this I want to create a unix domain socket and create a gRPC channel using the socket's file descriptor. During hot update of server