[AWS] EC2

EC2 Auto Scaling is a service that ensures you have the desired number of EC2 instances always up and running to handle the expected load for your application. To set-up an Auto Scaling group, you require the following basic details:

  1. Count of instances - The desired count of the EC2 instances you want to have available. If any instance goes down/fails, a new instance automatically spins up.

  2. Launch template - The auto scaling group contains a collection of EC2 instances that are treated as a logical group. All EC2 instances within a group share the same configuration. Therefore, You need to specify the configuration details, such as, the ID of the Amazon Machine Image (AMI), the instance type, a key pair, security groups, and the other parameters that you use to launch EC2 instances. You specify the configuration details in a Launch template.

  1. Scaling policy - The auto scaling policy that defines how to scale your EC2 instances automatically, based on demand

A. Start the Auto Scaling Groups service

Go to the EC2 Dashboard, and select the Auto Scaling Groups service from the left navigation pane. See the snapshot below. For first time users, it may take you to the homepage. Please devote a moment to read through the introduction.

Snapshot: EC2 Dashboard → Auto Scaling Groups service

B. Create an Auto Scaling group

The Create Auto Scaling group is a seven-step process, as shown in the snapshot below. Provide a launch template or configuration in the first step. AWS prefers launch templates over launch configuration files. (Although, both convey similar information.) If you do not have a pre-created launch template, you can create a launch template from the current step.

Snapshot: Create an Auto Scaling group wizard

In the remaining steps, you can configure group size, scaling policies, notifications settings, and tags. The group size allows you to mention the minimum, maximum, and desired number of instances in the group, such that min <= desired <= max. For scaling policies, you can create and add either a step/simple/target scaling policy.

  • Launch template
    As mentioned above, a launch template specifies the configuration details, such as, the ID of the Amazon Machine Image (AMI), the instance type, a key pair, security groups, and the other parameters that you use to launch EC2 instances. See a quick video below to see the information available in a launch template.
原文地址:https://www.cnblogs.com/Answer1215/p/14543700.html