Search code examples
architecturegrpcgrpc-python

Sending grpc Requests without waiting for response?


I just want to invoke a grpc method and exit from the process, I don't need the response back to the client.

My use case is like.

AWS Lambda will invoke only invoke multiple grpc request and exit without waiting for the response


Solution

  • gRPC on-the-wire does not support fire-and-forget RPCs. The client is free to ignore the results and the server can respond immediately before actually processing the request.