AI Features

Load Balancing in AWS: Part II

Build on your understanding of ELBs by exploring other types of load balancers.

Let’s dive into AWS’s Network, Classic, and Gateway Load Balancers.

Network Load Balancers

A Network Load Balancer (NLB) works on the fourth layer of the Open Systems Interconnection (OSI) Model for transmission control protocol (TCP) and user datagram protocol (UDP) connections. Just like ALB, NLB has three components:

  • A listener checks for connection requests from clients and forwards requests to target groups.

  • A load balancer acts as a single point of contact for customers.

  • Target groups forward requests to one or more registered targets using the protocol and port number we specify. We can also configure health checks per target group. ...

Ask