Elastic Load Balancing (ELB) अनेक लक्ष्यांवर (EC2 instances, containers, इत्यादी) येणारे ट्रॅफिक वितरित करते — उपलब्धता सुधारते (एकल अपयश बिंदू नाही) आणि स्केलेबिलिटी (लोड पसरवते). हे विश्वसनीय, स्केलेबल अनुप्रयोगांसाठी एक मुख्य घटक आहे.
लोड बॅलन्सर काय करते
A LOAD BALANCER sits in front of multiple backend targets and distributes requests:
Client → LOAD BALANCER → ┬→ Instance 1
├→ Instance 2
└→ Instance 3
→ spreads traffic across targets (scalability + no single instance overloaded)
→ HEALTH CHECKS: routes only to HEALTHY targets (an unhealthy one is bypassed)
→ if a target fails, traffic goes to the others → HIGH AVAILABILITY
→ single entry point (clients hit the LB, not individual instances)
