Data Migration from On-premises MySQL DB to RDS MySQL and Regular Updates from On-premises MySQL DB

0

I have an on-premises MySQL database that needs to be migrated to an AWS RDS MySQL database. The on-premises database will be updated regularly, and I want to update the RDS database with the latest records from the on-premises database on a daily basis at a scheduled time. The two databases have schema differences, and I need to modify the data from the on-premises database to match the schema of the RDS database. I will not be performing any analytics on the data, and the RDS database will be used as the database for a web application.

Can you suggest an ideal approach for this scenario?

Thanks in Advance!

1 個回答
0
已接受的答案

Your use case will allow full leverage on AWS DMS for MySQL: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html

  1. You can have different schemas: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_SchemaConversion.html
  2. Transformation rules will allow you to adapt content for new schema: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.SelectionTransformation.Transformations.html
  3. DMS will agregate the changes for you. and apply them when desired via checkpoints: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Task.CDC.html
profile pictureAWS
專家
已回答 1 年前
profile pictureAWS
專家
已審閱 1 年前
  • Thank you so much. this is helpful. decided to implement with DMS. Thanks again!!

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南