Best practices for using bulk data operations in DynamoDB - Amazon DynamoDB
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Best practices for using bulk data operations in DynamoDB

DynamoDB supports batch operations such as BatchWriteItem using which you can perform up to 25 PutItem and DeleteItem requests together. However, BatchWriteItem doesn't support UpdateItem operations. When it comes to bulk updates, the distinction lies in the requirements and the nature of the update. You can use other DynamoDB APIs such as TransactWriteItems for batch size up to 100. When more items are involved, you can use services such as Amazon Glue, Amazon EMR, Amazon Step Functions or use custom scripts and tools like DynamoDB-shell for bulk updates.