Akhil
Akhil

Reputation: 73

How to migrate DynamoDb to RDS (Aurora)

I'm quite new in AWS. I have a running database on DynamoDB and now want to migrate to Amazon RDS (Aurora)? I am not getting any clue how to do that? Welcome for any kind of help or assessment. I also need to consider the downtime and transformation tools for NoSQL to Relational DB.

Upvotes: 3

Views: 7949

Answers (1)

Icehorn
Icehorn

Reputation: 1347

One method you could do, is to use AWS Data Pipeline in order to export the dynamodb data into S3, and then import the data from S3 into the relational database of your choice.

More info here: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBPipeline.html

Upvotes: 5

Related Questions