AWS | Scaling with Amazon ECS

Reading Time: 3 minutes

In my last post regarding AWS, I had explained how to launch Amazon ECS cluster including cloud formation, VPC and subnet creation,  ELB and ECS security group creation, auto scaling group, launch configuration, elastic load balancer creation with the help of sample app by creating a task definition, scheduling tasks and configuring a cluster through Amazon ECS First Run Wizard.

In this blog, I will talk about auto scaling means how to

  • Scale in / scale out EC2 instance in a cluster.
  • Scale in / scale out containers(tasks) for a particular service.

Auto scaling is very helpful, as configuring EC2 instance in a auto scaling group or deploying and managing different containers of a same micro service manually is a lot complicated. It can take a lot of time and efforts to do that, but Amazon EC2 Container Service make it easier as it provide one click auto scaling feature that saves lot of time.

1. Auto Scale EC2 instance in a cluster

a. Open Amazon console: Click on cluster tab, then select  your cluster in our case it is named as default:

1.png

b. Click on “ECS instances” tab: You find the option to “Scale ECS Instances” click on that and before scaling you can see currently, we have only one ECS instance running in the cluster.

2.png

c. Scale ECS Instances in cluster: Provide desired number of instances, so lets scale it to 2 from 1 and click on Scale.

3.png

d. In few seconds you will see two EC2 instances are running, Amazon ECS will automatically configured it to auto scaling group you don’t have to do anything.

4.png

2. Auto Scale containers/tasks for a service

a. Click on “Tasks” tab: As of now, we have only one container running for sample-webapp service.

5.png

b. Click on “Services” tab: Select service for which you want to scale out or scale in tasks. I’m selecting sample-webapp service for demonstration and click on update.

6.png

c. Scale tasks: Provide desired number of tasks you want to run for this service and then click on update service.

7.png

d. In a while you will see two containers are running.

8.png

So you see just on a click we are scaling up and we can also scale down ECS instances and container instances.

Hope I helped you to save your time and efforts. 🙂

In the next blog I will explain how to update task definition in order to run the updated version. Keep in touch !!

Thanks !!


KNOLDUS-advt-sticker

Discover more from Knoldus Blogs

Subscribe now to keep reading and get access to the full archive.

Continue reading