How can I import bulk data from a CSV file into DynamoDB?

后端 未结 14 1825
我在风中等你
我在风中等你 2021-01-31 15:08

I am trying to import a CSV file data into AWS DynamoDB.

Here\'s what my CSV file looks like:

first_name  last_name
sri ram
Rahul   Dravid
JetPay  Underw         


        
14条回答
  •  遥遥无期
    2021-01-31 15:59

    I've created a gem for this.

    Now you can install it by running gem install dynamocli, then you can use the command:

    dynamocli import your_data.csv --to your_table
    

    Here is the link to the source code: https://github.com/matheussilvasantos/dynamocli

提交回复
热议问题