Amazon DynamoDB · Arazzo Workflow
Amazon DynamoDB Batch Write Then Batch Get
Version 1.0.0
Bulk-write a set of items and read them back in a single batch.
Provider
Workflows
batch-write-then-batch-get
Bulk write items, retry unprocessed, then batch read them back.
Submits a BatchWriteItem request, loops while UnprocessedItems remain, and finally issues a BatchGetItem request to retrieve the written items.
1
batchWrite
batchWriteItem
Write the batch of items. DynamoDB may return UnprocessedItems if any requests were throttled or not completed.
2
retryWrite
batchWriteItem
Resubmit the items DynamoDB did not process on the first attempt, looping until none remain.
3
batchGet
batchGetItem
Read the written items back in a single batch request.