Elastic Load Balancing (ELB) பல targets (EC2 instances, containers, முதலியவை) முழுவதும் வரும் traffic ஐ விநியோகிக்கிறது — availability (ஒற்றை தோல்வி புள்ளி இல்லை) மற்றும் scalability (load ஐ பரப்புதல்) ஐ மேம்படுத்துகிறது. இது நம்பகமான, scalable applications க்கு ஒரு முக்கியமான component ஆகும்.
Load balancer என்ன செய்கிறது
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)
