48 KiB
Elastic Container Service
- TL;DR
- How it works
- Resource constraints
- Environment variables
- Storage
- Execute commands in tasks' containers
- Allow tasks to communicate with each other
- Scrape metrics using Prometheus
- Troubleshooting
- Further readings
TL;DR
Tasks are the basic unit of deployment.
They are instances of the set of containers specified in their own task definition.
Tasks model and run one or more containers, much like Pods in Kubernetes.
Containers cannot run on ECS unless encapsulated in a task.
Standalone tasks start a single task, which is meant to perform some work to completion and then stop (much like batch
processes would).
Services run and maintain a defined number of instances of the same task simultaneously, which are meant to stay
active and act as replicas of some service (much like web servers would).
Tasks are executed depending on their launch type and capacity providers:
- On EC2 instances that one owns, manages, and pays for.
- On Fargate (an AWS-managed serverless environment for containers execution).
Unless explicitly restricted or capped, containers in tasks get access to all the CPU and memory capacity available on the host running it.
By default, containers behave like other Linux processes with respect to access to resources like CPU and memory.
Unless explicitly protected and guaranteed, all containers running on the same host share CPU, memory, and other
resources much like normal processes running on that host share those very same resources.
Usage
# List services.
aws ecs list-services --cluster 'clusterName'
# Scale services.
aws ecs update-service --cluster 'clusterName' --service 'serviceName' --desired-count '0'
aws ecs update-service --cluster 'clusterName' --service 'serviceName' --desired-count '10'
# Wait for services to be running.
aws ecs wait services-stable --cluster 'clusterName' --services 'serviceName' …
# Delete services.
# Cannot really be deleted if scaled above 0.
aws ecs delete-service --cluster 'clusterName' --service 'serviceName'
aws ecs delete-service --cluster 'clusterName' --service 'serviceName' --force
# List task definitions.
aws ecs list-task-definitions --family-prefix 'familyPrefix'
# Deregister task definitions.
aws ecs deregister-task-definition --task-definition 'taskDefinitionArn'
# Delete task definitions.
# The task definition must be deregistered.
aws ecs delete-task-definitions --task-definitions 'taskDefinitionArn' …
# List tasks.
aws ecs list-tasks --cluster 'clusterName'
aws ecs list-tasks --cluster 'clusterName' --service-name 'serviceName'
# Get information about tasks.
aws ecs describe-tasks --cluster 'clusterName' --tasks 'taskIdOrArn' …
# Wait for tasks to be running.
aws ecs wait tasks-running --cluster 'clusterName' --tasks 'taskIdOrArn' …
# Access shells on containers in ECS.
aws ecs execute-command \
--cluster 'clusterName' --task 'taskId' --container 'containerName' \
--interactive --command '/bin/bash'
Real world use cases
# Get the ARNs of tasks for specific services.
aws ecs list-tasks --cluster 'testCluster' --service-name 'testService' --query 'taskArns' --output 'text'
# Get the private IP Address of containers.
aws ecs describe-tasks --output 'text' \
--cluster 'testCluster' --tasks 'testTask' \
--query "tasks[].attachments[].details[?(name=='privateDnsName')].value"
# Connect to the private DNS name of containers in ECS.
curl -fs "http://$(\
aws ecs describe-tasks --cluster 'testCluster' --tasks "$(\
aws ecs list-tasks --cluster 'testCluster' --service-name 'testService' --query 'taskArns' --output 'text' \
)" --query "tasks[].attachments[].details[?(name=='privateDnsName')].value" --output 'text' \
):8080"
# Delete services.
aws ecs delete-service --cluster 'testCluster' --service 'testService' --force
# Delete task definitions.
aws ecs list-task-definitions --family-prefix 'testService' --output 'text' --query 'taskDefinitionArns' \
| xargs -n '1' aws ecs deregister-task-definition --task-definition
# Wait for tasks to be running.
aws ecs list-tasks --cluster 'testCluster' --family 'testService' --output 'text' --query 'taskArns' \
| xargs -p aws ecs wait tasks-running --cluster 'testCluster' --tasks
while [[ $(aws ecs list-tasks --query 'taskArns' --output 'text' --cluster 'testCluster' --service-name 'testService') == "" ]]; do sleep 1; done
# Restart tasks.
# No real way to do that, just stop the tasks and new ones will be eventually started in their place.
# To mimic a blue-green deployment, scale the service up by doubling its tasks, then down again to the normal amount.
How it works
Tasks must be registered in task definitions before they can be launched.
Tasks can be executed as Standalone tasks or services.
Whatever the launch type:
-
On launch, a task is created and moved to the
PROVISIONINGstate.
While in this state, ECS needs to find compute capacity for the task and neither the task nor its containers exist. -
ECS selects the appropriate compute capacity for the task based on its launch type or capacity provider configuration.
Tasks will fail immediately should there be not enough compute capacity for the task in the launch type or capacity provider.
When using a capacity provider with managed scaling enabled, tasks that can't be started due to a lack of compute capacity are kept in the
PROVISIONINGstate while ECS provisions the necessary attachments. -
ECS uses the container agent to pull the task's container images.
-
ECS starts the task's containers.
-
ECS moves the task into the
RUNNINGstate.
EC2 launch type
Starts tasks onto registered EC2 instances.
Instances can be registered:
- Manually.
- Automatically, by using the cluster auto scaling feature to dynamically scale the cluster's compute capacity.
Fargate launch type
Starts tasks on dedicated, managed EC2 instances that are not reachable by the users.
Instances are automatically provisioned, configured, and registered to scale one's cluster capacity.
The service takes care itself of all the infrastructure management for the tasks.
Standalone tasks
Refer Amazon ECS standalone tasks.
Meant to perform some work, then stop similarly to batch processes.
Can be executed on schedules using the EventBridge Scheduler.
Services
Refer Amazon ECS services.
Execute and maintain a defined number of instances of the same task simultaneously in a cluster.
Tasks executed in services are meant to stay active until decommissioned, much like web services.
Should any of such tasks fail or stops, the service scheduler will launch another instance of the same task to replace
the one that failed.
One can optionally expose services behind a load balancer to distribute traffic across the tasks that the service manages.
The service scheduler will replace unhealthy tasks should a container health check or a load balancer target group
health check fail.
This depends on the maximumPercent and desiredCount parameters in the service's definition.
If a task is marked unhealthy, the service scheduler will first start a replacement task. Then:
- If the replacement task is
HEALTHY, the service scheduler stops the unhealthy task. - If the replacement task is also
UNHEALTHY, the scheduler will stop either the unhealthy replacement task or the existing unhealthy task to get the total task count equal to thedesiredCountvalue.
Should the maximumPercent parameter limit the scheduler from starting a replacement task first, the scheduler will:
- Stop unhealthy tasks one at a time at random in order to free up capacity.
- Start a replacement task.
The start and stop process continues until all unhealthy tasks are replaced with healthy tasks.
Should the total task count still exceed desiredCount once all unhealthy tasks have been replaced and only healthy
tasks are running, healthy tasks are stopped at random until the total task count equals desiredCount.
The service scheduler includes logic that throttles how often tasks are restarted if they repeatedly fail to start.
If a task is stopped without having entered the RUNNING state, the service scheduler starts to slow down the launch
attempts and sends out a service event message.
This prevents unnecessary resources from being used for failed tasks before one can resolve the issue.
On service update, the service scheduler resumes normal scheduling behavior.
Available service scheduler strategies:
-
REPLICA: places and maintains the desired number of tasks across one's cluster.
By default, tasks are spread across Availability Zones. Use task placement strategies and constraints to customize task placement decisions. -
DAEMON: deploys exactly one task on each active container instance meeting all of the task placement constraints for the task.
There is no need to specify a desired number of tasks, a task placement strategy, or use Service Auto Scaling policies when using this strategy.Fargate does not support the
DAEMONscheduling strategy.
Resource constraints
ECS uses the CPU period and the CPU quota to control the task's CPU hard limits as a whole.
When specifying CPU values in task definitions, ECS translates that value to the CPU period and CPU quota settings that
apply to the cgroup running all the containers in the task.
The CPU quota controls the amount of CPU time granted to a cgroup during a given CPU period. Both settings are expressed
in terms of microseconds.
When the CPU quota equals the CPU period, a cgroup can execute up to 100% on one vCPU (or any other fraction that totals
to 100% for multiple vCPUs). The CPU quota has a maximum of 1000000us, and the CPU period has a minimum of 1ms.
Use these values to set the limits for the tasks' CPU count.
When changing the CPU period without changing the CPU quota, the task will have different effective limits than what is specified in the task definition.
The 100ms period allows for vCPUs ranging from 0.125 to 10.
Task-level CPU and memory parameters are ignored for Windows containers.
The cpu value must be expressed in CPU units or vCPUs.
vCPUs are converted to CPU units when task definitions are registered.
The memory value can be expressed in MiB or GB.
_GB_s are converted to MiB when tasks definitions are registered.
These fields are optional for tasks hosted on EC2.
Such tasks support CPU values between 0.25 and 10 vCPUs. these fields are optional
Task definitions specifying FARGATE as value for the requiresCompatibilities attribute, even if they also specify
the EC2 value, are required to set both settings and to set them to one of the couples specified in the
table.
Fargate task definitions support only those specific values for tasks' CPU and memory.
| CPU units | vCPUs | Memory values | Supported OSes | Notes |
|---|---|---|---|---|
| 256 | .25 | 512 MiB, 1 GB, or 2 GB | Linux | |
| 512 | .5 | Between 1 GB and 4 GB in 1 GB increments | Linux | |
| 1024 | 1 | Between 2 GB and 8 GB in 1 GB increments | Linux, Windows | |
| 2048 | 2 | Between 4 GB and 16 GB in 1 GB increments | Linux, Windows | |
| 4096 | 4 | Between 8 GB and 30 GB in 1 GB increments | Linux, Windows | |
| 8192 | 8 | Between 16 GB and 60 GB in 4 GB increments | Linux | Requires Linux platform >= 1.4.0 |
| 16384 | 16 | Between 32 GB and 120 GB in 8 GB increments | Linux | Requires Linux platform >= 1.4.0 |
The task's settings are separate from the CPU and memory values that can be defined at the container definition
level.
Should both a container-level memory and memoryReservation value be set, the memory value must be higher than
the memoryReservation value.
If specifying memoryReservation, that value is guaranteed to the container and subtracted from the available memory
resources for the container instance that the container is placed on. Otherwise, the value of memory is used.
Environment variables
Refer Amazon ECS environment variables.
ECS sets default environment variables for any task it runs.
$ aws ecs list-tasks --cluster 'devel' --service-name 'prometheus' --query 'taskArns' --output 'text' \
| xargs -I '%%' aws ecs execute-command --cluster 'devel' --task '%%' --container 'prometheus' \
--interactive --command 'printenv'
The Session Manager plugin was installed successfully. Use the AWS CLI to start a session.
Starting session with SessionId: ecs-execute-command-abcdefghijklmnopqrstuvwxyz
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HOSTNAME=ip-172-31-10-103.eu-west-1.compute.internal
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI=/v2/credentials/abcdefgh-1234-abcd-9876-abcdefgh0123
AWS_DEFAULT_REGION=eu-west-1
AWS_EXECUTION_ENV=AWS_ECS_FARGATE
AWS_REGION=eu-west-1
ECS_AGENT_URI=http://169.254.170.2/api/abcdef0123456789abcdef0123456789-1111111111
ECS_CONTAINER_METADATA_URI=http://169.254.170.2/v3/abcdef0123456789abcdef0123456789-1111111111
ECS_CONTAINER_METADATA_URI_V4=http://169.254.170.2/v4/abcdef0123456789abcdef0123456789-1111111111
HOME=/root
TERM=xterm-256color
LANG=C.UTF-8
Exiting session with sessionId: ecs-execute-command-abcdefghijklmnopqrstuvwxyz.
Storage
Refer Storage options for Amazon ECS tasks.
| Volume type | Launch type support | OS support | Persistence | Use cases |
|---|---|---|---|---|
| EBS volumes | EC2 Fargate |
Linux | Can be persisted when used by a standalone task Ephemeral when attached to tasks maintained by a service |
Transactional workloads |
| EFS volumes | EC2 Fargate |
Linux | Persistent | Data analytics Media processing Content management Web serving |
| Docker volumes | EC2 | Linux, Windows | Persistent | Provide a location for data persistence Sharing data between containers |
| Bind mounts | EC2 Fargate |
Linux, Windows | Ephemeral | Data analytics Media processing Content management Web serving |
EBS volumes
Refer Use Amazon EBS volumes with Amazon ECS.
One can attach at most one EBS volume to each ECS task, and it must be a new volume.
One cannot attach existing EBS volume to tasks. However, one can configure a new EBS volume at deployment to use
the snapshot of an existing volume as starting point.
Provisioning volumes from snapshots of EBS volumes that contains partitions is not supported.
EBS volumes can be configured at deployment only for services that use the rolling update deployment type and the Replica scheduling strategy.
Containers in a task will be able to write to the mounted EBS volume only if the container runs as the root user.
ECS automatically adds the AmazonECSCreated and AmazonECSManaged reserved tags to attached volumes.
Should one remove these tags from the volumes, ECS won't be able to manage it anymore.
Volumes attached to tasks which are managed by a service are not preserved, and are always deleted upon task's termination.
One cannot configure EBS volumes for attachment to ECS tasks running on AWS Outposts.
EFS volumes
Refer Use Amazon EFS volumes with Amazon ECS.
Allows tasks with access to the same EFS volumes to share persistent storage.
Tasks must:
- Reference the EFS volumes in the
volumesattribute of their definition. - Reference the defined volumes in the
mountPointsattribute in the containers' specifications.
{
"volumes": [{
"name": "myEfsVolume",
"efsVolumeConfiguration": {
"fileSystemId": "fs-1234",
"rootDirectory": "/path/to/my/data",
"transitEncryption": "ENABLED",
"transitEncryptionPort": integer,
"authorizationConfig": {
"accessPointId": "fsap-1234",
"iam": "ENABLED"
}
}
}],
"containerDefinitions": [{
"name": "container-using-efs",
"image": "amazonlinux:2",
"entryPoint": [
"sh",
"-c"
],
"command": [ "ls -la /mount/efs" ],
"mountPoints": [{
"sourceVolume": "myEfsVolume",
"containerPath": "/mount/efs",
"readOnly": true
}]
}]
}
EFS file systems are supported on
- EC2 nodes using ECS-optimized AMI version 20200319 with container agent version 1.38.0.
- Fargate since platform version 1.4.0 or later (Linux).
Not supported on external instances.
Docker volumes
Refer Use Docker volumes with Amazon ECS.
TODO
Bind mounts
Refer Use bind mounts with Amazon ECS.
TODO
Execute commands in tasks' containers
Refer Using Amazon ECS Exec to access your containers on AWS Fargate and Amazon EC2,
A Step-by-Step Guide to Enabling Amazon ECS Exec,
aws ecs execute-command results in TargetNotConnectedException The execute command failed due to an internal error
and Amazon ECS Exec Checker.
Leverage ECS Exec, which in turn leverages SSM to create a secure channel between one's device and the target container.
It does so by bind-mounting the necessary SSM agent binaries into the container while the ECS (or Fargate) agent starts
the SSM core agent inside the container.
The agent, when invoked, calls SSM to create the secure channel. In order to do so, the container's ECS task must have
the proper IAM privileges for the SSM core agent to call the SSM service.
The SSM agent does not run as a separate container sidecar, but as an additional process inside the application
container.
Refer ECS Execute-Command proposal for details.
Whe whole procedure is transparent and does not compel requirements changes in the container's content.
Requirements:
-
The required SSM components must be available on the EC2 instances hosting the container. Amazon's ECS optimized AMI and Fargate 1.4.0+ include their latest version already.
-
The container's image must have
scriptandcatinstalled.
Required in order to have command logs uploaded correctly to S3 and/or CloudWatch. -
The task's role (not the Task's execution role) must have specific permissions assigned.
Policy example
{ "Version": "2012-10-17", "Statement": [ { "Sid": "RequiredSSMPermissions", "Effect": "Allow", "Action": [ "ssmmessages:CreateControlChannel", "ssmmessages:CreateDataChannel", "ssmmessages:OpenControlChannel", "ssmmessages:OpenDataChannel" ], "Resource": "*" }, { "Sid": "RequiredGlobalCloudWatchPermissions", "Effect": "Allow", "Action": "logs:DescribeLogGroups", "Resource": "*" }, { "Sid": "RequiredSpecificCloudWatchPermissions", "Effect": "Allow", "Action": [ "logs:CreateLogStream", "logs:DescribeLogStreams", "logs:PutLogEvents" ], "Resource": [ "arn:aws:logs:eu-west-1:012345678901:log-group:log-group-name", "arn:aws:logs:eu-west-1:012345678901:log-group:log-group-name:log-stream:log-stream-name" ] }, { "Sid": "OptionalS3PermissionsIfSSMRecordsLogsInBuckets", "Effect": "Allow", "Action": [ "s3:GetEncryptionConfiguration", "s3:PutObject" ], "Resource": [ "arn:aws:s3:::ecs-exec-bucket", "arn:aws:s3:::ecs-exec-bucket/session-logs/*" ] }, { "Sid": "OptionalKMSPermissionsIfSSMRecordsLogsInEncryptedBuckets", "Effect": "Allow", "Action": [ "kms:Decrypt", "kms:GenerateDataKey" ], "Resource": "arn:aws:kms:eu-west-1:012345678901:key/abcdef01-2345-6789-abcd-ef0123456789" }, ] } -
The service or the
run-taskcommand that start the task must have theenable-execute-commandset totrue.Examples
aws ecs run-task … --enable-execute-command aws ecs update-service --cluster 'stg' --service 'grafana' --enable-execute-command --force-new-deploymentnew aws.ecs.Service( 'whatever', { enableExecuteCommand: true, …, }, ); -
Users initiating the execution:
-
Must be allowed the
ecs:ExecuteCommandaction on the ECS cluster.Policy example
{ "Version": "2012-10-17", "Statement": [{ "Effect": "Allow", "Action": "ecs:ExecuteCommand", "Resource": "arn:aws:ecs:eu-west-1:012345678901:cluster/devel", "Condition": { "StringEquals": { "aws:ResourceTag/application": "appName", "StringEquals": { "ecs:container-name": "nginx" } } }, }] }
Procedure:
-
Confirm that the task's
ExecuteCommandAgentstatus isRUNNINGand theenableExecuteCommandattribute is set totrue.Example
aws ecs describe-tasks --cluster 'devel' --tasks 'ef6260ed8aab49cf926667ab0c52c313' --output 'yaml' \ --query 'tasks[0] | { "managedAgents": containers[].managedAgents[?@.name==`ExecuteCommandAgent`][], "enableExecuteCommand": enableExecuteCommand }' aws ecs list-tasks --cluster 'devel' --service-name 'mimir' --query 'taskArns' --output 'text' \ | xargs \ aws ecs describe-tasks --cluster 'devel' \ --output 'yaml' --query 'tasks[0] | { "managedAgents": containers[].managedAgents[?@.name==`ExecuteCommandAgent`][], "enableExecuteCommand": enableExecuteCommand }' \ --tasksenableExecuteCommand: true managedAgents: - lastStartedAt: '2025-01-28T22:16:59.370000+01:00' lastStatus: RUNNING name: ExecuteCommandAgent -
Execute the command.
Example
aws ecs execute-command --interactive --command 'df -h' \ --cluster 'devel' --task 'ef6260ed8aab49cf926667ab0c52c313' --container 'nginx'The Session Manager plugin was installed successfully. Use the AWS CLI to start a session. Starting session with SessionId: ecs-execute-command-zobkrf3qrif9j962h9pecgnae8 Filesystem Size Used Avail Use% Mounted on overlay 31G 12G 18G 40% / tmpfs 64M 0 64M 0% /dev shm 464M 0 464M 0% /dev/shm tmpfs 464M 0 464M 0% /sys/fs/cgroup /dev/nvme1n1 31G 12G 18G 40% /etc/hosts /dev/nvme0n1p1 4.9G 2.1G 2.8G 43% /managed-agents/execute-command tmpfs 464M 0 464M 0% /proc/acpi tmpfs 464M 0 464M 0% /sys/firmware Exiting session with sessionId: ecs-execute-command-zobkrf3qrif9j962h9pecgnae8.
Should one's command invoke a shell, one will gain interactive access to the container.
In this case, all commands and their outputs inside the shell session will be logged to S3 and/or CloudWatch.
The shell invocation command and the user that invoked it will be logged in CloudTrail for auditing purposes as part of
the ECS ExecuteCommand API call.
Should one's command invoke a single command, only the output of the command will be logged to S3 and/or CloudWatch. The command itself will still be logged in CloudTrail as part of the ECS ExecuteCommand API call.
Logging options are configured at the ECS cluster level.
The task's role will need to have IAM permissions to log the output to S3 and/or CloudWatch should the cluster be
configured for the above options. If the options are not configured, then the permissions are not required.
Allow tasks to communicate with each other
Refer How can I allow the tasks in my Amazon ECS services to communicate with each other? and Interconnect Amazon ECS services.
Tasks in a cluster are not normally able to communicate with each other.
Use ECS Service Connect, ECS service discovery or VPC Lattice to allow that.
ECS Service Connect
Refer Use Service Connect to connect Amazon ECS services with short names.
ECS Service Connect provides ECS clusters with the configuration they need for service-to-service discovery, connectivity, and traffic monitoring by building both service discovery and a service mesh in the clusters.
It provides:
- The complete configuration services need to join the mesh.
- A unified way to refer to services within namespaces that does not depend on the VPC's DNS configuration.
- Standardized metrics and logs to monitor all the applications.
The feature creates a virtual network of related services.
The same service configuration can be used across different namespaces to run independent yet identical sets of
applications.
When using Service Connect, ECS dynamically manages Service Connect endpoints for each task as they start and stop. It
does so by injecting the definition of a sidecar proxy container in services. This does not change their task
definition.
Each task created for each registered service will end up running the sidecar proxy container in order, so that the task
is added to the mesh.
Injecting the proxy in the services and not in the task definitions allows for the same task definition to be reused to
run identical applications in different namespaces with different Service Connect configurations.
It also means that, since the proxy is not in the task definition, it cannot be configured by users.
Service Connect only interconnects services within the same namespace.
One can add one Service Connect configuration to new or existing services.
When that happens, ECS creates:
- A Service Connect endpoint in the namespace.
- A new deployment in the service that replaces the tasks that are currently running with ones equipped with the proxy.
Existing tasks and other applications can continue to connect to existing endpoints and external applications.
If a service using Service Connect adds tasks by scaling out, new connections from clients will be load balanced between
all of the running tasks. If the service is updated, new connections from clients will be load balanced only between
the new version of the tasks.
The list of endpoints in the namespace changes every time any service in that namespace is deployed.
Existing tasks, and replacement tasks, continue to behave the same as they did after the most recent deployment.
Existing tasks cannot resolve and connect to new endpoints. Only tasks with a Service Connect configuration in the
same namespace and that start running after this deployment can.
Applications can use short names and standard ports to connect to services in the same or other clusters.
This includes connecting across VPCs in the same AWS Region.
By default, the Service Connect proxy listens on the containerPort specified in the task definition's port
mapping.
The service's Security Group rules must allow incoming traffic to this port from the subnets where clients will run.
The proxy will consume some of the resources allocated to their task.
It is recommended:
- Adding at least 256 CPU units and 64 MiB of memory to the task's resources.
- [If expecting tasks to receive more than 500 requests per second at their peak load] Increasing the sidecar's resources addition to at least 512 CPU units.
- [If expecting to create more than 100 Service Connect services in the namespace, or 2000 tasks in total across all
ECS services within the namespace], Adding 128 MiB extra of memory for the Service Connect proxy container.
One must do this in every task definition that is used by any of the ECS services in the namespace.
It is recommended one sets the log configuration in the Service Connect configuration.
Proxy configuration:
- Tasks in a Service Connect endpoint are load balanced in a
round-robinstrategy. - The proxy uses data about prior failed connections to avoid sending new connections to the tasks that had the failed
connections for some time.
At the time of writing, failing 5 or more connections in the last 30 seconds makes the proxy avoid that task for 30 to 300 seconds. - Connection that pass through the proxy and fail are retried, but avoid the host that failed the previous
connection.
This ensures that each connection through Service Connect doesn't fail for one-off reasons. - Wait a maximum time for applications to respond.
The default timeout value is 15 seconds, but it can be updated.
Limitations
Service Connect does not support:
- ECS'
hostnetwork mode. - Windows containers.
- HTTP 1.0.
- Standalone tasks and any task created by other resources than services.
- Services using the
blue/greenorexternal deploymenttypes. - External container instance for ECS Anywhere.
- PPv2.
- Task definitions that set container memory limits. It is required to set the task memory limit though.
Tasks using the bridge network mode and Service Connect will not support the hostname container definition
parameter.
Each service can belong to only one namespace.
Service Connect can use any AWS Cloud Map namespace, as long as they are in the same Region and AWS account.
Service Connect does not delete namespaces when clusters are deleted.
One must delete namespaces in AWS Cloud Map themselves.
Requirements
- Tasks running in Fargate must use the Fargate Linux platform version 1.4.0 or higher.
- The ECS agent on container instances must be version 1.67.2 or higher.
- Container instances must run the ECS-optimized Amazon Linux 2023 AMI version
20230428or later, or the ECS-optimized Amazon Linux 2 AMI version2.0.20221115or later.
These versions equip the Service Connect agent in addition to the ECS container agent. - Container instances must have the
ecs:Pollpermission assigned to them for resourcearn:aws:ecs:{{region}}:{{accountId}}:task-set/cluster/*.
If using theecsInstanceRoleorAmazonEC2ContainerServiceforEC2RoleIAM roles, there is no need for additional permissions. - Services must use the rolling deployment strategy, as it is the only one supported.
- Task definitions must set their task's memory limit.
- The task memory limit must be set to a number greater than the sum of the container memory limits.
The CPU and memory in the task limits that aren't allocated in the container limits will be used by the Service Connect proxy container and other containers that don't set container limits. - All endpoints must be unique within their namespace.
- All discovery names must be unique within their namespace.
- One must redeploy existing services before applications can resolve the new endpoints.
New endpoints that are added to the namespace after the service's most recent deployment will not be added to the proxy configuration. - Application Load Balancer traffic defaults to routing through the Service Connect agent in
awsvpcnetwork mode.
If one wants non-service traffic to bypass the Service Connect agent, one will need to use theingressPortOverrideparameter in their Service Connect service configuration.
Procedure:
-
Configure the ECS cluster to use the desired AWS Cloud Map namespace.
Simplified process
Create the cluster with the desired name for the AWS Cloud Map namespace, and specify that name for the namespace when asked.
ECS will create a new HTTP namespace with the necessary configuration.
As reminder, Service Connect doesn't use or create DNS hosted zones in Amazon Route 53. FIXME: check this -
Configure port names in the server services' task definitions for all the port mappings that the services will expose in Service Connect.
containerDefinitions: [ { "name": "postgres", "protocol": "tcp", "containerPort": 5432, }, … ] -
Configure the server services to create Service Connect endpoints within the namespace.
"serviceConnectConfiguration": { "enabled": true, "namespace": "ecs-dev-cluster", "services": [ { "portName": "postgres", "discoveryName": "postgres", "clientAliases": [{ "port": 5432, "dnsName": "pgsql" }] } ] }, -
Deploy the services.
This will create the endpoints AWS Cloud Map namespace used by the cluster.
ECS also injects the Service Connect proxy container in each task. -
Deploy the client applications as ECS services.
ECS connects them to the Service Connect endpoints through the Service Connect proxy in each task. -
Applications only use the proxy to connect to Service Connect endpoints.
No additional configuration is required to use the proxy. -
[optionally] Monitor traffic through the Service Connect proxy in Amazon CloudWatch.
ECS service discovery
Service discovery helps manage HTTP and DNS namespaces for ECS services.
ECS automatically registers and de-registers the list of launched tasks to AWS Cloud Map.
Cloud Map maintains DNS records that resolve to the internal IP addresses of one or more tasks from registered
services.
Other services in the same VPC can use such DNS records to send traffic directly to containers using their internal
IP addresses.
This approach provides low latency since traffic travels directly between the containers.
ECS service discovery is a good fit when using the awsvpc network mode, where:
- Each task is assigned its own, unique IP address.
- That IP address is an
Arecord. - Each service can have a unique security group assigned.
When using bridged network mode, A records are no longer enough for service discovery and one must also use a
SRV DNS record. This is due to containers sharing the same IP address and having ports mapped randomly.
SRV records can keep track of both IP addresses and port numbers, but requires applications to be appropriately
configured.
Service discovery supports only the A and SRV DNS record types.
DNS records are automatically added or removed as tasks start or stop for ECS services.
Until ECS registers the tasks, Containers in them might complain about being unable to resolve the services they are using.
DNS records have a TTL and it might happen that tasks died before this ended.
One must implement extra logic in one's applications, so that they can handle retries and deal with connection
failures when the records are not yet updated.
See also Use service discovery to connect Amazon ECS services with DNS names.
Procedure:
-
Create the desired AWS Cloud Map namespace.
-
Create the desired Cloud Map service in the namespace.
-
Configure ECS services to use the Cloud Map service.
"serviceRegistries": [{ "registryArn": "arn:aws:servicediscovery:eu-west-1:012345678901:service/srv-uuf33b226vw93biy" }],
VPC Lattice
Managed application networking service that customers can use to observe, secure, and monitor applications built across AWS compute services, VPCs, and accounts without having to modify their code.
VPC Lattice technically replaces the need for Application Load Balancers by leveraging target groups themselves.
Target groups which are a collection of compute resources, and can refer EC2 instances, IP addresses, Lambda functions,
and Application Load Balancers.
Listeners are used to forward traffic to specified target groups when the conditions are met.
ECS also automatically replaces unhealthy tasks.
ECS tasks can be enabled as IP targets in VPC Lattice by associating their services with a VPC Lattice target
group.
ECS automatically registers tasks to the VPC Lattice target group when they are launched for registered services.
Deployments might take longer when using VPC Lattice due to the extent of changes required.
See also What is Amazon VPC Lattice? and its Amazon VPC Lattice pricing.
Scrape metrics using Prometheus
Refer Prometheus service discovery for AWS ECS and Scraping Prometheus metrics from applications running in AWS ECS.
Prometheus is not currently capable to automatically discover ECS components like services or tasks.
Solutions:
-
Push the metrics instead by instrumenting the applications, or using tools like AWS Distro for OpenTelemetry.
-
Use a load balancer to access the service, and point Prometheus to the load balancer.
Useful if needing to just monitor the availability of services.
The load balancer will take care of monitoring the tasks in the target group.The scrape request needs to go through the load balancer.
This will cost money. -
Target a lambda that returns a 308 Permanent Redirect code with the current IP addresses of the requested tasks.
-
Use dynamic service discovery mechanisms like AWS Cloud Map.
Refer Metrics collection from Amazon ECS using Amazon Managed Service for Prometheus and aws-cloudmap-prometheus-sd.
Troubleshooting
Invalid 'cpu' setting for task
Refer Troubleshoot Amazon ECS task definition invalid CPU or memory errors and Resource constraints.
Cause
One specified an invalid cpu or memory value for the task when registering a task definition using ECS's API or the
AWS CLI.
Should the task definition specify FARGATE as value for the requiresCompatibilities attribute, the resource values
must be one of the specific pairs supported by Fargate.
Solution
Specify a supported value for the task CPU and memory in your task definition.
Further readings
- Amazon Web Services
- Amazon ECS task lifecycle
- AWS' CLI
- Troubleshoot Amazon ECS deployment issues
- Storage options for Amazon ECS tasks
- EBS
- EFS
- Amazon ECS Exec Checker
- ECS Execute-Command proposal
- What Is AWS Cloud Map?
Sources
- Identity and Access Management for Amazon Elastic Container Service
- Amazon ECS task role
- How Amazon Elastic Container Service works with IAM
- Troubleshoot Amazon ECS task definition invalid CPU or memory errors
- Use Amazon EBS volumes with Amazon ECS
- Attach EBS volume to AWS ECS Fargate
- Guide to Using Amazon EBS with Amazon ECS and AWS Fargate
- Amazon ECS task definition differences for the Fargate launch type
- How Amazon ECS manages CPU and memory resources
- Exposing multiple ports for an AWS ECS service
- Use Amazon EFS volumes with Amazon ECS
- Amazon ECS services
- Amazon ECS standalone tasks
- Using Amazon ECS Exec to access your containers on AWS Fargate and Amazon EC2
- A Step-by-Step Guide to Enabling Amazon ECS Exec
aws ecs execute-commandresults inTargetNotConnectedExceptionThe execute command failed due to an internal error- Prometheus service discovery for AWS ECS
- Metrics collection from Amazon ECS using Amazon Managed Service for Prometheus
- AWS Distro for OpenTelemetry
- aws-cloudmap-prometheus-sd
- Scraping Prometheus metrics from applications running in AWS ECS
- How can I allow the tasks in my Amazon ECS services to communicate with each other?
- Interconnect Amazon ECS services
- Amazon ECS Service Discovery