🔥 0
0
Lesson 5 of 5 15 min +250 XP

🧠 Load Balancing Assessment

Answer all questions to complete the quiz and earn 250 XP.

1

Your e-commerce site is getting hammered on Black Friday. CPU on your single server hits 95%. What's your immediate action?

2

You have 3 servers: A (32GB RAM), B (16GB RAM), C (16GB RAM). Which algorithm best distributes load according to capacity?

3

Users complain they keep getting logged out when browsing your site. Your site uses in-memory sessions. What's likely the issue?

4

Your load balancer health check pings /health every 5 seconds. A server crashes. What's the worst-case time before traffic stops going to it?

5

You need to route /api/* to API servers and /app/* to frontend servers. Which load balancer type do you need?

6

A cache server cluster uses consistent hashing. You add a 6th server to the existing 5. Roughly how much data needs to move?

7

Your health check returns 200 OK, but the database is down. What type of health check do you need?

8

You're load balancing a real-time gaming server. What's most important?

9

During deployment, you want to drain connections from Server A before taking it down. What happens to new requests vs existing connections?

10

Your API receives requests with Authorization headers. You need to route premium users to faster servers. Which feature do you need?

11

Netflix uses client-side load balancing (Ribbon). What's the advantage over a traditional load balancer?

12

You see 'Connection refused' errors in your health check logs, but the server is running. What's likely wrong?

13

Your load balancer uses Round Robin. Server A processes requests in 100ms, Server B takes 500ms. What happens over time?

14

An L7 load balancer terminates SSL. What's a security consideration?

15

Final question: Your system handles 10,000 req/s with 5 servers. One server fails. Assuming perfect distribution, what's the load on each remaining server?