Export data from DynamoDB

后端 未结 17 1840
离开以前
离开以前 2020-12-13 04:02

Is it possible to export data from DynamoDB table in some format?

The concrete use case is that I want to export data from my production dynamodb database and import

17条回答
  •  既然无缘
    2020-12-13 04:38

    I found the best current tool for simple import/exports (including round-tripping through DynamoDB Local) is this Python script:

    https://github.com/bchew/dynamodump

    This script supports schema export/import as well as data import/export. It also uses the batch APIs for efficient operations.

    I have used it successfully to take data from a DynamoDB table to DynamoDB local for development purposes and it worked pretty well for my needs.

提交回复
热议问题