1 Answer
- Newest
- Most votes
- Most comments
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
- You can have different schemas: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_SchemaConversion.html
- 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
- 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
Relevant content
- asked 2 years ago
- asked 2 months ago
- asked 4 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
Thank you so much. this is helpful. decided to implement with DMS. Thanks again!!