Getting Started with Amazon Elastic Container Service (ECS)
Get started with Amazon Elastic Container Service.
We'll cover the following...
Discussing our plan
We’ve seen how to use Google Cloud Run as a CaaS solution in a previous lesson. Let’s see whether we can do something similar in AWS. For that, the best candidate is probably ECS combined with Fargate.
Amazon Elastic Container Service (ECS) is a scheduler and orchestrator of containers in a cluster. Unlike Kubernetes, ECS is proprietary and closed source. We don’t know what is running the containers. Depending on the importance we give to understanding the underlying services, that might or might not matter. Just like other container orchestrators, it has a control plane and agents that take instructions from it. In turn, those agents are in charge of running containers, and quite a few other auxiliary tasks.
ECS aims to make the management of clusters and containers easy. The main ECS concepts are tasks and services. A task is one or more containers that are to be scheduled together by ECS. It is, in a way, equivalent to a Kubernetes Pod.
An ECS service is in charge of fault tolerance, high availability, and scaling. It’s similar to AWS Auto Scaling groups but focused on ECS tasks. It defines the number of tasks that should run across the cluster. It also decides where they should be running (e.g., in which availability zones), and it associates them with load balancers. On top of all that, it can scale tasks automatically based on metrics (e.g., CPU and memory utilization). We could say that it performs similar operations as Kubernetes Scheduler, with Pods, Services, and HorizontalPodAutoscalers.
Note: Given that AWS has Elastic Kubernetes Service (EKS), you might be wondering why we’re providing examples in ECS. The reason is simple. We’re exploring CaaS solutions which abstract underlying technology (e.g., ECS, EKS, etc.). At the same time, AWS is still pushing for ECS and considers it a preferable way to run containers, so we’re just going with the flow and ...