amazon-archives / dynamodb-import-export-tool

Exports DynamoDB items via parallel scan into a blocking queue, then consumes the queue and import DynamoDB items into a replica table using asynchronous writes.
Apache License 2.0
90 stars 38 forks source link

Log item counts that are written to destination #12

Open sribalakumar opened 6 years ago

sribalakumar commented 6 years ago

In case of large tables, there is no logs to infer on the current status of the worker. So logging the count of batches written will be helpful.

Something like a global thread safe counter which increments and logs on every successful batch write should be helpful.