Batch Read in DynamoDB Using Java (Guide w/ Code Examples)
Provided by Rafal Wilinski
To perform a batch GetItem
request in DynamoDB, you can use the AmazonDynamoDB#batchGetItem
method. This method allows you to retrieve multiple items from one or more tables in a single request.
AmazonDynamoDB client = AmazonDynamoDBClientBuilder.standard().build(); Map<String, KeysAndAttributes> requestItems = new HashMap<>(); // Add a map entry for each table from which you want to retrieve items KeysAndAttributes keysAndAttributes = new KeysAndAttributes(); // Add a list of primary key attribute values for the items you want to retrieve keysAndAttributes.setKeys( Arrays.asList( new PrimaryKey("PK", 1), new PrimaryKey("PK", 2) ) ); // Add optional attributes to retrieve for each item keysAndAttributes.setAttributesToGet(Arrays.asList("attr1", "attr2")); requestItems.put("myTable", keysAndAttributes); BatchGetItemRequest request = new BatchGetItemRequest() .withRequestItems(requestItems); BatchGetItemResult result = client.batchGetItem(request);
Similar Code Examples
- Batch Put Item in DynamoDB Using Java
- Query Index in DynamoDB Using Java
- Insert in DynamoDB Using Java
- Batch Save Using DynamoDB Mapper
- Batch Update Using DynamoDB Mapper
- Batch Get in DynamoDB Using Java
- Delete Expression in DynamoDB Using Java
- Delete by Hashkey Using DynamoDB Mapper
- Delete Multiple Items in DynamoDB Using Java
- Remove Attribute in DynamoDB Using Java
- Remove with DynamoDB Mapper
- Batch Load Using DynamoDB Mapper
- Delete Table in DynamoDB Using Java
- Remove Item in DynamoDB Using Java
- Batch Insert in DynamoDB Using Java
Better DynamoDB experience.
Try 7-day free trial. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase