Which statement best describes how DynamoDB Global Tables replicate data across regions?
Think about how DynamoDB balances latency and consistency in global replication.
DynamoDB Global Tables use asynchronous replication to ensure low latency writes in each region while achieving eventual consistency across regions.
Given two concurrent writes to the same item in different regions, what is the expected outcome in DynamoDB Global Tables?
Consider how DynamoDB resolves conflicts using timestamps.
DynamoDB Global Tables resolve conflicts by using a last-writer-wins approach based on timestamps, so the most recent write overwrites the other.
Which option contains a valid AWS CLI command to create a DynamoDB Global Table with two regions?
aws dynamodb create-global-table --global-table-name MyGlobalTable --replication-group RegionName=us-east-1 RegionName=eu-west-1
Check the correct JSON format for the replication group parameter.
The replication group must be passed as a JSON array string with objects specifying each region.
You want to minimize read latency for users in multiple regions using DynamoDB Global Tables. Which strategy is best?
Think about how Global Tables distribute data for low latency.
Global Tables replicate data to multiple regions, so directing reads to the closest replica reduces latency.
You notice that updates made in one region are not appearing promptly in another region's replica. Which is the most likely cause?
Consider how replication works and what can delay it.
Replication in Global Tables is asynchronous; network delays can cause lag in data propagation between regions.