Skip to content

Commit

Permalink
Merge pull request #30 from airbnb/anton_kirillov--cluster-autoscaler…
Browse files Browse the repository at this point in the history
…-patch-cluster-autoscaler-1.23.1-airbnb0

cluster autoscaler patch cluster autoscaler 1.23.1 airbnb0
  • Loading branch information
akirillov authored Nov 2, 2022
2 parents df8acc3 + 28b6e2e commit 5e755ef
Show file tree
Hide file tree
Showing 39 changed files with 2,481 additions and 150 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ Note: The keys for the tags that you entered don't have values. Cluster Autoscal
"autoscaling:DescribeAutoScalingGroups",
"autoscaling:DescribeAutoScalingInstances",
"autoscaling:DescribeLaunchConfigurations",
"autoscaling:DescribeScalingActivities",
"autoscaling:DescribeTags",
"autoscaling:SetDesiredCapacity",
"autoscaling:TerminateInstanceInAutoScalingGroup"
Expand Down
1 change: 1 addition & 0 deletions cluster-autoscaler/cloudprovider/aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ The following policy provides the minimum privileges necessary for Cluster Autos
"autoscaling:DescribeAutoScalingGroups",
"autoscaling:DescribeAutoScalingInstances",
"autoscaling:DescribeLaunchConfigurations",
"autoscaling:DescribeScalingActivities",
"autoscaling:SetDesiredCapacity",
"autoscaling:TerminateInstanceInAutoScalingGroup",
"ec2:DescribeInstanceTypes"
Expand Down
134 changes: 92 additions & 42 deletions cluster-autoscaler/cloudprovider/aws/auto_scaling_groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,16 @@ import (
)

const (
scaleToZeroSupported = true
placeholderInstanceNamePrefix = "i-placeholder"
scaleToZeroSupported = true
placeholderInstanceNamePrefix = "i-placeholder"
placeholderUnfulfillableStatus = "placeholder-cannot-be-fulfilled"
)

type asgCache struct {
registeredAsgs []*asg
registeredAsgs map[AwsRef]*asg
asgToInstances map[AwsRef][]AwsInstanceRef
instanceToAsg map[AwsInstanceRef]*asg
instanceStatus map[AwsInstanceRef]*string
asgInstanceTypeCache *instanceTypeExpirationStore
mutex sync.Mutex
awsService *awsWrapper
Expand All @@ -62,9 +64,10 @@ type mixedInstancesPolicy struct {
type asg struct {
AwsRef

minSize int
maxSize int
curSize int
minSize int
maxSize int
curSize int
lastUpdateTime time.Time

AvailabilityZones []string
LaunchConfigurationName string
Expand All @@ -75,10 +78,11 @@ type asg struct {

func newASGCache(awsService *awsWrapper, explicitSpecs []string, autoDiscoverySpecs []asgAutoDiscoveryConfig) (*asgCache, error) {
registry := &asgCache{
registeredAsgs: make([]*asg, 0),
registeredAsgs: make(map[AwsRef]*asg, 0),
awsService: awsService,
asgToInstances: make(map[AwsRef][]AwsInstanceRef),
instanceToAsg: make(map[AwsInstanceRef]*asg),
instanceStatus: make(map[AwsInstanceRef]*string),
asgInstanceTypeCache: newAsgInstanceTypeCache(awsService),
interrupt: make(chan struct{}),
asgAutoDiscoverySpecs: autoDiscoverySpecs,
Expand Down Expand Up @@ -121,53 +125,44 @@ func (m *asgCache) parseExplicitAsgs(specs []string) error {

// Register ASG. Returns the registered ASG.
func (m *asgCache) register(asg *asg) *asg {
for i := range m.registeredAsgs {
if existing := m.registeredAsgs[i]; existing.AwsRef == asg.AwsRef {
if reflect.DeepEqual(existing, asg) {
return existing
}
if existing, asgExists := m.registeredAsgs[asg.AwsRef]; asgExists {
if reflect.DeepEqual(existing, asg) {
return existing
}

klog.V(4).Infof("Updating ASG %s", asg.AwsRef.Name)
klog.V(4).Infof("Updating ASG %s", asg.AwsRef.Name)

// Explicit registered groups should always use the manually provided min/max
// values and the not the ones returned by the API
if !m.explicitlyConfigured[asg.AwsRef] {
existing.minSize = asg.minSize
existing.maxSize = asg.maxSize
}
// Explicit registered groups should always use the manually provided min/max
// values and the not the ones returned by the API
if !m.explicitlyConfigured[asg.AwsRef] {
existing.minSize = asg.minSize
existing.maxSize = asg.maxSize
}

existing.curSize = asg.curSize
existing.curSize = asg.curSize

// Those information are mainly required to create templates when scaling
// from zero
existing.AvailabilityZones = asg.AvailabilityZones
existing.LaunchConfigurationName = asg.LaunchConfigurationName
existing.LaunchTemplate = asg.LaunchTemplate
existing.MixedInstancesPolicy = asg.MixedInstancesPolicy
existing.Tags = asg.Tags
// Those information are mainly required to create templates when scaling
// from zero
existing.AvailabilityZones = asg.AvailabilityZones
existing.LaunchConfigurationName = asg.LaunchConfigurationName
existing.LaunchTemplate = asg.LaunchTemplate
existing.MixedInstancesPolicy = asg.MixedInstancesPolicy
existing.Tags = asg.Tags

return existing
}
return existing
}
klog.V(1).Infof("Registering ASG %s", asg.AwsRef.Name)
m.registeredAsgs = append(m.registeredAsgs, asg)
m.registeredAsgs[asg.AwsRef] = asg
return asg
}

// Unregister ASG. Returns the unregistered ASG.
func (m *asgCache) unregister(a *asg) *asg {
updated := make([]*asg, 0, len(m.registeredAsgs))
var changed *asg
for _, existing := range m.registeredAsgs {
if existing.AwsRef == a.AwsRef {
klog.V(1).Infof("Unregistered ASG %s", a.AwsRef.Name)
changed = a
continue
}
updated = append(updated, existing)
if _, asgExists := m.registeredAsgs[a.AwsRef]; asgExists {
klog.V(1).Infof("Unregistered ASG %s", a.AwsRef.Name)
delete(m.registeredAsgs, a.AwsRef)
}
m.registeredAsgs = updated
return changed
return a
}

func (m *asgCache) buildAsgFromSpec(spec string) (*asg, error) {
Expand All @@ -184,7 +179,7 @@ func (m *asgCache) buildAsgFromSpec(spec string) (*asg, error) {
}

// Get returns the currently registered ASGs
func (m *asgCache) Get() []*asg {
func (m *asgCache) Get() map[AwsRef]*asg {
m.mutex.Lock()
defer m.mutex.Unlock()

Expand Down Expand Up @@ -226,6 +221,17 @@ func (m *asgCache) InstancesByAsg(ref AwsRef) ([]AwsInstanceRef, error) {
return nil, fmt.Errorf("error while looking for instances of ASG: %s", ref)
}

func (m *asgCache) InstanceStatus(ref AwsInstanceRef) (*string, error) {
m.mutex.Lock()
defer m.mutex.Unlock()

if status, found := m.instanceStatus[ref]; found {
return status, nil
}

return nil, fmt.Errorf("could not find instance %v", ref)
}

func (m *asgCache) SetAsgSize(asg *asg, size int) error {
m.mutex.Lock()
defer m.mutex.Unlock()
Expand All @@ -248,6 +254,7 @@ func (m *asgCache) setAsgSizeNoLock(asg *asg, size int) error {
}

// Proactively set the ASG size so autoscaler makes better decisions
asg.lastUpdateTime = start
asg.curSize = size

return nil
Expand Down Expand Up @@ -367,6 +374,7 @@ func (m *asgCache) regenerate() error {

newInstanceToAsgCache := make(map[AwsInstanceRef]*asg)
newAsgToInstancesCache := make(map[AwsRef][]AwsInstanceRef)
newInstanceStatusMap := make(map[AwsInstanceRef]*string)

// Build list of known ASG names
refreshNames, err := m.buildAsgNames()
Expand Down Expand Up @@ -403,6 +411,7 @@ func (m *asgCache) regenerate() error {
ref := m.buildInstanceRefFromAWS(instance)
newInstanceToAsgCache[ref] = asg
newAsgToInstancesCache[asg.AwsRef][i] = ref
newInstanceStatusMap[ref] = instance.HealthStatus
}
}

Expand Down Expand Up @@ -431,6 +440,7 @@ func (m *asgCache) regenerate() error {
m.asgToInstances = newAsgToInstancesCache
m.instanceToAsg = newInstanceToAsgCache
m.autoscalingOptions = newAutoscalingOptions
m.instanceStatus = newInstanceStatusMap
return nil
}

Expand All @@ -444,17 +454,57 @@ func (m *asgCache) createPlaceholdersForDesiredNonStartedInstances(groups []*aut

klog.V(4).Infof("Instance group %s has only %d instances created while requested count is %d. "+
"Creating placeholder instances.", *g.AutoScalingGroupName, realInstances, desired)

healthStatus := ""
isAvailable, err := m.isNodeGroupAvailable(g)
if err != nil {
klog.V(4).Infof("Could not check instance availability, creating placeholder node anyways: %v", err)
} else if !isAvailable {
klog.Warningf("Instance group %s cannot provision any more nodes!", *g.AutoScalingGroupName)
healthStatus = placeholderUnfulfillableStatus
}

for i := realInstances; i < desired; i++ {
id := fmt.Sprintf("%s-%s-%d", placeholderInstanceNamePrefix, *g.AutoScalingGroupName, i)
g.Instances = append(g.Instances, &autoscaling.Instance{
InstanceId: &id,
AvailabilityZone: g.AvailabilityZones[0],
HealthStatus: &healthStatus,
})
}
}
return groups
}

func (m *asgCache) isNodeGroupAvailable(group *autoscaling.Group) (bool, error) {
input := &autoscaling.DescribeScalingActivitiesInput{
AutoScalingGroupName: group.AutoScalingGroupName,
}

start := time.Now()
response, err := m.awsService.DescribeScalingActivities(input)
observeAWSRequest("DescribeScalingActivities", err, start)
if err != nil {
return true, err // If we can't describe the scaling activities we assume the node group is available
}

for _, activity := range response.Activities {
asgRef := AwsRef{Name: *group.AutoScalingGroupName}
if a, ok := m.registeredAsgs[asgRef]; ok {
lut := a.lastUpdateTime
if activity.StartTime.Before(lut) {
break
} else if *activity.StatusCode == "Failed" {
klog.Warningf("ASG %s scaling failed with %s", asgRef.Name, *activity)
return false, nil
}
} else {
klog.V(4).Infof("asg %v is not registered yet, skipping DescribeScalingActivities check", asgRef.Name)
}
}
return true, nil
}

func (m *asgCache) buildAsgFromAWS(g *autoscaling.Group) (*asg, error) {
spec := dynamic.NodeGroupSpec{
Name: aws.StringValue(g.AutoScalingGroupName),
Expand Down
120 changes: 120 additions & 0 deletions cluster-autoscaler/cloudprovider/aws/auto_scaling_groups_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ limitations under the License.
package aws

import (
"errors"
"testing"
"time"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/autoscaling"
"github.com/stretchr/testify/assert"
)

Expand Down Expand Up @@ -46,3 +50,119 @@ func validateAsg(t *testing.T, asg *asg, name string, minSize int, maxSize int)
assert.Equal(t, minSize, asg.minSize)
assert.Equal(t, maxSize, asg.maxSize)
}

func TestCreatePlaceholders(t *testing.T) {
registeredAsgName := aws.String("test-asg")
registeredAsgRef := AwsRef{Name: *registeredAsgName}

cases := []struct {
name string
desiredCapacity *int64
activities []*autoscaling.Activity
groupLastUpdateTime time.Time
describeErr error
asgToCheck *string
}{
{
name: "add placeholders successful",
desiredCapacity: aws.Int64(10),
},
{
name: "no placeholders needed",
desiredCapacity: aws.Int64(0),
},
{
name: "DescribeScalingActivities failed",
desiredCapacity: aws.Int64(1),
describeErr: errors.New("timeout"),
},
{
name: "early abort if AWS scaling up fails",
desiredCapacity: aws.Int64(1),
activities: []*autoscaling.Activity{
{
StatusCode: aws.String("Failed"),
StartTime: aws.Time(time.Unix(10, 0)),
},
},
groupLastUpdateTime: time.Unix(9, 0),
},
{
name: "AWS scaling failed event before CA scale_up",
desiredCapacity: aws.Int64(1),
activities: []*autoscaling.Activity{
{
StatusCode: aws.String("Failed"),
StartTime: aws.Time(time.Unix(9, 0)),
},
},
groupLastUpdateTime: time.Unix(10, 0),
},
{
name: "asg not registered",
desiredCapacity: aws.Int64(10),
activities: []*autoscaling.Activity{
{
StatusCode: aws.String("Failed"),
StartTime: aws.Time(time.Unix(10, 0)),
},
},
groupLastUpdateTime: time.Unix(9, 0),
asgToCheck: aws.String("unregisteredAsgName"),
},
}

for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
shouldCallDescribeScalingActivities := true
if *tc.desiredCapacity == int64(0) {
shouldCallDescribeScalingActivities = false
}

asgName := registeredAsgName
if tc.asgToCheck != nil {
asgName = tc.asgToCheck
}

a := &autoScalingMock{}
if shouldCallDescribeScalingActivities {
a.On("DescribeScalingActivities", &autoscaling.DescribeScalingActivitiesInput{
AutoScalingGroupName: asgName,
}).Return(
&autoscaling.DescribeScalingActivitiesOutput{Activities: tc.activities},
tc.describeErr,
).Once()
}

asgCache := &asgCache{
awsService: &awsWrapper{
autoScalingI: a,
ec2I: nil,
},
registeredAsgs: map[AwsRef]*asg{
registeredAsgRef: {
AwsRef: registeredAsgRef,
lastUpdateTime: tc.groupLastUpdateTime,
},
},
}

groups := []*autoscaling.Group{
{
AutoScalingGroupName: asgName,
AvailabilityZones: []*string{aws.String("westeros-1a")},
DesiredCapacity: tc.desiredCapacity,
Instances: []*autoscaling.Instance{},
},
}
asgCache.createPlaceholdersForDesiredNonStartedInstances(groups)
assert.Equal(t, int64(len(groups[0].Instances)), *tc.desiredCapacity)
if tc.activities != nil && *tc.activities[0].StatusCode == "Failed" && tc.activities[0].StartTime.After(tc.groupLastUpdateTime) && asgName == registeredAsgName {
assert.Equal(t, *groups[0].Instances[0].HealthStatus, placeholderUnfulfillableStatus)
} else if len(groups[0].Instances) > 0 {
assert.Equal(t, *groups[0].Instances[0].HealthStatus, "")
}
a.AssertExpectations(t)
})
}
}
Loading

0 comments on commit 5e755ef

Please sign in to comment.