PrepAway - Latest Free Exam Questions & Answers

Which design would you choose to meet these requirements?

An International company has deployed a multi-tier web application that relies on DynamoDB in a single region
For regulatory reasons they need disaster recovery capability In a separate region with a Recovery Time
Objective of 2 hours and a Recovery Point Objective of 24 hours They should synchronize their data on a
regular basis and be able to provision me web application rapidly using CloudFormation.
The objective is to minimize changes to the existing web application, control the throughput of DynamoDB
used for the synchronization of data and synchronize only the modified elements.
Which design would you choose to meet these requirements?

PrepAway - Latest Free Exam Questions & Answers

A.
Use AWS data Pipeline to schedule a DynamoDB cross region copy once a day. create a Lastupdated’
attribute in your DynamoDB table that would represent the timestamp of the last update and use it as a filter.

B.
Use EMR and write a custom script to retrieve data from DynamoDB in the current region using a SCAN
operation and push it to QynamoDB in the second region.

C.
Use AWS data Pipeline to schedule an export of the DynamoDB table to S3 in the current region once a day
then schedule another task immediately after it that will import data from S3 to DynamoDB in the other
region.

D.
Send also each Ante into an SQS queue in me second region; use an auto-scaiing group behind the SQS
queue to replay the write in the second region.

10 Comments on “Which design would you choose to meet these requirements?

  1. Sandeep says:

    A seems like the answer.

    C exports the whole DB on a daily basis. A exports only the updates (synchronize only the modified elements)

    DynamoDB does have a cross-region replication function. So not sure why that is not one of the options:

    Q: What is a DynamoDB cross-region replication?
    DynamoDB cross-region replication allows you to maintain identical copies (called replicas) of a DynamoDB table (called master table) in one or more AWS regions. After you enable cross-region replication for a table, identical copies of the table are created in other AWS regions. Writes to the table will be automatically propagated to all replicas.




    0



    1
  2. Blah says:

    This question seems little bit out of date since now there is Cross-Region Export and Import of DynamoDB Tables function.
    Although underlying is still using combination of AWS Data Pipeline and Elastic MapReduce.




    0



    0

Leave a Reply

Your email address will not be published. Required fields are marked *