Skip to content

Commit

Permalink
Decrease minCapacity of instances to 25
Browse files Browse the repository at this point in the history
`minCapacity` was bumped from 15 to 30 in #8724. After the fronts migration was completed, it seemed that 15 instances weren't holding up with the new traffic we were sending. That was a hotfix and there is upcoming work to split our stacks (#8351) but until we reach this point we would like to see whether we could handle the traffic with 25 instances. This change is part of the research we're doing to optimise how we scale: #9322.

Co-authored-by: George B <[email protected]>
Co-authored-by: Ravi <[email protected]>
  • Loading branch information
3 people committed Oct 31, 2023
1 parent 1e8869b commit 1367910
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: 30,
minCapacity: 25,
maxCapacity: 120,
instanceType: 't4g.small',
});
Expand Down

0 comments on commit 1367910

Please sign in to comment.