AWS Certified Solutions Architect – Professional — Question 551

In DynamoDB, "The data is eventually consistent" means that__________.

Answer options

Correct answer: A

Explanation

Eventual consistency in DynamoDB means that the response from a read operation may not immediately reflect the results of a recently completed write operation because data replication across multiple storage servers takes time. Once the update propagates to all storage locations, subsequent reads will return the updated data. To ensure you always get the latest written data, a strongly consistent read must be requested instead.