• Kubernetes Submit Queue's avatar
    Merge pull request #56974 from gnufied/speed-up-attach-detach · 30f54b40
    Kubernetes Submit Queue authored
    Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.
    
    Make AWS attach/detach operations faster
    
    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:
    
    ```
    [1, 1.8, 3.24, 5.832000000000001, 10.4976]
    ```
    
    Before it was:
    ```
    [10, 12.0, 14.399999999999999, 17.279999999999998]
    ```
    
    
    /sig aws
    
    ```release-note
    AWS: Make attach/detach operations faster. from 10-12s to 2-6s
    ```
    30f54b40
Name
Last commit
Last update
..
providers Loading commit data...
BUILD Loading commit data...
OWNERS Loading commit data...
README.md Loading commit data...
cloud.go Loading commit data...
doc.go Loading commit data...
plugins.go Loading commit data...