ECS Flashcards

1
Q

How can containers access ports on the host container?

A

Port mappings are specified as part of the container definition, which can be configured in the task definition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What information is in the ECS task definition?

A
  • Image Name
  • Port Binding for Container and Host
  • Memory and CPU required
  • Environment variables
  • Networking information
  • IAM Role
  • Logging configuration (ex CloudWatch)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How many containers can you define per task definition?

A

10

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Explain load balancing with EC2 launch type

A
  • you get a dynamic host(instance) port mapping if you only define the container(task) port in the task definition
  • the ALB is able to find the right port on your EC2 instances
  • you must set up the Security Group on the EC2 instance to allow any port from the ALB security group (i.e., has to allow the ALB to connect via any port)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How many roles per task definition should we have?

A

one

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the hierarchy of stuff in ECS?

A

Service
└── Task Definition (specific version)
└── Container Definition(s)
└── Running Containers (in Tasks)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are some common patterns for ECS task definitions with multiple containers?

A
  1. Main Application + Sidecar = web app container + logger container sidecar
  2. Web Application + Redis Cache: web app needs local caching so both containers need to be on the same host
  3. Application + monitoring agent need to be on same host
  4. API + database proxy: db connection pooling needs to be close to the app
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the key reasons to use multiple containers in a task?

A

Containers need to share network namespace

Containers need to share storage volumes

Containers need to be scheduled together

Containers have a strong lifecycle dependency

Containers need low-latency communication

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

When should you not use multiple containers?

A

Independent services that can scale separately

Services that don’t need to share resources

Services that can tolerate network latency

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

With ECS, if you prefer be charged per running task rather than running container instances, which model should you use?

A

Fargate

How well did you know this?
1
Not at all
2
3
4
5
Perfectly