-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Make AWS attach/detach operations faster #56974
Make AWS attach/detach operations faster #56974
Conversation
Most attach/detach operations on AWS finish within 1-4seconds. By using a shorter time interval and higher exponetial factor we can shorten time taken for attach and detach to complete.
3061d33
to
0e6a541
Compare
/sig storage |
/lgtm |
/test pull-kubernetes-unit |
@justinsb can you have a look at this PR? it kinda helps in low latency situations. I measured metrics before and after this PR and now I can see most attach operations completing with 5s. |
/lgtm |
Umm, what's the status of this PR? It misses /retest |
/approve no-issue |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: gnufied, jsafrane, justinsb The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these OWNERS Files:
Approvers can indicate their approval by writing |
/retest Review the full test history for this PR. Silence the bot with an |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
Most attach/detach operations on AWS finish within 1-4seconds.
By using a shorter time interval and higher exponetial
factor we can shorten time taken for attach and detach to complete.
After this change retry interval looks like:
Before it was:
/sig aws