ELB Flashcards
What is ELB?
Distribute traffic to multiple targets across multiple AZ’s
How does Health Checks work with ELB?
ELB will check and route only to healthy targets
What layer does ALB operate on?
Layer 7
What is ALB used for?
Servicing HTTP/HTTPS requests and intelligent path routing
What does a Listener consist of?
A protocol and a port,
Rules with conditionals and actions and priority
How do you handle a scenario where you need to send certain url paths to a different region? What LB type should you use?
Use Path Based Patterns, Use a ALB to route
*What protocols does ALB support?
Only HTTP and HTTPS
What do you need to use a HTTPS Listener? How does it work?
You need an SSL server certificate on the LB, so that the LB will terminate the incoming and decrypt the client req before sending to targets
What is a Listener?
Checks for client connections on a protocol and port
What is a target group?
Routes requests to 1 or more targets in the group based on protocol and port
What is the use case for a NLB?
You need extreme performance, low latency, with thousands of concurrent connections for TCP
What layer does NLB operate on?
layer 4
Can you do intelligent based routing with a NLB?
No you cannot, there are no Rules on Listeners
How do you use TLS with NLB?
You need a TLS Listener that will encrypt/decrypt the traffic on the NLB and have the SSL Certificate on the LB
What is a CLB? Why use it?
Legacy LB that lets you balance HTTP/HTTPS or TCP. Enables use of x-forward-header and sticky sessions.