Home > Blockchain >  limit aws ecs(fargate) manually launched tasks
limit aws ecs(fargate) manually launched tasks

Time:07-01

Is there an accepted mechanism, option or setting whereby a manually launched task (not service!) in an AWS would "queue up" if a certain limit is reached. For example, if limit is 10 and an 11th task is manually launched, it waits for one of the previous tasks to stop before running.

CodePudding user response:

No, there is no mechanism like this. You would have to build something like this yourself. You could add task definitions to an SQS queue, and have a Lambda function that pulls a task definition, runs some API calls against ECS to get the number of running tasks, and then launches the task if your limit hasn't been met.

  • Related