DVA-C02 · Question #108
A developer is building an application that uses Amazon DynamoDB. The developer wants to retrieve multiple specific items from the database with a single API call. Which DynamoDB API call will meet th
The correct answer is A. BatchGetItem. The BatchGetItem API allows the developer to retrieve multiple specific items from one or more DynamoDB tables in a single request, minimizing round trips and reducing the impact on the database. It is optimized for efficient bulk reads of known keys.
Question
A developer is building an application that uses Amazon DynamoDB. The developer wants to retrieve multiple specific items from the database with a single API call. Which DynamoDB API call will meet these requirements with the MINIMUM impact on the database?
Options
- ABatchGetItem
- BGetItem
- CScan
- DQuery
How the community answered
(33 responses)- A94% (31)
- C3% (1)
- D3% (1)
Explanation
The BatchGetItem API allows the developer to retrieve multiple specific items from one or more DynamoDB tables in a single request, minimizing round trips and reducing the impact on the database. It is optimized for efficient bulk reads of known keys.
Community Discussion
No community discussion yet for this question.