Skip to content

Commit

Permalink
Reduce DCR minCapacity to 27 instead of 25
Browse files Browse the repository at this point in the history
@jacobwinch made a good point in the review about dropping the capacity in groups of 3 and monitoring at each stage. It's good to modify ASG capacity in groups of 3 so that AWS can evenly distribute across Availability Zones (https://docs.aws.amazon.com/autoscaling/ec2/userguide/auto-scaling-benefits.html#arch-AutoScalingMultiAZ).

#9369 (comment)

Co-authored-by: Jacob Winch <[email protected]>
  • Loading branch information
ioannakok and jacobwinch committed Nov 1, 2023
1 parent 7a1a0e4 commit 5eb07b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotcom-rendering/cdk/bin/cdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ new DotcomRendering(app, 'DotcomRendering-PROD', {
...sharedProps,
app: 'rendering',
stage: 'PROD',
minCapacity: 25,
minCapacity: 27,
maxCapacity: 120,
instanceType: 't4g.small',
});
Expand Down

0 comments on commit 5eb07b1

Please sign in to comment.