You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the case of dapr it can also benefit the interactions with the workflows API and the GRPC stream that it creates, since this GRPC stream can be idle for long periods of time, and without a keepalive the connection can be unnecessarily closed. Specifically in the case of the workflows API closing this stream can pause the processing of workflows, so its vital to keep it open as long as possible even if idle.
The text was updated successfully, but these errors were encountered:
GRPC keepalive pings is a performance best practice for GRPC clients https://grpc.io/docs/guides/performance/.
In the case of dapr it can also benefit the interactions with the workflows API and the GRPC stream that it creates, since this GRPC stream can be idle for long periods of time, and without a keepalive the connection can be unnecessarily closed. Specifically in the case of the workflows API closing this stream can pause the processing of workflows, so its vital to keep it open as long as possible even if idle.
The text was updated successfully, but these errors were encountered: