0
0
AWScloud~10 mins

Why load balancing matters in AWS - Visual Breakdown

Choose your learning style9 modes available
Process Flow - Why load balancing matters
User sends request
Load Balancer receives request
Check server health
Distribute request to healthy server
Server processes request
Response sent back to user
Requests from users go to a load balancer, which checks server health and sends requests only to healthy servers, ensuring smooth and reliable service.
Execution Sample
AWS
User -> Load Balancer -> Server1 or Server2 -> Response
Shows how a load balancer directs user requests to one of multiple servers to share the work.
Process Table
StepActionServer1 StatusServer2 StatusRequest Routed ToReason
1User sends requestHealthyHealthyLoad BalancerRequest arrives at load balancer
2Load balancer checks serversHealthyHealthyLoad BalancerBoth servers are healthy
3Load balancer routes requestHealthyHealthyServer1Server1 chosen to balance load
4Server1 processes requestHealthyHealthyServer1Server1 handles request
5User sends another requestHealthyHealthyLoad BalancerNew request arrives
6Load balancer checks serversHealthyHealthyLoad BalancerBoth servers healthy
7Load balancer routes requestHealthyHealthyServer2Server2 chosen to balance load
8Server2 processes requestHealthyHealthyServer2Server2 handles request
9Server1 becomes unhealthyUnhealthyHealthyLoad BalancerServer1 fails health check
10User sends requestUnhealthyHealthyLoad BalancerNew request arrives
11Load balancer checks serversUnhealthyHealthyLoad BalancerServer1 unhealthy, Server2 healthy
12Load balancer routes requestUnhealthyHealthyServer2Only Server2 is healthy
13Server2 processes requestUnhealthyHealthyServer2Server2 handles request
14Server1 recoversHealthyHealthyLoad BalancerServer1 passes health check again
15User sends requestHealthyHealthyLoad BalancerNew request arrives
16Load balancer routes requestHealthyHealthyServer1Load balancing resumes
17Server1 processes requestHealthyHealthyServer1Server1 handles request
💡 Load balancer stops routing to unhealthy servers to keep service reliable.
Status Tracker
VariableStartAfter Step 9After Step 14Final
Server1 StatusHealthyUnhealthyHealthyHealthy
Server2 StatusHealthyHealthyHealthyHealthy
Request Routed ToLoad BalancerLoad BalancerLoad BalancerLoad Balancer
Key Moments - 2 Insights
Why does the load balancer stop sending requests to Server1 at step 12?
Because Server1 failed the health check at step 9 and is marked unhealthy, so the load balancer only sends requests to healthy servers as shown in execution_table rows 9-12.
How does the load balancer decide which server to send requests to when both are healthy?
It distributes requests to balance the load, alternating between Server1 and Server2 as seen in steps 3 and 7 in the execution_table.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, at step 9 what happens to Server1 status?
AServer1 becomes healthy
BServer1 becomes unhealthy
CServer1 is removed
DServer1 processes a request
💡 Hint
Check the 'Server1 Status' column at step 9 in the execution_table.
At which step does the load balancer route a request to Server2 for the first time?
AStep 3
BStep 12
CStep 7
DStep 16
💡 Hint
Look at the 'Request Routed To' column in the execution_table to find when Server2 first receives a request.
If Server2 became unhealthy at step 10, what would happen at step 12?
ALoad balancer cannot route request to any server
BLoad balancer routes request to Server2 anyway
CLoad balancer routes request to Server1
DLoad balancer routes request to a new server
💡 Hint
Refer to how the load balancer only routes to healthy servers in the execution_table steps 9-12.
Concept Snapshot
Load balancing sends user requests to multiple servers to share work.
It checks server health to avoid sending requests to broken servers.
This keeps the service fast and reliable.
If a server fails, load balancer routes requests only to healthy ones.
When servers recover, they get requests again.
Load balancing improves uptime and user experience.
Full Transcript
Load balancing is important because it helps distribute user requests across multiple servers. When a user sends a request, it first goes to the load balancer. The load balancer checks which servers are healthy and sends the request to one of them. This sharing of work prevents any single server from getting overloaded. If a server becomes unhealthy, the load balancer stops sending requests to it until it recovers. This ensures users get fast and reliable responses. When the unhealthy server recovers, it starts receiving requests again. This process keeps the service running smoothly and improves user experience.