mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-05 02:09:56 +00:00
AWS: Add exponential backoff to waitForAttachmentStatus()
We should use exponential backoff while waiting for a volume to get attached/ detached to/from a node. This will lower AWS load and reduce its API call throttling.
This commit is contained in:
parent
7d235e147c
commit
92e576e01c
@ -30,6 +30,7 @@ go_library(
|
|||||||
"//pkg/credentialprovider/aws:go_default_library",
|
"//pkg/credentialprovider/aws:go_default_library",
|
||||||
"//pkg/types:go_default_library",
|
"//pkg/types:go_default_library",
|
||||||
"//pkg/util/sets:go_default_library",
|
"//pkg/util/sets:go_default_library",
|
||||||
|
"//pkg/util/wait:go_default_library",
|
||||||
"//pkg/volume:go_default_library",
|
"//pkg/volume:go_default_library",
|
||||||
"//vendor:github.com/aws/aws-sdk-go/aws",
|
"//vendor:github.com/aws/aws-sdk-go/aws",
|
||||||
"//vendor:github.com/aws/aws-sdk-go/aws/awserr",
|
"//vendor:github.com/aws/aws-sdk-go/aws/awserr",
|
||||||
|
@ -48,6 +48,7 @@ import (
|
|||||||
awscredentials "k8s.io/kubernetes/pkg/credentialprovider/aws"
|
awscredentials "k8s.io/kubernetes/pkg/credentialprovider/aws"
|
||||||
"k8s.io/kubernetes/pkg/types"
|
"k8s.io/kubernetes/pkg/types"
|
||||||
"k8s.io/kubernetes/pkg/util/sets"
|
"k8s.io/kubernetes/pkg/util/sets"
|
||||||
|
"k8s.io/kubernetes/pkg/util/wait"
|
||||||
"k8s.io/kubernetes/pkg/volume"
|
"k8s.io/kubernetes/pkg/volume"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -136,16 +137,16 @@ const ServiceAnnotationLoadBalancerSSLPorts = "service.beta.kubernetes.io/aws-lo
|
|||||||
const ServiceAnnotationLoadBalancerBEProtocol = "service.beta.kubernetes.io/aws-load-balancer-backend-protocol"
|
const ServiceAnnotationLoadBalancerBEProtocol = "service.beta.kubernetes.io/aws-load-balancer-backend-protocol"
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// volumeAttachmentStatusTimeout is the maximum time to wait for a volume attach/detach to complete
|
|
||||||
volumeAttachmentStatusTimeout = 30 * time.Minute
|
|
||||||
// volumeAttachmentConsecutiveErrorLimit is the number of consecutive errors we will ignore when waiting for a volume to attach/detach
|
// volumeAttachmentConsecutiveErrorLimit is the number of consecutive errors we will ignore when waiting for a volume to attach/detach
|
||||||
volumeAttachmentStatusConsecutiveErrorLimit = 10
|
volumeAttachmentStatusConsecutiveErrorLimit = 10
|
||||||
// volumeAttachmentErrorDelay is the amount of time we wait before retrying after encountering an error,
|
// volumeAttachmentStatus* is configuration of exponential backoff for
|
||||||
// while waiting for a volume attach/detach to complete
|
// waiting for attach/detach operation to complete. Starting with 10
|
||||||
volumeAttachmentStatusErrorDelay = 20 * time.Second
|
// seconds, multiplying by 1.2 with each step and taking 21 steps at maximum
|
||||||
// volumeAttachmentStatusPollInterval is the interval at which we poll the volume,
|
// it will time out after 31.11 minutes, which roughly corresponds to GCE
|
||||||
// while waiting for a volume attach/detach to complete
|
// timeout (30 minutes).
|
||||||
volumeAttachmentStatusPollInterval = 10 * time.Second
|
volumeAttachmentStatusInitialDelay = 10 * time.Second
|
||||||
|
volumeAttachmentStatusFactor = 1.2
|
||||||
|
volumeAttachmentStatusSteps = 21
|
||||||
)
|
)
|
||||||
|
|
||||||
// Maps from backend protocol to ELB protocol
|
// Maps from backend protocol to ELB protocol
|
||||||
@ -1303,25 +1304,28 @@ func (d *awsDisk) describeVolume() (*ec2.Volume, error) {
|
|||||||
// waitForAttachmentStatus polls until the attachment status is the expected value
|
// waitForAttachmentStatus polls until the attachment status is the expected value
|
||||||
// On success, it returns the last attachment state.
|
// On success, it returns the last attachment state.
|
||||||
func (d *awsDisk) waitForAttachmentStatus(status string) (*ec2.VolumeAttachment, error) {
|
func (d *awsDisk) waitForAttachmentStatus(status string) (*ec2.VolumeAttachment, error) {
|
||||||
// We wait up to 30 minutes for the attachment to complete.
|
backoff := wait.Backoff{
|
||||||
// This mirrors the GCE timeout.
|
Duration: volumeAttachmentStatusInitialDelay,
|
||||||
timeoutAt := time.Now().UTC().Add(volumeAttachmentStatusTimeout).Unix()
|
Factor: volumeAttachmentStatusFactor,
|
||||||
|
Steps: volumeAttachmentStatusSteps,
|
||||||
|
}
|
||||||
|
|
||||||
// Because of rate limiting, we often see errors from describeVolume
|
// Because of rate limiting, we often see errors from describeVolume
|
||||||
// So we tolerate a limited number of failures.
|
// So we tolerate a limited number of failures.
|
||||||
// But once we see more than 10 errors in a row, we return the error
|
// But once we see more than 10 errors in a row, we return the error
|
||||||
describeErrorCount := 0
|
describeErrorCount := 0
|
||||||
|
var attachment *ec2.VolumeAttachment
|
||||||
|
|
||||||
for {
|
err := wait.ExponentialBackoff(backoff, func() (bool, error) {
|
||||||
info, err := d.describeVolume()
|
info, err := d.describeVolume()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
describeErrorCount++
|
describeErrorCount++
|
||||||
if describeErrorCount > volumeAttachmentStatusConsecutiveErrorLimit {
|
if describeErrorCount > volumeAttachmentStatusConsecutiveErrorLimit {
|
||||||
return nil, err
|
// report the error
|
||||||
|
return false, err
|
||||||
} else {
|
} else {
|
||||||
glog.Warningf("Ignoring error from describe volume; will retry: %q", err)
|
glog.Warningf("Ignoring error from describe volume; will retry: %q", err)
|
||||||
time.Sleep(volumeAttachmentStatusErrorDelay)
|
return false, nil
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
describeErrorCount = 0
|
describeErrorCount = 0
|
||||||
@ -1330,7 +1334,6 @@ func (d *awsDisk) waitForAttachmentStatus(status string) (*ec2.VolumeAttachment,
|
|||||||
// Shouldn't happen; log so we know if it is
|
// Shouldn't happen; log so we know if it is
|
||||||
glog.Warningf("Found multiple attachments for volume %q: %v", d.awsID, info)
|
glog.Warningf("Found multiple attachments for volume %q: %v", d.awsID, info)
|
||||||
}
|
}
|
||||||
var attachment *ec2.VolumeAttachment
|
|
||||||
attachmentStatus := ""
|
attachmentStatus := ""
|
||||||
for _, a := range info.Attachments {
|
for _, a := range info.Attachments {
|
||||||
if attachmentStatus != "" {
|
if attachmentStatus != "" {
|
||||||
@ -1349,18 +1352,15 @@ func (d *awsDisk) waitForAttachmentStatus(status string) (*ec2.VolumeAttachment,
|
|||||||
attachmentStatus = "detached"
|
attachmentStatus = "detached"
|
||||||
}
|
}
|
||||||
if attachmentStatus == status {
|
if attachmentStatus == status {
|
||||||
return attachment, nil
|
// Attachment is in requested state, finish waiting
|
||||||
|
return true, nil
|
||||||
}
|
}
|
||||||
|
// continue waiting
|
||||||
if time.Now().Unix() > timeoutAt {
|
|
||||||
glog.Warningf("Timeout waiting for volume %q state: actual=%s, desired=%s", d.awsID, attachmentStatus, status)
|
|
||||||
return nil, fmt.Errorf("Timeout waiting for volume %q state: actual=%s, desired=%s", d.awsID, attachmentStatus, status)
|
|
||||||
}
|
|
||||||
|
|
||||||
glog.V(2).Infof("Waiting for volume %q state: actual=%s, desired=%s", d.awsID, attachmentStatus, status)
|
glog.V(2).Infof("Waiting for volume %q state: actual=%s, desired=%s", d.awsID, attachmentStatus, status)
|
||||||
|
return false, nil
|
||||||
|
})
|
||||||
|
|
||||||
time.Sleep(volumeAttachmentStatusPollInterval)
|
return attachment, err
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deletes the EBS disk
|
// Deletes the EBS disk
|
||||||
|
Loading…
Reference in New Issue
Block a user