You have a content management system running on an Amazon EC2 instance that is approaching 100% CPU
utilization.
Which option will reduce load on the Amazon EC2 instance?

A.
Create a load balancer, and register the Amazon EC2 instance with it
B.
Create a CloudFront distribution, and configure the Amazon EC2 instance as the origin
C.
Create an Auto Scaling group from the instance using the CreateAutoScalingGroup action
D.
Create a launch configuration from the instance using the CreateLaunchConfiguration action
Explanation:
You can create an ASG from instance ID
http://docs.aws.amazon.com/AutoScaling/latest/APIReference/API_CreateAutoScalingGroup.html
B seems a better answer
0
0
CloudFront will help in reducing latency not in reducing the Load.
0
0
C: you must create auto scaling group and configure a target so that when load is heavier/target is reached, a new instance will be launched by autoscaling
0
0
why is not B?
0
0
Cloudfront will help in reducing latency not in reducing the Load.
0
0
can someone explain why not B?
0
0
Amazon CloudFront is a web service that speeds up distribution of your static and dynamic web content, such as .html, .css, .php, and image files, to your users. CloudFront delivers your content through a worldwide network of data centers called edge locations.
In cloudfront it just speedup the content delivery to enduser. In cloudfront enduser will get benifits. In question is asked about the specific to EC2 instance..so I feel Autoscailing is best answer whenever the EC2 get CPU Load..It will just add new EC2 Instance and distribute the load on New and existing instances.
1
0
” In cloudfront enduser will get benifits.”
Well, by serving requests for static content from its cache, CloudFront will reduce load on EC2.
1
0
B.
Scaling needs a load balancer to distribute the load to additional instances. CloudFront would take off some of the load from EC2.
0
1
I really hope these were not actual exam questions. There is too much ambiguity in the questions. I picked B as well, because if the content can be cached, some load is taken off of the EC2 instance.
0
0