DynamoDB Batch Update

Is there an api in dynamodb for updating a batch of items. There is an api for writing new items in batch mode (BatchWriteItem) and updating a single item using UpdateItem. But is it possible to update multiple items in one call?

+7
amazon-dynamodb
source share
3 answers

DynamoDB does not have the batch update item currently available.

DynamoDB API Operation List

+5
source share

BatchWriteItem cannot update items. To update items, use the UpdateItem action. The BatchWriteItem operation puts or removes multiple items in one or more tables.

Link: http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html

+1
source share

I am using DynamoDBMapper.batchSave(Iterable<? extends Object> objectsToSave) for this purpose.

0
source share

All Articles