dynamodb-copy-table icon indicating copy to clipboard operation
dynamodb-copy-table copied to clipboard

A simple python script to copy dynamodb table (useful for achieving renaming of table)

Results 7 dynamodb-copy-table issues
Sort by recently updated
recently updated
newest added

Source table: ``` Partition key scheduleId (Number) Sort key timestamp (Number) ``` Command: ``` docker run --rm -v $HOME/.aws:/root/.aws -it techgaun/dynamodb-copy-table:latest source dest ``` Destination table: ``` Partition key scheduleId...

It would be nice to just get a limited number of records instead of the whole table.

This python script doesn't clone the empty object.

Tried using your script but it hangs on a dynamodb-local . Here is the modified script I was trying to use. https://github.com/djangofan/dynamodb-copy-table Here is how you can setup the local...

@jakelodwick @techgaun given a source table of x read throughput and a dest table of

LocalSecondaryIndexes is missing from the schema. GlobalSecondaryIndexes is missing as well, but that one could be created later

I use the docker command provided in the Readme. I keep getting the following error: ``` Traceback (most recent call last): File "dynamodb-copy-table.py", line 22, in ddbc = DynamoDBConnection() File...