DynamoDB: Batch Get (Guide w/ Code Examples)
Provided by Rafal Wilinski
DynamoDB DocumentClient provides a function named batchGet
to retrieve multiple items at once. Behind the scenes, it calls BatchGetItem
function and can retrieve items in batches of 100 or fewer records.
const AWS = require('aws-sdk'); const dynamo = new AWS.DynamoDB.DocumentClient(); const params = { RequestItems: { "TableName": [ { "Keys": [ { "key1": "value1" }, { "key2": "value2" }, //... ], "ProjectionExpression": "attribute_name1, attribute_name2" } ] } }; dynamo.batchGet(params, function(err, data) { if (err) { console.log(err); } else { console.log(data); } });
Similar Code Examples
- DynamoDB: Delete All Items With Partition Key
- DynamoDB: Get By ID
- DynamoDB: Get Query
- DynamoDB: Delete
- DynamoDB: Get Unique Values
- DynamoDB: Query Group By
- DynamoDB: Query KeyConditionExpression
- DynamoDB: Query Count
- DynamoDB: Get Multiple Items
- DynamoDB: Delete Table
- DynamoDB: Delete Multiple Items in Javascript
- DynamoDB: Create if Not Exists
- DynamoDB: Query Items
- DynamoDB: Get Last Inserted Item
- DynamoDB: Query Global Secondary Index in Nodejs
Tired of switching accounts and regions? Use Dynobase.
Try 7-day free trial. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase