There might be times when you need to remove a container instance from your cluster, for example, to perform system updates or to scale down the cluster capacity. Amazon ECS provides the ability to transition a container instance to aDRAINING status. This is referred to ascontainer instance draining. When a container instance is set toDRAINING, Amazon ECS prevents new tasks from being scheduled for placement on the container instance.
Any tasks that are part of a service that are in aPENDING state are stopped immediately. If there is available container instance capacity in the cluster, the service scheduler will start replacement tasks. If there isn't enough container instance capacity, a service event message will be sent indicating the issue.
Tasks that are part of a service on the container instance that are in aRUNNING state are transitioned to aSTOPPED state. The service scheduler attempts to replace the tasks according to the service's deployment type and deployment configuration parameters,minimumHealthyPercent andmaximumPercent. For more information, seeAmazon ECS services andAmazon ECS service definition parameters.
IfminimumHealthyPercent is below 100%, the scheduler can ignoredesiredCount temporarily during task replacement. For example,desiredCount is four tasks, a minimum of 50% allows the scheduler to stop two existing tasks before starting two new tasks. If the minimum is 100%, the service scheduler can't remove existing tasks until the replacement tasks are considered healthy. If tasks for services that do not use a load balancer are in theRUNNING state, they are considered healthy. Tasks for services that use a load balancer are considered healthy if they are in theRUNNING state and the container instance they are hosted on is reported as healthy by the load balancer.
If you use Spot Instances andminimumHealthyPercent is greater than or equal to 100%, then the service will not have enough time to replace the task before the Spot Instance terminates.
ThemaximumPercent parameter represents an upper limit on the number of running tasks during task replacement, which allows you to define the replacement batch size. For example, ifdesiredCount of four tasks, a maximum of 200% starts four new tasks before stopping the four tasks to be drained (provided that the cluster resources required to do this are available). If the maximum is 100%, then replacement tasks can't start until the draining tasks have stopped.
If bothminimumHealthyPercent andmaximumPercent are 100%, then the service can't remove existing tasks, and also cannot start replacement tasks. This prevents successful container instance draining and prevents making new deployments.
Any standalone tasks in thePENDING orRUNNING state are unaffected; you must wait for them to stop on their own or stop them manually. The container instance will remain inDRAINING status.
Amazon ECS Managed Instances termination processes ensure graceful workload transitions while optimizing costs and maintaining system health. The termination system provides three distinct decision paths for instance termination, each with different timing characteristics and customer impact profiles.
Provides direct control over instance removal when you need to remove container instances from service immediately. You runderegister-container-instance with theforce request parameter set to true, This means that immediate termination is required despite any running workloads.
Implements cost optimization through intelligent idle detection that identifies instances no longer serving workloads. The Elastic Workload Service (EWS) implements sophisticated idle detection algorithms that monitor instance utilization and initiate termination for instances that remain idle for configurable periods.
Implements proactive infrastructure management through Node Manager's natural decay policy, where instances are periodically refreshed to ensure they run on the latest platform versions and maintain security posture. Node Manager implements time-to-live (TTL) policies that initiate graceful termination for instances that have reached their maximum operational lifetime.
The termination system implements a two-phase approach that balances workload continuity against infrastructure management requirements.
During this phase, the system implements graceful draining strategies that prioritize workload continuity. Service tasks are gracefully drained through normal Amazon ECS scheduling processes. Standalone tasks continue running because they might complete naturally. The system monitors for all tasks to reach stopped state through natural completion processes.
When graceful completion does not achieve termination objectives within acceptable timeframes, the system implements hard deadline enforcement. The hard deadline is typically set to draining initiation time plus seven days, providing substantial time for graceful completion while maintaining operational requirements. The enforcement includes automatic force deregistration procedures and immediate termination of all remaining tasks regardless of the completion status.
A container instance has completed draining when all tasks running on the instance transition to aSTOPPED state. The container instance remains in aDRAINING state until it is activated again or deleted. You can verify the state of the tasks on the container instance by using theListTasks operation with thecontainerInstance parameter to get a list of tasks on the instance followed by aDescribeTasks operation with the Amazon Resource Name (ARN) or ID of each task to verify the task state.
When you are ready for the container instance to start hosting tasks again, you change the state of the container instance fromDRAINING toACTIVE. The Amazon ECS service scheduler then considers the container instance for task placement again.
The following steps can be used to set a container instance to draining using the new AWS Management Console.
You can also use theUpdateContainerInstancesState API action or theupdate-container-instances-state command to change the status of a container instance toDRAINING.
Open the console athttps://console.aws.amazon.com/ecs/v2.
In the navigation pane, chooseClusters.
On theClusters page, choose a cluster that hosts your instances.
On theCluster :name page, choose theInfrastructure tab. Then, underContainer instances select the check box for each container instance you want to drain.
ChooseActions,Drain.