-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server stream progress updates for RPC calls that have long running async operations #264
Comments
@tegefaulkes mentioned that the git cloning process doesn't have an abort system. So if we timeout, it's likely the cloning continues, and the connection is leaked. |
This problem was actually discussed earlier here #74 and also connected to MatrixAI/js-rpc#52 and MatrixAI/js-rpc#57. @tegefaulkes you even said:
However using the grace timer solution is not sufficient. As in MatrixAI/js-rpc#59. That assumed that the agent side would be able to tell the client side a richer error if the client side timed out. However we understand that some operations like vaults clone might just take a long time. In which case, timeouts like the regular 15 seconds shouldn't apply like this. Grace timer can still work in the case of true unary operations. But vaults cloning and pulling are not. They are like download operations that may take arbitrary time. So that's why we can identify these operations as something requiring a streaming call instead. |
I also need to note that the RPC handlers need to properly handle CTX and abortion properly. |
Specification
In the case of
vaults clone
we have a unary call. The call will be active for the duration of the cloning process which in the background is a compound operation of complex streams. For a very large vault we run into a problem with the client level unary call timing out before we can complete the call it is timing out.To fix this we need to change the unary call to a server streaming call. We then need to stream over progress updates to reset the timeout timer to prevent the time out. In the case of
vaults clone
this means sending over the cloning process periodically. Either every 5% or every few seconds or so. Then when the clone is complete we send over details such as the vault name and the new vault ID for that cloned vault. For most cases we can't really know what the absolute progress is. But we can output the amount of arbitrary progress made. This progress must be output onstderr
like any other feedback output.This change to streaming a progress updates need to apply to and client RPC call that waits for a complex or long running task. As far as I can tell this just applies to the vaults cloning, pulling and cross signing claims. But we'll need to investigate this deeper.
Additional context
ErrorQUICConnectionIdleTimeout
andErrorNodeConnectionTransportGenericError
. #198 - This also later triggers the agent crashing when the QUIC connection times out.ErrorRPCTimedOut
#74Tasks
The text was updated successfully, but these errors were encountered: