I am using AWS dynamo db to store data. Now i want to export it into mysql.
i just want a way so that, so that i can export data from dynamo db to mysql on regular basis. Mysql will be work as backup db.
what will be the best approached!
I am using AWS dynamo db to store data. Now i want to export it into mysql.
i just want a way so that, so that i can export data from dynamo db to mysql on regular basis. Mysql will be work as backup db.
what will be the best approached!
使用 Dynamo DB 的扫描功能在 java 中编写代码并将数据导出到文件中,以后可以使用 RDS 特定的 SQL 加载实用程序。您必须使用 DynamoDB 的 lastkey 功能继续扫描下一次调用并继续扫描以避免内存不足错误。
看看我的简单 node.js 脚本dynamo-archive,它导出为 JSON 格式。然后你可以解析它并导入 MySQL。