This topic describes how to migrate data from an Amazon Aurora MySQL database to an ApsaraDB RDS for MySQL database by using Data Transmission Service (DTS). DTS supports schema migration, full data migration, and incremental data migration. When configuring a data migration task, you can select all of the supported migration types to ensure service continuity.
Prerequisites
- The Public accessibility option of Amazon Aurora MySQL is set to Yes. This ensures that DTS can access Amazon Aurora MySQL over the Internet.
- An ApsaraDB RDS for MySQL instance is created. For more information, see Create an RDS for MySQL instance.
- The available storage space of the ApsaraDB RDS for MySQL instance is larger than the total space of the data in the Amazon Aurora MySQL instance.
Precautions
- DTS uses read and write resources of the source and destination databases during full data migration. This may increase the database load. If the database performance is unfavorable, the specification is low, or the data volume is large, database services may become unavailable. For example, DTS occupies a large amount of read and write resources in the following cases: a large number of slow SQL queries are performed on the source database, the tables have no primary keys, or a deadlock occurs in the destination database. Before you migrate data, evaluate the performance of the source and destination databases. We recommend that you migrate data during off-peak hours. For example, you can migrate data when the CPU usage of the source and destination databases is less than 30%.
- The source database must have PRIMARY KEY or UNIQUE constraints and all fields must be unique. Otherwise, duplicate data may exist in the destination database.
- DTS uses the
ROUND(COLUMN,PRECISION)
function to retrieve values from columns of the float or double data type. If the precision is not specified, DTS sets the precision for the float data type to 38 digits and the precision for the double data type to 308 digits. You must check whether the precision settings meet your business requirements. - DTS automatically creates a destination database in the ApsaraDB RDS for MySQL instance.
However, if the name of the source database is invalid, you must manually create a
database in the ApsaraDB RDS for MySQL instance before you configure the data migration
task.
Note For more information about how to create a database and the database naming conventions, see Create databases and accounts.
- DTS automatically resumes a failed data migration task. Before you switch your workloads to the destination database, stop or release the data migration task. Otherwise, the data in the source database will overwrite the data in the destination database after the task is resumed.
Billing
Migration type | Instance configurations | Internet traffic |
---|---|---|
Schema migration and full data migration | Free of charge. | Charged only when data is migrated from Alibaba Cloud over the Internet. For more information, see Pricing. |
Incremental data migration | Charged. For more information, see Pricing. |
Migration types
- Schema migration
DTS migrates the schemas of the required objects to the ApsaraDB RDS for MySQL instance. DTS supports schema migration for the following types of objects: table, view, trigger, synonym, stored procedure, and function. DTS does not support schema migration for events.
Note- During schema migration, DTS changes the value of the SECURITY attribute from DEFINER to INVOKER for views, stored procedures, and functions.
- DTS does not migrate user information. Before a user can call views, stored procedures, and functions of the destination database, you must grant the read/write permissions to the user.
- Full data migration
DTS migrates historical data of the required objects from the source Amazon Aurora MySQL database to the destination ApsaraDB RDS for MySQL database.Note During full data migration, concurrent INSERT operations cause segments in the tables of the destination instance. After full data migration is complete, the tablespace of the destination instance is larger than that of the source instance.
- Incremental data migration
After full data migration is complete, DTS retrieves binary log files from the source Amazon Aurora MySQL database. Then, DTS synchronizes incremental data from the source Amazon Aurora MySQL database to the destination ApsaraDB RDS for MySQL database. Incremental data migration helps you ensure service continuity when you migrate data between MySQL databases.
Permissions required for database accounts
Database | Schema migration | Full data migration | Incremental data migration |
---|---|---|---|
Amazon Aurora MySQL | The permission to perform SELECT operations on the objects to be migrated | The permission to perform SELECT operations on the objects to be migrated | The REPLICATION SLAVE permission, REPLICATION CLIENT permission, and permission to perform SELECT operations on the objects to be migrated |
ApsaraDB RDS for MySQL | The read/write permissions for the objects to be migrated | The read/write permissions for the objects to be migrated | The read/write permissions for the objects to be migrated |
For more information about how to create and authorize a database account, see the following topics:
- Create an account for a user-created MySQL database and configure binary logging for an Amazon Aurora MySQL database
- Create an account for an RDS for MySQL instance and Change the permissions of an account for an RDS for MySQL instance for an ApsaraDB RDS for MySQL database