Question : You successfully upload an item to the US-STANDARD region. You then immediately make another API call and attempt to read the object and receive a HTTP 404 error. What is the most likely cause of this behavior
1. US-STANDARD uses eventual consistency and it can take time for an object to be readable in a bucket
2. Objects in Amazon S3 do not become visible until they are replicated to a second region
3. US-STANDARD imposes a 1 second delay before new objects are readable
4. You exceeded the bucket object limit, and once this limit is raised the object will be visible
Correct Answer : 1
Explanation: Amazon S3 buckets in the US West (Oregon), US West (Northern California), EU (Ireland), Asia Pacific (Singapore), Asia Pacific (Tokyo), Asia Pacific (Sydney), South America (Sao Paulo), and GovCloud (US) regions provide read-after-write consistency for PUTS of new objects and eventual consistency for overwrite PUTS and DELETES. Amazon S3 buckets in the US Standard region provide eventual consistency.
Question : If you set the "VisibilityTimeout=" in Amazon SQS queue message by calling ChangeMessageVisibility then
1. Message will be immediately deleted from all the queues 2. Message will never be deleted from the queue until you change this value again 3. Message will remain in the queue, but no component can process it 4. Immediately makes the message visible to other components in the system to process
Correct Answer : 4
When you receive a message from the queue, you might find that you actually don't want to process and delete that message. Amazon SQS allows you to terminate the visibility timeout for a specific message, which immediately makes the message visible to other components in the system to process. To do this, you call ChangeMessageVisibility with VisibilityTimeout=0 seconds.
Question : Which statements about DynamoDB are true? Choose answers A. DynamoDB uses a pessimistic locking model B. DynamoDB uses optimistic concurrency control C. DynamoDB uses conditional writes for consistency D. DynamoDB restricts item access during reads E. DynamoDB restricts item access during writes 1. A,B 2. B,C 3. C,D 4. D,E 5. A,E
1. Atomic Counters 2. Extra API read calls to determine if the data was updated before the update call is made 3. Conditional Writes 4. Eventual Consistency