Online migration from AWS RDS MySQL to Azure Database for MySQL

This post has been republished via RSS; it originally appeared at: Microsoft Data Migration articles.

First published on MSDN on Aug 30, 2018

Authored by scphang@microsoft.com


We recently announced public preview support for online migrations of MySQL to Azure Database for MySQL by using the Azure Database Migration Service (DMS). Customers can migrate their MySQL workloads hosted on premises, on virtual machines, or on AWS RDS to Azure Database for MySQL while the source databases remain online. This minimizes application downtime and reduces the SLA impact for customers.

Conceptionally, online migration with minimum downtime in DMS uses the following process:

1. Migrate initial load using bulk copy.

2. While initial load is being migrated, incoming changes are being cache and applied after initial load completes.

3. Changes in source database continue to replicate to target database until user decides to cutover.

4. During a planned maintenance window, stop the new transactions coming into source database. Application downtime starts with this step.

5. Wait for DMS to replicate the last batch of data.

6. Complete application cutover by updating the connection string to point to your instance of Azure Database for MySQL.

7. Bring the application online.

 

Prerequisites

Below are prerequisites setting up DMS and step-by-step instructions for connecting to a MySQL database source on AWS RDS.

    • Create a VNET for the Azure Database Migration Service by using the Azure Resource Manager deployment model, which provides site-to-site connectivity to your on-premises source servers by using either ExpressRoute or VPN .
    • Ensure that your Azure Virtual Network (VNET) Network Security Group rules do not block the following communication ports 443, 53, 9354, 445, 12000. For more detail on Azure VNET NSG traffic filtering, see the article Filter network traffic with network security groups .
    • Open your Windows firewall to allow the Azure Database Migration Service to access the source MySQL Server, which by default is TCP port 3306.
    • When using a firewall appliance in front of your source database(s), you may need to add firewall rules to allow the Azure Database Migration Service to access the source database(s) for migration.
    • Create a server-level firewall rule for the Azure Database for MySQL to allow the Azure Database Migration Service access to the target databases. Provide the subnet range of the VNET used for the Azure Database Migration Service.
    • The source MySQL must be on a supported MySQL community edition. To determine the version of the MySQL instance, run SELECT @@version; in the MySQL utility or MySQL Workbench.
    • Azure Database for MySQL supports only InnoDB tables. To convert MyISAM tables to InnoDB, see the article Converting Tables from MyISAM to InnoDB.

 

Setting up AWS RDS MySQL for replication

Use the following instructions provided by AWS to create a new parameter group (see the binary logging format section).

 

 

When creating the new parameter group, set the following values:

 

    • binlog_format = row
    • binlog_checksum= NONE


Save the new parameter group

 

Pre-migration steps and setting up DMS

Please refer to this tutorial to continue with schema migration, setting up DMS to do data movement and how to monitor data movement.

 

For known issues and workarounds, please refer to this document .


Congratulations, you have just performed a MySQL migration from AWS RDS to Azure Database for MySQL successfully!For more information, refer to the resources below. If you have any questions, please email the DMS Feedback alias at dmsfeedback@microsoft.com. 

 

Resources


Sign in on Azure portal and set up an instance of DMS for free. We are constantly adding new database source/target pairs to DMS. Stay up-to-date on #AzureDMS news and follow us on Twitter @Data_Migrations . Join the Azure Database Migration Service (DMS) Preview Yammer group, and give us feedback via User Voice or email by contacting us at dmsfeedback@microsoft.com .

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.