Table / Action / batch_writer

batch_writer#

DynamoDB.Table.batch_writer(overwrite_by_pkeys=None)#

Create a batch writer object.

This method creates a context manager for writing objects to Amazon DynamoDB in batch.

The batch writer will automatically handle buffering and sending items in batches. In addition, the batch writer will also automatically handle any unprocessed items and resend them as needed. All you need to do is call put_item for any items you want to add, and delete_item for any items you want to delete.

Example usage:

with table.batch_writer() as batch:
    for _ in range(1000000):
        batch.put_item(Item={'HashKey': '...',
                             'Otherstuff': '...'})
    # You can also delete_items in a batch.
    batch.delete_item(Key={'HashKey': 'SomeHashKey'})
Parameters:

overwrite_by_pkeys (list(string)) – De-duplicate request items in buffer if match new request item on specified primary keys. i.e ["partition_key1", "sort_key2", "sort_key3"]