Copy dynamoDB table to another aws account without S3

后端 未结 7 1385
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-09 04:03

I would like to copy all the dynamoDB tables to another aws account without s3 to save the data. I saw solutions to copy table with data pipeline but all are using s3 to sav

7条回答
  •  北荒
    北荒 (楼主)
    2020-12-09 04:23

    Simple backup and restore for Amazon DynamoDB using boto

    https://github.com/bchew/dynamodump

    which can do the following:

    • Single table backup/restore
    • Multiple table backup/restore
    • Multiple table backup/restore but between different environments (e.g. production-* tables to development-* tables)
    • Backup all tables and restore only data (will not delete and recreate schema)
    • Dump all table schemas and create the schemas (e.g. creating blank tables in a different AWS account)
    • Backup all tables based on AWS tag key=value
    • Backup all tables based on AWS tag, compress and store in specified S3 bucket.
    • Restore from S3 bucket to specified destination table

提交回复
热议问题