Bajaj_Dk
Bajaj_Dk

Reputation: 75

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

Upvotes: 1

Views: 2038

Answers (1)

Eric Anderson
Eric Anderson

Reputation: 26464

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.

Upvotes: 2

Related Questions