Free AWS-SOLUTIONS-ARCHITECT-PROFESSIONAL Exam Braindumps (page: 69)

Page 69 of 134

A company is planning to migrate an Amazon RDS for Oracle database to an RDS for PostgreSQL DB instance in another AWS account. A solutions architect needs to design a migration strategy that will require no downtime and that will minimize the amount of time necessary to complete the migration. The migration strategy must replicate all existing data and any new data that is created during the migration. The target database must be identical to the source database at completion of the migration process.

All applications currently use an Amazon Route 53 CNAME record as their endpoint for communication with the RDS for Oracle DB instance. The RDS for Oracle DB instance is in a private subnet.

Which combination of steps should the solutions architect take to meet these requirements? (Choose three.)

  1. Create a new RDS for PostgreSQL DB instance in the target account. Use the AWS Schema Conversion Tool (AWS SCT) to migrate the database schema from the source database to the target database.
  2. Use the AWS Schema Conversion Tool (AWS SCT) to create a new RDS for PostgreSQL DB instance in the target account with the schema and initial data from the source database.
  3. Configure VPC peering between the VPCs in the two AWS accounts to provide connectivity to both DB instances from the target account. Configure the security groups that are attached to each DB instance to allow traffic on the database port from the VPC in the target account.
  4. Temporarily allow the source DB instance to be publicly accessible to provide connectivity from the VPC in the target account. Configure the security groups that are attached to each DB instance to allow traffic on the database port from the VPC in the target account.
  5. Use AWS Database Migration Service (AWS DMS) in the target account to perform a full load plus change data capture (CDC) migration from the source database to the target database. When the migration is complete, change the CNAME record to point to the target DB instance endpoint.
  6. Use AWS Database Migration Service (AWS DMS) in the target account to perform a change data capture (CDC) migration from the source database to the target database. When the migration is complete, change the CNAME record to point to the target DB instance endpoint.

Answer(s): A,C,E

Explanation:

A) Using the AWS Schema Conversion Tool (AWS SCT) is the best way to migrate the database schema from the Oracle DB instance to the PostgreSQL DB instance since the schema will need to be adapted to PostgreSQL.
C) Configuring VPC peering between the source and target accounts ensures network connectivity between the databases, allowing secure data transfer. The security groups also need to be configured to permit traffic on the database port between the two VPCs.
E) Using AWS Database Migration Service (AWS DMS) with a full load plus change data capture (CDC) migration ensures that the migration captures both the existing data and any new changes made during the migration process. This approach allows for near-zero downtime, and updating the Route 53 CNAME record after the migration ensures applications can seamlessly switch to the new database.
This combination of steps enables a smooth migration with no downtime and ensures that the target database remains identical to the source database at the completion of the process.



A company has implemented an ordering system using an event-driven architecture. During initial testing, the system stopped processing orders. Further log analysis revealed that one order message in an Amazon Simple Queue Service (Amazon SQS) standard queue was causing an error on the backend and blocking all subsequent order messages. The visibility timeout of the queue is set to 30 seconds, and the backend processing timeout is set to 10 seconds. A solutions architect needs to analyze faulty order messages and ensure that the system continues to process subsequent messages.

Which step should the solutions architect take to meet these requirements?

  1. Increase the backend processing timeout to 30 seconds to match the visibility timeout.
  2. Reduce the visibility timeout of the queue to automatically remove the faulty message.
  3. Configure a new SQS FIFO queue as a dead-letter queue to isolate the faulty messages.
  4. Configure a new SQS standard queue as a dead-letter queue to isolate the faulty messages.

Answer(s): D

Explanation:

D) Configuring a new SQS standard queue as a dead-letter queue isolates faulty messages, preventing them from blocking subsequent messages. The dead-letter queue will capture messages that cannot be processed successfully after a defined number of retries. This ensures that the system continues to process other orders while the faulty messages are analyzed and handled separately, meeting the requirements without causing a system halt.



A company has automated the nightly retraining of its machine learning models by using AWS Step Functions. The workflow consists of multiple steps that use AWS Lambda. Each step can fail for various reasons, and any failure causes a failure of the overall workflow.

A review reveals that the retraining has failed multiple nights in a row without the company noticing the failure. A solutions architect needs to improve the workflow so that notifications are sent for all types of failures in the retraining process.

Which combination of steps should the solutions architect take to meet these requirements? (Choose three.)

  1. Create an Amazon Simple Notification Service (Amazon SNS) topic with a subscription of type "Email" that targets the team's mailing list.
  2. Create a task named "Email" that forwards the input arguments to the SNS topic.
  3. Add a Catch field to all Task, Map, and Parallel states that have a statement of "ErrorEquals": [ "States.ALL" ] and "Next”: "Email".
  4. Add a new email address to Amazon Simple Email Service (Amazon SES). Verify the email address.
  5. Create a task named "Email" that forwards the input arguments to the SES email address.
  6. Add a Catch field to all Task, Map, and Parallel states that have a statement of "ErrorEquals": [ "States.Runtime" ] and "Next": "Email".

Answer(s): A,B,C

Explanation:

A) Creating an Amazon Simple Notification Service (Amazon SNS) topic with an email subscription ensures that the team will receive notifications via email when a failure occurs.
B) Creating a task named "Email" that forwards input arguments to the SNS topic ensures that the correct information is passed to the notification system, allowing for relevant failure details to be communicated to the team.
C) Adding a Catch field to all Task, Map, and Parallel states with "ErrorEquals": [ "States.ALL" ] ensures that the workflow captures all types of errors (not just runtime errors), and the "Next" field ensures that the failure redirects to the "Email" task to trigger a notification.
This combination ensures that any type of failure in the workflow will result in an immediate notification to the team, allowing them to take corrective action promptly.



A company plans to deploy a new private intranet service on Amazon EC2 instances inside a VPC. An AWS Site-to-Site VPN connects the VPC to the company's on-premises network. The new service must communicate with existing on-premises services. The on-premises services are accessible through the use of hostnames that reside in the company.example DNS zone. This DNS zone is wholly hosted on premises and is available only on the company's private network.

A solutions architect must ensure that the new service can resolve hostnames on the company.example domain to integrate with existing services.

Which solution meets these requirements?

  1. Create an empty private zone in Amazon Route 53 for company.example. Add an additional NS record to the company's on-premises company.example zone that points to the authoritative name servers for the new private zone in Route 53.
  2. Turn on DNS hostnames for the VPC. Configure a new outbound endpoint with Amazon Route 53 Resolver. Create a Resolver rule to forward requests for company.example to the on-premises name servers.
  3. Turn on DNS hostnames for the VPConfigure a new inbound resolver endpoint with Amazon Route 53 Resolver. Configur&the on-premises DNS server to forward requests for company.example to the new resolver.
  4. Use AWS Systems Manager to configure a run document that will install a hosts file that contains any required hostnames. Use an Amazon EventBridge rule to run the document when an instance is entering the running state.

Answer(s): B

Explanation:

B) Enabling DNS hostnames for the VPC and configuring an outbound endpoint with Amazon Route 53 Resolver allows the EC2 instances in the VPC to forward DNS queries for the company.example domain to the on-premises DNS servers. By creating a Resolver rule to forward requests for this domain, the on-premises DNS servers will handle the resolution, ensuring that the new service can resolve hostnames from the company’s private network and integrate with existing services.



Page 69 of 134



Post your Comments and Discuss Amazon AWS-SOLUTIONS-ARCHITECT-PROFESSIONAL exam with other Community members:

Zak commented on June 28, 2024
@AppleKid, I manged to pass this exam after failing once. Do not set for your exam without memorizing these questions. These are what you will see in the real exam.
Anonymous
upvote

Apple Kid commented on June 26, 2024
Did anyone gave exam recently and tell if these are good?
Anonymous
upvote

Captain commented on June 26, 2024
This is so helpful
Anonymous
upvote

udaya commented on April 25, 2024
stulll learning and seem to be questions are helpful
Anonymous
upvote

Jerry commented on February 18, 2024
very good for exam !!!!
HONG KONG
upvote

AWS-Guy commented on February 16, 2024
Precise and to the point. I aced this exam and now going for the next exam. Very great full to this site and it's wonderful content.
CANADA
upvote

Jerry commented on February 12, 2024
very good exam stuff
HONG KONG
upvote

travis head commented on November 16, 2023
I gave the Amazon SAP-C02 tests and prepared from this site as it has latest mock tests available which helped me evaluate my performance and score 919/1000
Anonymous
upvote

Weed Flipper commented on October 07, 2020
This is good stuff man.
CANADA
upvote

IT-Guy commented on September 29, 2020
Xengine software is good and free. Too bad it is only in English and no support for French.
FRANCE
upvote

pema commented on August 30, 2019
Can I have the latest version of this exam?
GERMANY
upvote

MrSimha commented on February 23, 2019
Thank you
Anonymous
upvote

Phil C. commented on November 12, 2018
To soon to tell, but I will be back to post a review after my exam.
Anonymous
upvote

MD EJAZ ALI TANWIR commented on August 20, 2017
This is valid dump in US. Thank you guys for providing this.
UNITED STATES
upvote

flypig commented on June 02, 2017
The Braindumps will short my ready time for this exam!
CHINA
upvote