Home > Net >  AWS ECS task definition : Why is my task definitions are active?
AWS ECS task definition : Why is my task definitions are active?

Time:01-18

I'm currently running a ec2 instance with no load balancer

intended to run single instance with no scaling


I have only one task running but all three tasks are Active

enter image description here

enter image description here

I want to know why my all of my task definitions are activated

is it intended or just a default state?

for a backup when latest version of task crushes? or is it for quick scaling?

I can't find a clue for it Doc : Run a standalone task

CodePudding user response:

ACTIVE simply means that you can run a task using the given version. It does not mean that the version is actually running. To make old versions INACTIVE (i.e. not usable) you have to deregister it.

  •  Tags:  
  • Related