[grpc-io] Flow Based Load Balancing

2021-11-07 Thread gamer boii
I have a set up where I have 1 gRPC-client serving multiple backend gRPC-servers. Now I want that the packets(flows) in each RPC call are mapped to 1 particular instance of gRPC-server. The mapping could be based on a 5 tuple hash(Source IP, port, Dest IP, port, Protocol) Is there some way to

[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
Hi Thanks for answering my question.Here is my interpretation of your answer 1) My server (A) and client (B) side applications both have grpc support. 2 For my server application (that needs to support live reload), I will create network socket and pass the file descriptor of the client to grpc

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

2021-11-07 Thread Ali Hassan
sorry my mistake i question grpc channeling On Sunday, November 7, 2021 at 11:32:27 AM UTC+5 Ali Hassan wrote: > I think we need many tools to solve this problem. Assume that your > application already written in GRPC format. > 1. Your application does have grpc channel if not then you have