Exams > Amazon > AWS Certified Solutions Architect - Professional
AWS Certified Solutions Architect - Professional
Page 27 out of 101 pages Questions 261-270 out of 1009 questions
Question#261

To scale out the AWS resources using manual AutoScaling, which of the below mentioned parameters should the user change?

  • A. Current capacity
  • B. Desired capacity
  • C. Preferred capacity
  • D. Maximum capacity
Discover Answer Hide Answer

B
The Manual Scaling as part of Auto Scaling allows the user to change the capacity of Auto Scaling group. The user can add / remove EC2 instances on the fly. To execute manual scaling, the user should modify the desired capacity. AutoScaling will adjust instances as per the requirements.
Reference:
http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/as-manual-scaling.html

Question#262

After moving an E-Commerce website for a client from a dedicated server to AWS you have also set up auto scaling to perform health checks on the instances in your group and replace instances that fail these checks. Your client has come to you with his own health check system that he wants you to use as it has proved to be very useful prior to his site running on AWS.
What do you think would be an appropriate response to this given all that you know about auto scaling and CloudWatch?

  • A. It is not possible to implement your own health check system due to compatibility issues.
  • B. It is not possible to implement your own health check system. You need to use AWSs health check system.
  • C. It is possible to implement your own health check system and then send the instance's health information directly from your system to CloudWatch but only in the US East (N. Virginia) region.
  • D. It is possible to implement your own health check system and then send the instance's health information directly from your system to CloudWatch.
Discover Answer Hide Answer

D
Auto Scaling periodically performs health checks on the instances in your group and replaces instances that fail these checks. By default, these health checks use the results of EC2 instance status checks to determine the health of an instance. If you use a load balancer with your Auto Scaling group, you can optionally choose to include the results of Elastic Load Balancing health checks.
Auto Scaling marks an instance unhealthy if the calls to the Amazon EC2 action DescribeInstanceStatus returns any other state other than running, the system status shows impaired, or the calls to Elastic Load Balancing action DescribeInstanceHealth returns OutOfService in the instance state field.
After an instance is marked unhealthy because of an Amazon EC2 or Elastic Load Balancing health check, it is scheduled for replacement.
You can customize the health check conducted by your Auto Scaling group by specifying additional checks or by having your own health check system and then sending the instance's health information directly from your system to Auto Scaling.
Reference:
http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/healthcheck.html

Question#263

Identify a benefit of using Auto Scaling for your application.

  • A. Your application gains better fault tolerance.
  • B. Your application optimizes only logistics and operations.
  • C. Your application receives latency requirements in every region.
  • D. You acquire clarity on prototypes in your application.
Discover Answer Hide Answer

A
When you use Auto Scaling, your applications gain better fault tolerance. Auto Scaling can detect when an instance is unhealthy, terminate it, and launch an instance to replace it. You can also configure Auto Scaling to use multiple Availability Zones. If one Availability Zone becomes unavailable, Auto Scaling can launch instances in another one to compensate.
Reference:
http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/how-as-works.html

Question#264

A user has suspended the scaling process on the Auto Scaling group. A scaling activity to increase the instance count was already in progress.
What effect will the suspension have on that activity?

  • A. No effect. The scaling activity continues
  • B. Pauses the instance launch and launches it only after Auto Scaling is resumed
  • C. Terminates the instance
  • D. Stops the instance temporary
Discover Answer Hide Answer

A
The user may want to stop the automated scaling processes on the Auto Scaling groups either to perform manual operations or during emergency situations. To perform this, the user can suspend one or more scaling processes at any time. When this process is suspended, Auto Scaling creates no new scaling activities for that group. Scaling activities that were already in progress before the group was suspended continue until completed.
Reference:
http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AS_Concepts.html

Question#265

Does Autoscaling automatically assign tags to resources?

  • A. No, not unless they are configured via API.
  • B. Yes, it does.
  • C. Yes, by default.
  • D. No, it does not.
Discover Answer Hide Answer

B
Tags don't have any semantic meaning to Amazon EC2 and are interpreted strictly as a string of characters.
Tags are assigned automatically to the instances created by an Auto Scaling group. Auto Scaling adds a tag to the instance with a key of aws: autoscaling:groupName and a value of the name of the Auto Scaling group.
Reference:
http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/Using_Tags.html

Question#266

If you have a running instance using an Amazon EBS boot partition, you can call the _______ API to release the compute resources but preserve the data on the boot partition.

  • A. Stop Instances
  • B. Terminate Instances
  • C. AMI Instance
  • D. Ping Instance
Discover Answer Hide Answer

A
If you have a running instance using an Amazon EBS boot partition, you can also call the Stop Instances API to release the compute resources but preserve the data on the boot partition.
Reference:
https://aws.amazon.com/ec2/faqs/#How_quickly_will_systems_be_running

Question#267

Which EC2 functionality allows the user to place the Cluster Compute instances in clusters?

  • A. Cluster group
  • B. Cluster security group
  • C. GPU units
  • D. Cluster placement group
Discover Answer Hide Answer

D
The Amazon EC2 cluster placement group functionality allows users to group cluster compute instances in clusters.
Reference:
https://aws.amazon.com/ec2/faqs/

Question#268

A user has launched a dedicated EBS backed instance with EC2. You are curious where the EBS volume for this instance will be created.
Which statement is correct about the EBS volume's creation?

  • A. The EBS volume will not be created on the same tenant hardware assigned to the dedicated instance
  • B. AWS does not allow a dedicated EBS backed instance launch
  • C. The EBS volume will be created on the same tenant hardware assigned to the dedicated instance
  • D. The user can specify where the EBS will be created
Discover Answer Hide Answer

A
The dedicated instances are Amazon EC2 instances that run in a Virtual Private Cloud (VPC) on hardware that is dedicated to a single customer. When a user launches an Amazon EBS-backed dedicated instance, the EBS volume does not run on single-tenant hardware.
Reference:
http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/dedicated-instance.html

Question#269

Which system is used by Amazon Machine Images paravirtual (PV) virtualization during the boot process?

  • A. PV-BOOT
  • B. PV-AMI
  • C. PV-WORM
  • D. PV-GRUB
Discover Answer Hide Answer

D
Amazon Machine Images that use paravirtual (PV) virtualization use a system called PV-GRUB during the boot process. PV-GRUB is a paravirtual boot loader that runs a patched version of GNU GRUB 0.97. When you start an instance, PV-GRUB starts the boot process and then chain loads the kernel specified by your image's menu.lst file.
Reference:
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedKernels.html

Question#270

You have written a CloudFormation template that creates 1 Elastic Load Balancer fronting 2 EC2 Instances.
Which section of the template should you edit so that the DNS of the load balancer is returned upon creation of the stack?

  • A. Parameters
  • B. Outputs
  • C. Mappings
  • D. Resources
Discover Answer Hide Answer

B
You can use AWS CloudFormation's sample templates or create your own templates to describe the AWS resources, and any associated dependencies or runtime parameters, required to run your application.
In the following example, the output named BackupLoadBalancerDNSName returns the DNS name for the resource with the logical ID BackupLoadBalancer only when the CreateProdResources condition is true. (The second output shows how to specify multiple outputs.) "Outputs" : {
"BackupLoadBalancerDNSName" : {
"Description": "The DNSName of the backup load balancer", "Value" : { "Fn::GetAtt" : [ "BackupLoadBalancer", "DNSName" ]}, "Condition" :
"CreateProdResources"
},
"InstanceID" : {
"Description": "The Instance ID", "Value" : { "Ref" : "EC2Instance" }
}
}
Reference:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html

chevron rightPrevious Nextchevron right