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: Get Last Inserted Item
- DynamoDB: Get Query
- DynamoDB: Not Begins With
- DynamoDB: Query Greater Than
- DynamoDB Get in Typescript
- DynamoDB: Query Global Secondary Index in Nodejs
- DynamoDB: Get Unique Values
- DynamoDB: Delete
- DynamoDB: Attribute Not Null
- DynamoDB: Query Date Range
- DynamoDB: Get By ID
- DynamoDB: Bulk Insert
- DynamoDB: Query Ends With
- DynamoDB: Not Between
- DynamoDB: Get Last 10 Records
Spend less time in the AWS console, use Dynobase.
Try 7-day free trial. No strings attached.
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase