Skip to content

Commit

Permalink
Merge pull request #689 from weaveworks/fix-567
Browse files Browse the repository at this point in the history
overcome rate limiting of ListStacks calls
  • Loading branch information
errordeveloper authored Apr 2, 2019
2 parents 887f097 + 180a5ec commit 8b2e2d6
Show file tree
Hide file tree
Showing 5 changed files with 124 additions and 19 deletions.
28 changes: 24 additions & 4 deletions pkg/cfn/manager/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,9 @@ func (c *StackCollection) ListStacks(nameRegex string, statusFilters ...string)
if err != nil {
return nil, errors.Wrap(err, "cannot list stacks")
}
input := &cloudformation.ListStacksInput{}
input := &cloudformation.ListStacksInput{
StackStatusFilter: defaultStackStatusFilter(),
}
if len(statusFilters) > 0 {
input.StackStatusFilter = aws.StringSlice(statusFilters)
}
Expand All @@ -201,9 +203,27 @@ func (c *StackCollection) ListStacks(nameRegex string, statusFilters ...string)
return stacks, nil
}

// ListReadyStacks gets all of CloudFormation stacks with READY status
func (c *StackCollection) ListReadyStacks(nameRegex string) ([]*Stack, error) {
return c.ListStacks(nameRegex, cloudformation.StackStatusCreateComplete)
func defaultStackStatusFilter() []*string {
return aws.StringSlice(
[]string{
cloudformation.StackStatusCreateInProgress,
cloudformation.StackStatusCreateFailed,
cloudformation.StackStatusCreateComplete,
cloudformation.StackStatusRollbackInProgress,
cloudformation.StackStatusRollbackFailed,
cloudformation.StackStatusRollbackComplete,
cloudformation.StackStatusDeleteInProgress,
cloudformation.StackStatusDeleteFailed,
cloudformation.StackStatusUpdateInProgress,
cloudformation.StackStatusUpdateCompleteCleanupInProgress,
cloudformation.StackStatusUpdateComplete,
cloudformation.StackStatusUpdateRollbackInProgress,
cloudformation.StackStatusUpdateRollbackFailed,
cloudformation.StackStatusUpdateRollbackCompleteCleanupInProgress,
cloudformation.StackStatusUpdateRollbackComplete,
cloudformation.StackStatusReviewInProgress,
},
)
}

// DeleteStack kills a stack by name without waiting for DELETED status
Expand Down
7 changes: 1 addition & 6 deletions pkg/eks/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,12 +207,6 @@ func (c *ClusterProvider) CheckAuth() error {
c.Status.iamRoleARN = *output.Arn
logger.Debug("role ARN for the current session is %q", c.Status.iamRoleARN)
}
{
input := &cloudformation.ListStacksInput{}
if _, err := c.Provider.CloudFormation().ListStacks(input); err != nil {
return errors.Wrap(err, "checking AWS CloudFormation access – cannot list stacks")
}
}
return nil
}

Expand Down Expand Up @@ -305,6 +299,7 @@ func (c *ClusterProvider) newSession(spec *api.ProviderConfig, endpoint string,
}

config = config.WithCredentialsChainVerboseErrors(true)
config = request.WithRetryer(config, newLoggingRetryer())
if logger.Level >= api.AWSDebugLevel {
config = config.WithLogLevel(aws.LogDebug |
aws.LogDebugWithHTTPBody |
Expand Down
2 changes: 1 addition & 1 deletion pkg/eks/eks.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ func (c *ClusterProvider) doGetCluster(clusterName string, printer printers.Outp

if logger.Level >= 4 {
spec := &api.ClusterConfig{Metadata: &api.ClusterMeta{Name: clusterName}}
stacks, err := c.NewStackManager(spec).ListReadyStacks(fmt.Sprintf("^(eksclt|EKS)-%s-.*$", clusterName))
stacks, err := c.NewStackManager(spec).ListStacks(fmt.Sprintf("^(eksclt|EKS)-%s-.*$", clusterName))
if err != nil {
return errors.Wrapf(err, "listing CloudFormation stack for %q", clusterName)
}
Expand Down
37 changes: 29 additions & 8 deletions pkg/eks/eks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,43 @@ var _ = Describe("Eks", func() {
Expect(p.MockEKS().AssertNumberOfCalls(GinkgoT(), "DescribeCluster", 1)).To(BeTrue())
})

It("should not call AWS CFN ListStackPages", func() {
It("should not call AWS CFN ListStacksPages", func() {
Expect(p.MockCloudFormation().AssertNumberOfCalls(GinkgoT(), "ListStacksPages", 0)).To(BeTrue())
})
})

Context("and debug log level", func() {
var (
expectedStatusFilter string
)

BeforeEach(func() {
expectedStatusFilter = "CREATE_COMPLETE"
expectedStatusFilter := []string{
"CREATE_IN_PROGRESS",
"CREATE_FAILED",
"CREATE_COMPLETE",
"ROLLBACK_IN_PROGRESS",
"ROLLBACK_FAILED",
"ROLLBACK_COMPLETE",
"DELETE_IN_PROGRESS",
"DELETE_FAILED",
"UPDATE_IN_PROGRESS",
"UPDATE_COMPLETE_CLEANUP_IN_PROGRESS",
"UPDATE_COMPLETE",
"UPDATE_ROLLBACK_IN_PROGRESS",
"UPDATE_ROLLBACK_FAILED",
"UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS",
"UPDATE_ROLLBACK_COMPLETE",
"REVIEW_IN_PROGRESS",
}

logger.Level = 4

p.MockCloudFormation().On("ListStacksPages", mock.MatchedBy(func(input *cfn.ListStacksInput) bool {
return *input.StackStatusFilter[0] == expectedStatusFilter
matches := 0
for i := range input.StackStatusFilter {
if *input.StackStatusFilter[i] == expectedStatusFilter[i] {
matches++
}
}
return matches == len(expectedStatusFilter)
}), mock.Anything).Return(nil)
})

Expand All @@ -99,7 +120,7 @@ var _ = Describe("Eks", func() {
Expect(p.MockEKS().AssertNumberOfCalls(GinkgoT(), "DescribeCluster", 1)).To(BeTrue())
})

It("should have called AWS CFN ListStackPages", func() {
It("should have called AWS CFN ListStacksPages", func() {
Expect(p.MockCloudFormation().AssertNumberOfCalls(GinkgoT(), "ListStacksPages", 1)).To(BeTrue())
})
})
Expand Down Expand Up @@ -151,7 +172,7 @@ var _ = Describe("Eks", func() {
Expect(p.MockEKS().AssertNumberOfCalls(GinkgoT(), "DescribeCluster", 1)).To(BeTrue())
})

It("should not call AWS CFN ListStackPages", func() {
It("should not call AWS CFN ListStacksPages", func() {
Expect(p.MockCloudFormation().AssertNumberOfCalls(GinkgoT(), "ListStacksPages", 0)).To(BeTrue())
})

Expand Down
69 changes: 69 additions & 0 deletions pkg/eks/logging_retryer.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/*
Copyright 2016 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package eks

import (
"fmt"
"time"

"github.com/kris-nova/logger"

"github.com/aws/aws-sdk-go/aws/client"
"github.com/aws/aws-sdk-go/aws/request"
)

const maxRetries = 13

// LoggingRetryer adds some logging when we are retrying, so we have some idea what is happening
// Right now it is very basic - e.g. it only logs when we retry (so doesn't log when we fail due to too many retries)
// It was copied from k8s.io/kops/upup/pkg/fi/cloudup/awsup/logging_retryer.go; the original version used glog, and
// didn't export the constructor
type LoggingRetryer struct {
client.DefaultRetryer
}

var _ request.Retryer = &LoggingRetryer{}

func newLoggingRetryer() *LoggingRetryer {
return &LoggingRetryer{
client.DefaultRetryer{NumMaxRetries: maxRetries},
}
}

// RetryRules extends on DefaultRetryer.RetryRules
func (l LoggingRetryer) RetryRules(r *request.Request) time.Duration {
duration := l.DefaultRetryer.RetryRules(r)

service := r.ClientInfo.ServiceName
name := "?"
if r.Operation != nil {
name = r.Operation.Name
}
methodDescription := service + "/" + name

var errorDescription string
if r.Error != nil {
// We could check aws error Code & Message, but we expect them to be in the string
errorDescription = fmt.Sprintf("%v", r.Error)
} else {
errorDescription = fmt.Sprintf("%d %s", r.HTTPResponse.StatusCode, r.HTTPResponse.Status)
}

logger.Debug("retryable error (%s) from %s - will retry after delay of %v", errorDescription, methodDescription, duration)

return duration
}

0 comments on commit 8b2e2d6

Please sign in to comment.