Bird
0
0

Given an Auto Scaling group with MinSize=1, MaxSize=4, and DesiredCapacity=3, what will be the number of instances after a scale-in event that decreases DesiredCapacity by 2?

medium📝 service behavior Q4 of 15
AWS - Auto Scaling
Given an Auto Scaling group with MinSize=1, MaxSize=4, and DesiredCapacity=3, what will be the number of instances after a scale-in event that decreases DesiredCapacity by 2?
A3 instances
B2 instances
C1 instance
D0 instances
Step-by-Step Solution
Solution:
  1. Step 1: Calculate new DesiredCapacity after scale-in

    DesiredCapacity 3 minus 2 equals 1.
  2. Step 2: Check against MinSize

    New DesiredCapacity 1 equals MinSize 1, so scaling down to 1 instance is allowed.
  3. Final Answer:

    1 instance -> Option C
  4. Quick Check:

    DesiredCapacity respects MinSize after scaling [OK]
Quick Trick: DesiredCapacity never goes below MinSize after scaling [OK]
Common Mistakes:
MISTAKES
  • Forgetting MinSize limit and expecting 0 instances
  • Not subtracting scale-in amount correctly

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes