I'm working on improve our infrastructure reliability in AWS and one of my tasks is enabling cross-zone balancing on our ELBs. Our ELBs receives around 20K request by second on rush hours as well as all our instances are in us-east-1d. I've followed the below steps:
- Modified the ASG to start creating instances in us-east-1c and duplicating the desired capacity
- Wait until the new instances created be fully provisioned
- Enable us-east-1c zone in ELB.
When I perform the step 3 receive a spike of Sum ELB 5XXs errors.
I guess that these errors are related to that our recently escalated servers are "cold". There are a way to start sending request to them incrementally?
Thanks.