Application Load balancer with ECS

0

Hello, I have my dockerize app and I deployed that with ECS. Now I have one doubt, I choose the number of instances two, and the number of tasks also two, and it works well. My question is If I terminate one instance then in the target group, two tasks work on a single instance and after a couple of minutes new instance is automatically created but in the target group both task uses that first instance only. And in this case, the second instance is created successfully but ALB not using the second instance. Can someone guide me? Thanks

已提問 1 年前檢視次數 347 次
1 個回答
2
已接受的答案

When using ECS with EC2 tasks do not re-balance automatically after a failure event unless autoscaling tells it to for some other reason (eg responding to performance). Check out this sample code which uses Cloudwatch events to modify a service back to 1 desired count and then back to 2 to respread the tasks.

You might also want to consider using fargate instead of EC2. You can configure fargate to use all the possible AZ's in a region (usually 3) so if one task fails due to an AZ issue it will be restarted in a different AZ to the other task within the service by default

AWS
專家
Peter_G
已回答 1 年前
  • Does it mean, till any of the failures the second EC2 instance will be running idle?

  • till any failure or if autoscaling tells ecs to scale up more than 2. EG you could change the desired count to 3 and then back down to 2 for a rebalance

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南