A team runs a stateless web app on Amazon EC2 behind an Application Load Balancer. During traffic spikes, new EC2 instances take several minutes to finish bootstrapping before they can receive traffic. Which Auto Scaling configuration most directly reduces the time until additional capacity is available?
Trap 1: Increase the ALB target group deregistration delay.
Deregistration delay affects how long old instances stay in service during scale-in, not how quickly new instances become available.
Trap 2: Reduce the Auto Scaling group minimum size to one instance.
Lowering minimum capacity can reduce cost, but it does not make additional instances available faster during demand spikes.
Trap 3: Replace the Application Load Balancer with a Network Load Balancer.
A Network Load Balancer does not solve instance bootstrapping time and is not the main lever for faster scale-out readiness.
- A
Increase the ALB target group deregistration delay.
Why wrong: Deregistration delay affects how long old instances stay in service during scale-in, not how quickly new instances become available.
- B
Use an Auto Scaling warm pool so pre-initialized instances are ready to enter service.
Warm pools keep instances pre-launched and initialized, which reduces the time needed to add capacity during spikes.
- C
Reduce the Auto Scaling group minimum size to one instance.
Why wrong: Lowering minimum capacity can reduce cost, but it does not make additional instances available faster during demand spikes.
- D
Replace the Application Load Balancer with a Network Load Balancer.
Why wrong: A Network Load Balancer does not solve instance bootstrapping time and is not the main lever for faster scale-out readiness.