0
0
AWScloud~5 mins

ECS cluster concept in AWS - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is an ECS cluster in AWS?
An ECS cluster is a group of servers (called container instances) where your Docker containers run. It helps organize and manage your containers easily.
Click to reveal answer
beginner
How does an ECS cluster relate to container instances?
Container instances are the servers registered to an ECS cluster. They provide the computing resources where containers run.
Click to reveal answer
beginner
Why use an ECS cluster instead of running containers on a single server?
An ECS cluster lets you run containers on many servers, so your app can handle more users and stay running even if one server stops working.
Click to reveal answer
intermediate
What role does the ECS control plane play in a cluster?
The ECS control plane manages the cluster by scheduling containers on instances and monitoring their health, so you don’t have to do it manually.
Click to reveal answer
intermediate
Can an ECS cluster run both EC2 and Fargate tasks?
Yes, an ECS cluster can run tasks on EC2 instances you manage or on Fargate, which is a serverless option where AWS manages the servers.
Click to reveal answer
What is the main purpose of an ECS cluster?
ATo group servers that run containers
BTo store container images
CTo monitor network traffic
DTo create databases
Which component provides computing resources in an ECS cluster?
AECS control plane
BS3 bucket
CContainer instances
DLoad balancer
What happens if one container instance in a cluster fails?
AOther instances keep running containers
BThe cluster automatically stops
CAll containers stop running
DYou lose all data permanently
Which AWS service manages the scheduling of containers in an ECS cluster?
AEC2 Auto Scaling
BRoute 53
CCloudWatch
DECS control plane
Can you run serverless containers in an ECS cluster?
ANo, ECS only supports EC2 instances
BYes, using Fargate
COnly with Lambda functions
DOnly with Elastic Beanstalk
Explain what an ECS cluster is and why it is useful for running containers.
Think about how grouping servers helps manage many containers.
You got /3 concepts.
    Describe the difference between container instances and the ECS control plane in a cluster.
    One provides resources, the other manages tasks.
    You got /3 concepts.