-
Book Overview & Buying
-
Table Of Contents
AWS for System Administrators - Second Edition
By :
In the previous chapters, we saw how the Amazon Elastic Compute Cloud (EC2) service can be used to dynamically spin up virtual machines in seconds. In Chapter 5, we also saw how Elastic Load Balancing (ELB) can be used to distribute traffic between a (possibly changing) number of instances. In this chapter, we’ll add the final piece of the puzzle for scalable computing. One of the benefits of the cloud is the availability of on-demand capacity when we need it. However, it would be cumbersome for us as administrators and operators to manually check the load of our machines and add or remove compute capacity based on those manually checked load numbers. This is where auto-scaling comes into play.
AWS Auto Scaling will scale the number of instances based on demand. This means that if the load hits a critical point, new instances will be added, and once the load on our system goes down, instances will be terminated.
...