Elastic Load Balancing (ELB) distribui o tráfego de entrada entre vários destinos (instâncias EC2, contêineres, etc.) — melhorando disponibilidade (sem ponto único de falha) e escalabilidade (distribuição de carga). É um componente-chave para aplicações confiáveis e escaláveis.
O que um balanceador de carga faz
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)
