Reputation: 23
I have running MariaDB Database and I want to migrate it to Amazon Aurora, how can I migrate It to Amazon Aurora
Upvotes: 2
Views: 3135
Reputation: 2820
This migration is doable in multiple ways. Few questions to begin with :
Which version of Maria DB are you currently on and which version of Aurora Mysql are you planning to move to?
Are you already on RDS MariaDB? If yes, the migration might be a bit simple with snapshot restore.
If you are not currently on RDS MariaDB:
MariaDB 10.0 to Aurora 5.6 and MariaDB 10.1, 10.2, 10.3 to Aurora 5.7 should be doable without much complications. This is based on the compatibility shown here: https://mariadb.com/kb/en/mariadb-vs-mysql-compatibility/ . You would most likely export your data using mysqldump and then import them via SQL apis or LOAD from S3 that Aurora supports.
For any other migrations, you might need to do additional steps since you'd be crossing the compatibility boundaries.
Doc: https://docs.aws.amazon.com/dms/latest/sbs/CHAP_MySQL2Aurora.html
If you are already on RDS Maria DB:
Upvotes: 1