AWS Autoscaling has 2 concepts:
- Cooldown period: From AWS documentation: the cooldown period helps to ensure that your Auto Scaling group doesn't launch or terminate additional instances before the previous scaling activity takes effect. You can configure the length of time based on your instance warmup period or other application needs. Details are here.
- Health check grace period: From AWS documentation: frequently, an Auto Scaling instance that has just come into service needs to warm up before it can pass the health check. Amazon EC2 Auto Scaling waits until the health check grace period ends before checking the health status of the instance. Details are here.
But I can't figure out the difference between them. Can somebody help?
Thanks in advance.