Where is the last lesson about scaling tasks using ECS autoscaling service?
@StephenRayner2 жыл бұрын
Would love to see this done in Terraform
@SamualAnthony Жыл бұрын
Hi, I have purchased a subscription to your course. But I cannot find this lesson, or the previous lesson you have mentioned in this video
@DigitalCloudTraining Жыл бұрын
You can get the full video course here: digitalcloud.training/aws-certified-developer-associate/
@akshayvit13123 жыл бұрын
Thank you very much for such an informational video. it was very helpful. I understood when the desired count is increased ECS containers also increased. However when we reduce desired count. ECS container instances remain the same and capacity unutilized. Could guide me to achieve scale down ECS instances when capacity not utilized.
@DigitalCloudTraining3 жыл бұрын
Use Auto Scaling: docs.aws.amazon.com/AmazonECS/latest/developerguide/service-auto-scaling.html
@atjams Жыл бұрын
Thank you 😉
@sb8508_14 жыл бұрын
How do you register those new EC2s to the Target groups?
@adamdaniel57662 жыл бұрын
Hi where can I foud the last section that you are talking about
@DigitalCloudTraining2 жыл бұрын
You can get the full course here: digitalcloud.training/aws-certified-developer-associate/
@raghum87672 жыл бұрын
Is it possible to configure two ec2 different types of instances while auto scaling in ECS? For example existing ecs is c5.large, while auto scaling it should run a lower instance
@DigitalCloudTraining2 жыл бұрын
Not exactly, you would need separate ASGs launch templates.
@sambasiva17022 жыл бұрын
can you please link the last lesson?
@DigitalCloudTraining2 жыл бұрын
You can view the entire playlist here: kzbin.info/www/bejne/qGXac6mEabuYmMU They are excerpts from this full course: digitalcloud.training/aws-certified-developer-associate/
@pradeep_kumar_ind3 жыл бұрын
Thanks for this video. Very useful. I have one query. Why did you mention the desired capacity as 4? It should be 6 if you want to run 8 tasks, because, the first AG took care of adding 2 instances already and the capacity provider should add 6 instances to making it total 8!
@DigitalCloudTraining3 жыл бұрын
This is cluster auto scaling not service auto scaling. It's about adding the underlying cluster instances not the number of tasks.
@pradeep_kumar_ind3 жыл бұрын
@@DigitalCloudTraining I do understand the difference, as I myself work on cloud. What I wanted to understand is, in this example there is one t2.micro EC2 instance per task. That means if you are creating 8 tasks, the cluster should have 8 EC2 instances. 2 instances have already been added through EC2 autoscaling, but you are adding only 4 EC2 instances through ASG associated with that Capacity Provider. So, I am still confused, how would scaling-out tasks will create 8 instances?. Thanks.
@DigitalCloudTraining3 жыл бұрын
@@pradeep_kumar_ind the number of instances is the number of underlying hosts running the tasks, the tasks are individual Docker containers. You can have more tasks than you have underlying instances as you can run many tasks on each cluster host.
@pradeep_kumar_ind3 жыл бұрын
@@DigitalCloudTraining In your video, between 2:50 and 2:58, listen to what you have mentioned. You said one task per instance. I asked you this query based on what you said. :)