Elastic Load Balancing (ELB) ఆయా లక్ష్యాలకు (EC2 ఇన్స్టెన్సులు, కంటైనర్లు, మొదలైనవి) ఇన్కమింగ్ ట్రాఫిక్ను పంపిణీ చేస్తుంది — **అందుబాటులో (ఏకైక వైఫల్య బిందువు లేదు) మరియు స్కేలేబిలిటీ (లోడ్ చెదరవేయడం) మెరుగుపరుస్తుంది. ఇది నమ్మకమైన, స్కేలేబుల్ అప్లికేషన్ల కోసం ఒక కీలక భాగం.
లోడ్ బ్యాలెన్సర్ ఏమి చేస్తుంది
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)
