0

I have Mysql RDS1 and another Mysql RDS2 where the schema is different.

I need the any changes on RDS1 to be synced immediately to Mysql RDS2.

where the data changes due to create, insert, update and delete

Both RDS1 and RDS2 is alive and integrated to diff app.

I referred: https://aws.amazon.com/blogs/aws/fast-easy-free-sync-rds-to-redshift/

but still searching for a proper solution for my problem.

Can anybody help?

4

1 回答 1

0

您可以使用 MySQL 命令行连接到 RDS MySQL 实例

mysql -h <end_point> -P <port> -u <user_name> -p

并尝试设置一个 cron 作业来同步服务器/数据库之间的数据。

还有其他 GUI,例如https://www.webyog.com/product/sqlyog,可让您连接到 RDS 实例,并让您比较和同步分布在不同服务器上的数据库架构,还可以同步当前的数据或将其安排到特定时间。

于 2016-03-03T09:17:28.093 回答