All Flashcards
What is the main problem that containers promise to solve?
Using virtual machines results in a non-efficient use of resources, need of multiple guest OS.
And run applications in their own isolated environments.
What does each line of a docker image mean?
Each line creates a new filesystem layer on top of the previous ones
What are Dockerfiles used for?
Used to build docker images
What is the difference between a docker container and a docker image?
They are the same but Docker containers have an additional Read/Write layer
What is the benefit of having multiple containers with a very similar base structure?
Some containers will be able to reuse layers that other containers are using (efficient)
What is a container registry?
Registry or hub of container images - Docker hub
Can a single image generate multiple containers?
Yes, it can generate multiple containers on many different Docker hosts.
What do you use docker files for?
To build Docker container
Are containers portable?
Yes
Mention 3 characteristics/benefits of using containers
Portable.
Lightweight - layers can be reused by multiple containers.
They always run as intended
What do you need to do to allow outside access to the container?
Expose ports
Mention a benefit related to scalability and isolation:
Containers can be used to isolate different tiers of an application or to scale determined services (parts of the application)
What does ECS generally do?
It accepts containers and instructions.
It orchestrates where and how to run those containers.
Where do containers run (in ECS)?
In clusters
In which modes can you use ECS?
EC2 mode and fargate mode
Describe the ECS EC2 mode
where EC2 is the container host running the ECS software
Describe the Fargate mode
AWS manages the container host part and allows you to architect and define your environment using containers
Which registries can be used by ECS?
ECR (elastic container registry - integrated with AWS) and DockerHub.
What is a container definition in ECS?
A container definition gives ECS just enough info about the single container:
- Where the container is
- Pointer to which image to use and ports to be exposed
What does a Task definition do?
Stores the resources used by the task - represents a self contained application
What is defined in a Task definition?
- One container or many
- Resources used by the task - CPU/memory
- Task role - which allows the task to access other AWS resources
Are tasks HA by itself?
No. That is covered by ECS services
What do you need to configure an ECS service?
A service definition
What can you set up in a service definition?
- It can add capacity and resilience
- Can provides a level of scality and high availability
What does a service definition represent?
how many copies of a task you want to run for scaling and HA
What do container definitions provide?
Information about Image and ports
What do task definitions provide?
security (task role), containers, resources
What function does the task role have in a ECS task?
It defines what AWS resources the ECS task can access
What do service definitions provide?
Information about how many copies, HA, restarts - defines availability, scaling
In which environments is recommendable to use ECS services? Test environments, production environments? why?
In production environments for critical services due to the possibility to design a HA and resilient architecture.
Normally not needed in test environments where you only want to perform small tests.
What do ECS clusters manage?
Scheduling, orchestration and placement engine (where to run containers)
EC2 mode - where is it deployed/created?
Within a VPC and its AZs
How do you control scalability in ECS EC2 mode?
Specifying an initial size which will drive an auto scaling group (ASG - controls horizontal scaling with EC2 instances when requirements dictate).
What will ECS handle in EC2 mode?
Number of tasks that will be deployed.
Whether you use services and service definitions.
What is the main factor take into account in the EC2 mode about capacity in the cluster?
At the cluster level you need to worry about the capacity of your cluster (ECS is not a serverless solution) because the container instances is something that is not delivered as a managed service, they are just EC2 instances.
What does ECS EC2 mode offer generally?
ECS using EC2 mode offers a great middle ground, if you want to use containers in your infrastructure but you need to manage the container host, capacity and availability.
What can you do to achieve more cost-effective solutions with ECS EC2 mode?
You can use spot pricing or prepaid EC2 servers.
What is one of the main differences between EC2 mode and fargate mode?
Fargate mode removes management overhead, no need to manage EC2 instances for use as container hosts.
What is Fargate mode?
Fargate is a cluster model, which means you have no servers to manage -> you do not pay for EC2 instances (servers) regardles of whether you are using them or not.
What does ECS manage in Fargate mode?
- Scheduling and Orchestration
- Cluster manager
- Placement engine - handles where to run containers
Does ECS use registries in the Fargate mode? How?
You still use registries for the container images, tasks and service definitions to define tasks and services (define image, ports and how much resources you need)
Describe the Shared Fargate infrastructure platform
Shared Fargate infrastructure platform allows all customers to access from the same pool of resources - it is like EC2, isolates different customer so for them, they are isolated. The resources defined in the task definition are allocated in the fargate shared infrastructure - tasks run in that infrastructure.
Where is a fargate cluster deployed (network-wise)?
In a VPC and its AZs.
How do tasks use the VPC?
Tasks are injected into the VPC. Each tasks is given an elastic network interface which has an IP address within the VPC. They then run like a VPC resource (they can be accessed from the VPC or from the public internet if the VCP is configured that way).
What is the EC2 mode good for?
EC2 mode is good for a large and consistent workload if you are price conscious. This allows for spot pricing and prepayment.
Is EC2 suitable for PROD systems?
Use EC2 just to play around with containers, but almost never for production systems.
What is Fargate great for?
- Have a large workload but are overhead conscious.
- Have small/bursty style workloads - you pay only for the capacity that you use
- Use batch or periodic workloads - you pay what you consume