Chapter 8. Elastic Load Balancer
When you think Design for Failure, Elastic Load Balancing (ELB) is one of the AWS services you need to start using. It is a component used to balance network traffic across multiple EC2 and ECS instances within multiple availability zones. With the introduction of ELB, we can automatically distribute incoming application traffic across multiple applications, microservices, and containers hosted on AWS EC2 instances. You can also think of ELB as a traffic manager. ECS is an AWS EC2 container service, which is not covered in this book, but I would like to encourage you to read more on this service if you are a big fan of Docker containers and Kubernetes. I will limit the scope to EC2 instances load balancing in this chapter. ELB allows you to achieve a greater level of fault tolerance and higher availability. The beauty of this service is, it scales its request handling capacity to meet traffic demands, and it does this without any manual intervention or any...