A company is running a web application on EC2 instances behind an Application Load Balancer (ALB). The instances are in an Auto Scaling group with a dynamic scaling policy based on average CPU utilization. During a flash sale, the application experiences a sudden spike in traffic, but the Auto Scaling group does not scale out quickly enough, causing some requests to fail. Which solution would improve the scaling responsiveness?
Trap 1: Increase the cooldown period for the dynamic scaling policy.
Increasing cooldown delays scaling actions, making it worse.
Trap 2: Decrease the cooldown period for the dynamic scaling policy.
Decreasing cooldown helps react faster but does not proactively prepare for the spike.
Trap 3: Disable scale-in to prevent the Auto Scaling group from terminating…
Disabling scale-in does not help with scaling out more quickly.
- A
Increase the cooldown period for the dynamic scaling policy.
Why wrong: Increasing cooldown delays scaling actions, making it worse.
- B
Add a scheduled scaling action to increase capacity before the flash sale.
Scheduled scaling proactively adds capacity ahead of known traffic spikes.
- C
Decrease the cooldown period for the dynamic scaling policy.
Why wrong: Decreasing cooldown helps react faster but does not proactively prepare for the spike.
- D
Disable scale-in to prevent the Auto Scaling group from terminating instances during the sale.
Why wrong: Disabling scale-in does not help with scaling out more quickly.