Synchronize data from a MySQL database to Tablestore using DTS

Updated at:

You can use Data Transmission Service (DTS) to synchronize data from a MySQL database, such as a self-managed MySQL database or an ApsaraDB RDS for MySQL instance, to a Tablestore instance. This simplifies data transfers.

Note

This topic uses an ApsaraDB RDS for MySQL instance as the source database to describe the configuration process. The process for other data sources is similar.

Background information

Data Transmission Service (DTS) is a real-time data streaming service provided by Alibaba Cloud. It supports data exchange between data sources such as relational databases (RDBMS), NoSQL databases, and online analytical processing (OLAP) databases. DTS integrates data synchronization, migration, subscription, integration, and processing to help you build a secure, scalable, and highly available data architecture. For more information, see What is Data Transmission Service?.

Prerequisites

  • A Tablestore instance is created. For more information, see Create an instance.

  • Obtain the AccessKey ID and AccessKey secret of the Alibaba Cloud account that owns the Tablestore instance. For more information, see Create an AccessKey.

Usage notes

Category

Description

Source database limitations

  • The tables to synchronize must have a primary key or a unique constraint, and the fields must be unique. Otherwise, duplicate data may appear in the destination database.

  • If you synchronize at the table level and need to edit mappings (such as column name mapping), each synchronization task supports up to 1,000 tables. If you exceed this limit, the task fails with an error. To fix this, split the tables across multiple tasks or configure a full-database synchronization task.

  • Binary logs:

    • ApsaraDB RDS for MySQL enables binary logging by default. Ensure that the binlog_row_image parameter is set to full. Otherwise, the precheck fails and the synchronization task cannot start. For instructions, see Configure instance parameters.

      Important
      • If your source instance is a self-managed MySQL database, enable binary logging and set binlog_format to row and binlog_row_image to full.

      • If your self-managed MySQL database is a dual-primary cluster (where both nodes act as primary and secondary), enable the log_slave_updates parameter so DTS can capture all binary log events. For instructions, see Create an account and configure binary logging for a self-managed MySQL database.

    • The local binary logs for an ApsaraDB RDS for MySQL instance must be retained for at least three days (seven days is recommended). For a self-managed MySQL database, retain local binary logs for at least seven days. Otherwise, DTS may fail to retrieve binary logs, causing the task to fail. In extreme cases, this may cause data inconsistency or data loss. Issues caused by binary log retention periods shorter than DTS requires are not covered under the DTS SLA.

      Note

      To configure the retention period for local binary logs on an ApsaraDB RDS for MySQL instance, see Automatically delete local logs.

  • Do not run DDL operations that change database or table schemas during schema synchronization or full synchronization. Otherwise, the synchronization task fails.

    Note

    During full synchronization, DTS queries the source database. This creates metadata locks that may block DDL operations on the source database.

  • Data generated by changes that do not write to binary logs—such as data restored from physical backups or created by cascade operations—is not synchronized to the destination database.

    Note

    If this occurs, remove the affected database or table from the synchronization objects. Then add it back. You can do this only if your business allows it. For more information, see Modify synchronization objects.

  • If your source database is MySQL 8.0.23 or later and contains invisible hidden columns, DTS may not read those columns. This may cause data loss.

    Note

    Run the ALTER TABLE <table_name> ALTER COLUMN <column_name> SET VISIBLE; command to make the hidden column visible. For more information, see Invisible Columns.

  • MySQL compatibility: When DTS synchronizes data from a MySQL-family source database, it relies on the standard MySQL protocol and Binlog format, and behaviors incompatible with standard MySQL are not supported. If your source database claims MySQL compatibility but behaves differently from MySQL (for example, when OceanBase is connected as a source in MySQL mode, the timestamp of the trailing rotate event in the Binlog is 0, which differs from MySQL), the DTS synchronization task may fail.

Other limitations

  • Before you start data synchronization, evaluate the performance of the source and destination databases. We recommend that you perform data synchronization during off-peak hours. Otherwise, full data initialization occupies read and write resources of the source and destination databases, which may increase the database load.

  • Full data initialization concurrently runs INSERT operations, which causes fragmentation in the destination database tables. Therefore, the tablespace of the destination instance is larger than that of the source instance after full data initialization is complete.

  • During DTS synchronization, if data is written to the destination database by a process other than DTS, data inconsistency may occur between the source and destination databases.

  • During DTS synchronization, do not use pt-online-schema-change or similar tools to perform online DDL changes on synchronization objects in the source database. Otherwise, the task fails.

  • The number of tables to synchronize must comply with the Tablestore instance limit (no more than 64 tables). Otherwise, the synchronization task reports an error. If you need to synchronize more than 64 tables, contact Tablestore technical support to increase the table limit for the destination Tablestore instance.

  • Table and column names must comply with the Tablestore naming conventions:

    • Names consist of uppercase letters, lowercase letters, digits, or underscores (_), and must start with a letter or underscore.

    • Names must be 1 to 255 characters in length.

  • If your ApsaraDB RDS for MySQL instance has Always-Encrypted enabled, full data synchronization is not supported.

    Note

    ApsaraDB RDS for MySQL instances with Transparent Data Encryption (TDE) enabled support schema synchronization, full data synchronization, and incremental data synchronization.

  • If a task fails, DTS support staff will attempt to restore it within eight hours. During restoration, they may restart the task or adjust its parameters.

    Note

    Only DTS task parameters are modified—not database parameters. Parameters that may be adjusted include those listed in Modify instance parameters.

Special cases

  • For a self-managed MySQL source database:

    • If a primary/secondary switchover occurs in the source database during synchronization, the task fails.

    • DTS calculates latency by comparing the timestamp of the last synchronized record with the current time. If no DML operations run for a long time in the source database, latency reporting may become inaccurate. If latency appears too high, run a DML operation in the source database to update the latency.

      Note

      If you select a full database for synchronization, create a heartbeat table. Update or write to this table every second.

    • DTS periodically runs the CREATE DATABASE IF NOT EXISTS `test` command in the source database to advance the binary log offset.

    • If your source database is Amazon Aurora MySQL or another clustered MySQL instance, ensure the domain name or IP address used in the task configuration—and its DNS resolution—always points to a read/write (RW) node. Otherwise, synchronization may fail.

  • For an ApsaraDB RDS for MySQL source database:

    • Read-only instances—such as ApsaraDB RDS for MySQL 5.6 read-only instances—that do not record transaction logs cannot serve as source databases.

    • DTS periodically runs the CREATE DATABASE IF NOT EXISTS `test` command in the source database to advance the binary log offset.

Synchronization types

  • Schema synchronization

    DTS synchronizes the schema definitions of objects from the source database to the destination database. These objects can include tables, views, triggers, and stored procedures.

  • Full synchronization

    DTS synchronizes all historical data of the specified objects from the source database to the destination database. This data serves as the baseline for subsequent incremental synchronization. To simplify the data synchronization process, we recommend that you select both schema synchronization and full synchronization when you configure the data synchronization task.

  • Incremental synchronization

    DTS synchronizes incremental data that is generated in the source database to the destination database in real time.

SQL operations supported for incremental synchronization

Operation type

SQL statement

DML

INSERT、UPDATE、DELETE

Required permissions for database accounts

Database

Required permissions

Account creation and authorization

SourceApsaraDB RDS for MySQL

Read and write permissions on the objects to synchronize

Create an accountandModify the permissions of a standard account on an ApsaraDB RDS for MySQL instance

Note

If the source database account is not created by using theApsaraDB RDS for MySQLconsole, make sure that the account has the REPLICATION CLIENT, REPLICATION SLAVE, SHOW VIEW, and SELECT permissions.

Procedure

  1. Go to the Synchronization Tasks page.

    1. Log on to the Data Management (DMS) console.

    2. In the top menu bar, click Integration and Development.

    3. In the left navigation pane, choose Data Transmission (DTS) > Data Synchronization.

    4. To the right of Synchronization Tasks, select the region where the synchronization instance is located.

    Note
  2. Click Create Task to open the task configuration page.

    1. Optional: In the upper-right corner, click New Configuration Page.

      Note
      • If you are already on the new configuration page (the Back to Previous Version button is in the upper-right corner), you can skip this step.

      • Some parameters differ between the new and old configuration pages. We recommend that you use the new configuration page.

    2. Configure the source and destination database information.

      Category

      Configuration

      Description

      None

      Task Name

      DTS automatically generates a task name. We recommend that you specify a descriptive name for easy identification. The name does not need to be unique.

      Source Database Information

      Select DMS Database Instance

      Choose whether to use an existing instance as needed.

      • If you use an existing instance, the database information is automatically filled in. You do not need to enter it again.

      • If you do not use an existing instance, configure the database information below.

      Note

      Database Type

      Select MySQL.

      Access Method

      Select Alibaba Cloud Instance.

      Instance Region

      Select the region where the source ApsaraDB RDS for MySQL instance resides.

      Replicate Data Across Alibaba Cloud Accounts

      This topic describes synchronization within the same Alibaba Cloud account. Select No. For cross-account scenarios, see Configure a task for cross-account data synchronization.

      RDS Instance ID

      Select the ID of the source ApsaraDB RDS for MySQL instance.

      Database Account

      Enter the database account for the source ApsaraDB RDS for MySQL instance. For permission requirements, see Permissions for database accounts.

      Database Password

      Enter the password for the specified database account.

      Encryption

      Select Non-encrypted or SSL-encrypted based on your database requirements. If you set this parameter to SSL-encrypted, you must enable SSL encryption for the RDS for MySQL instance beforehand. For more information, see Quickly enable SSL encryption using a cloud certificate.

      Destination Database Information

      Select DMS Database Instance

      Choose whether to use an existing instance as needed.

      • If you use an existing instance, the database information is automatically filled in. You do not need to enter it again.

      • If you do not use an existing instance, configure the database information below.

      Note

      Database Type

      Select Tablestore.

      Access Method

      Select Alibaba Cloud Instance.

      Instance Region

      Select the region where the destination Tablestore instance resides.

      Instance ID

      Select the name of the destination Tablestore instance.

      Alibaba Cloud Account AccessKey ID

      Enter the AccessKey ID used to identify the user. For more information about how to obtain an AccessKey ID, see Create an AccessKey pair.

      Important

      If you enter the AccessKey ID of a RAM user, you must grant the AliyunOTSFullAccess permission (permission to manage Tablestore) to the RAM user. For more information, see Grant permissions to a RAM user using a RAM policy.

      Alibaba Cloud Account AccessKey Secret

      Enter the AccessKey secret used to authenticate the user. For more information about how to obtain an AccessKey secret, see Create an AccessKey pair.

    3. After completing the configuration, click Test Connection and Proceed at the bottom of the page.

      If the source or destination database is an Alibaba Cloud database instance, such as an ApsaraDB RDS for MySQL instance or an ApsaraDB for MongoDB instance, DTS automatically adds the IP addresses of the DTS servers in the corresponding region to the whitelist of the Alibaba Cloud database instance. If the source or destination database is a self-managed database hosted on an ECS instance, DTS automatically adds the IP addresses of the DTS servers in the corresponding region to the security rules of the ECS instance. You must also ensure that the self-managed database allows access from the ECS instance. If the database is deployed in a cluster on multiple ECS instances, you must manually add the IP addresses of the DTS servers in the corresponding region to the security rules of each ECS instance. If the source or destination database is a self-managed database in an on-premises data center or another cloud database, you must manually add the IP addresses of the DTS servers in the corresponding region to allow access from the DTS servers. For a list of DTS server IP addresses, see IP address blocks of DTS servers.

      Warning

      Adding the public IP address blocks of DTS servers, whether automatically by DTS or manually by you, may pose security risks. Using this product, you acknowledge and accept these potential risks. You must implement basic security measures, such as using strong passwords, restricting open ports for each CIDR block, enabling authentication for internal API communication, and periodically reviewing and restricting unnecessary CIDR blocks. Alternatively, you can use a private network connection, such as a leased line, VPN Gateway, or Smart Access Gateway.

  3. You can configure the task object.

    1. On the Configure Objects page, you can configure the objects to synchronize.

      Configuration

      Description

      Synchronization Types

      DTS always selects Incremental Data Synchronization. By default, you must also select Schema Synchronization and Full Data Synchronization. After the precheck, DTS initializes the destination cluster with the full data of the selected source objects, which serves as the baseline for subsequent incremental synchronization.

      Processing Mode of Conflicting Tables

      • Precheck and Report Errors: Checks for tables with the same names in the destination database. If any tables with the same names are found, an error is reported during the precheck and the data synchronization task does not start. Otherwise, the precheck is successful.

        Note

        If you cannot delete or rename the table with the same name in the destination database, you can map it to a different name in the destination. For more information, see Object name mapping.

      • Ignore Errors and Proceed: Skips the check for tables with the same name in the destination database.

        Warning

        Selecting Ignore Errors and Proceed may cause data inconsistency and put your business at risk. For example:

        • If the table schemas are consistent and a record in the destination database has the same primary key or unique key value as a record in the source database:

          • During full data synchronization, DTS retains the destination record and skips the source record.

          • During incremental synchronization, DTS overwrites the destination record with the source record.

        • If the table schemas are inconsistent, data initialization may fail. This can result in only partial data synchronization or a complete synchronization failure. Use with caution.

      Synchronization Operation Types

      Select the operation types to synchronize as needed. By default, all operation types are selected.

      Dirty Data Processing Policy

      Select a policy for handling data write errors. The options are:

      • Skip

      • Block

      Data Write Mode

      Select a data write mode. The options are:

      • Row Update: Uses PutRowChange to perform row-level updates.

      • Row Overwrite: Uses UpdateRowChange to perform row-level overwrites.

      Batch Write Method

      The API operation that is called for batch writes. The options are:

      • BulkImportRequest: Offline write.

      • BatchWriteRowRequest: Batch write.

      Note

      We recommend using BulkImportRequest for improved read/write efficiency and lower billing costs for your Tablestore instance.

      More Settings

      Based on your business requirements, you can click More Settings to configure the following parameters:

      • Queue Size: The queue length of the data write process for the Tablestore instance.

      • Thread Count: The number of callback processing threads for the data write process of the Tablestore instance.

      • Concurrency: The concurrent request limit for the Tablestore instance.

      • Bucket Count: The number of concurrent buckets for sequential writing of incremental data. Increasing this value can improve concurrent write performance.

        Note

        The value of Buckets must be less than or equal to the value of Concurrency.

      Case Sensitivity Policy for Destination Object Names

      Configure the case-sensitivity policy for database, table, and column names in the destination instance. By default, the DTS default policy is selected. You can also choose to use the default policy of the source or destination database. For more information, see Case policy for destination object names.

      Source Objects

      In the Source Objects box, click the objects, and then click 向右 to move them to the Selected Objects box.

      Note

      You can select objects at the database or table level.

      Selected Objects

      • To rename a single object in the destination instance, right-click the object in the Selected Objects box. For more information, see Map a single object name.

      • To rename multiple objects in bulk, click Batch Edit in the upper-right corner of the Selected Objects box. For more information, see Map multiple object names in bulk.

      Note
      • Database name mapping is not supported. You can map table and column names only when you select objects at the table level. If you use the mapping feature, other objects that depend on the mapped object may fail to synchronize.

      • When you use the column name mapping feature, you can modify the type of the corresponding column in the destination Tablestore instance.

      • To filter data using a WHERE clause, right-click the table to synchronize in the Selected Objects box and set the filter condition in the dialog box that appears. For more information, see Set filter conditions.

    2. Click Next: Advanced Settings to configure advanced settings.

      Configuration

      Description

      Dedicated Cluster for Task Scheduling

      By default, DTS uses a shared cluster for tasks, so you do not need to make a selection. For greater task stability, you can purchase a dedicated cluster to run the DTS synchronization task. For more information, see What is a DTS dedicated cluster?.

      Retry Time for Failed Connections

      If the connection to the source or destination database fails after the synchronization task starts, DTS reports an error and immediately begins to retry the connection. The default retry duration is 720 minutes. You can customize the retry time to a value from 10 to 1,440 minutes. We recommend a duration of 30 minutes or more. If the connection is restored within this period, the task resumes automatically. Otherwise, the task fails.

      Note
      • If multiple DTS instances (e.g., Instance A and B) share a source or destination, DTS uses the shortest configured retry duration (e.g., 30 minutes for A, 60 for B, so 30 minutes is used) for all instances.

      • DTS charges for task runtime during connection retries. Set a custom duration based on your business needs, or release the DTS instance promptly after you release the source/destination instances.

      Retry Time for Other Issues

      If a non-connection issue (e.g., a DDL or DML execution error) occurs, DTS reports an error and immediately retries the operation. The default retry duration is 10 minutes. You can also customize the retry time to a value from 1 to 1,440 minutes. We recommend a duration of 10 minutes or more. If the related operations succeed within the set retry time, the synchronization task automatically resumes. Otherwise, the task fails.

      Important

      The value of Retry Time for Other Issues must be less than that of Retry Time for Failed Connections.

      Enable Throttling for Full Data Synchronization

      During full data synchronization, DTS consumes read and write resources from the source and destination databases, which can increase their load. To mitigate pressure on the destination database, you can limit the migration rate by setting Queries per second (QPS) to the source database, RPS of Full Data Migration, and Data migration speed for full migration (MB/s).

      Note

      Enable Throttling for Incremental Data Synchronization

      You can also limit the incremental synchronization rate to reduce pressure on the destination database by setting RPS of Incremental Data Synchronization and Data synchronization speed for incremental synchronization (MB/s).

      Environment Tag

      You can select an environment tag to identify the instance based on your requirements. For this example, you do not need to select a tag.

      Whether to delete SQL operations on heartbeat tables of forward and reverse tasks

      Choose whether DTS writes heartbeat SQL information to the source database while the instance is running.

      • Yes: Does not write heartbeat SQL information to the source database. The DTS instance may display latency.

      • No: Writes heartbeat SQL information to the source database. This may interfere with source database operations like physical backups and cloning.

      Configure ETL

      Choose whether to enable the extract, transform, and load (ETL) feature. For more information, see What is ETL? Valid values:

      Monitoring and Alerting

      Choose whether to set up alerts. If the synchronization fails or the latency exceeds the specified threshold, DTS sends a notification to the alert contacts.

    3. Click Next: Configure Table and Field and then click OK in the Note dialog box.

      By default, DTS uses the primary key from the original table as the Primary Key Column. You can change this by setting Definition Status to All.

      Note

      You can select multiple columns under Primary Key Column to form a composite primary key.

  4. At the bottom of the page, click Next: Save Task and Precheck.

    • To view the API operation parameters for configuring this instance, move the pointer over the Next: Save Task Settings and Precheck button, and then click Preview OpenAPI parameters in the bubble.

    • If you have finished viewing the API parameters, click Next: Save Task Settings and Precheck at the bottom of the page.

    Note
    • Before the synchronization job starts, DTS runs a precheck. The synchronization job can start only after the task passes the precheck.

    • If the precheck fails, click View Details next to the failed check item. Fix the issue as prompted, and then run the precheck again.

    • If the precheck generates a warning:

      • For failed check items that cannot be ignored, click View Details next to the item. Fix the issue as prompted, and then run the precheck again.

      • If a check item can be ignored, you can skip its warning and rerun the precheck by clicking Click to Confirm Alert Details, Confirm Mute, OK, and then Rerun Precheck. However, muting a warning may cause issues such as data inconsistency and pose risks to your business.

  5. When the Success Rate is 100%, click Next: Purchase Instance.

  6. Purchase the instance.

    1. On the Purchase page, select the billing method and configure the data synchronization instance. The following table describes the parameters.

      Category

      Parameter

      Description

      New Instance Class

      Billing Method

      • Subscription: Pay when you create the instance. This is suitable for long-term needs and is more cost-effective than pay-as-you-go. The longer the subscription duration, the greater the discount.

      • Pay-as-you-go: Billed on an hourly basis. This is suitable for short-term needs. You can release the instance immediately after use to save costs.

      • Pay-as-you-go Serverless: Billed on an hourly basis. Resources are dynamically adjusted at the minute level based on the instance load, with real-time billing (a billing order is generated every hour). You only pay for what you use, saving significant costs.

      Resource Group Configuration

      The resource group to which the instance belongs. The default is default resource group. For more information, see What is Resource Management?.

      Link Specification

      DTS provides synchronization specifications with different performance levels. The synchronization link specification affects the synchronization rate. You can choose a specification based on your business scenario. For more information, see Data synchronization link specifications.

      Note

      This option is available only when the billing method is Subscription or Pay-as-you-go.

      Serverless Scaling Configuration (DU)

      Serverless DTS uses DTS Units (DUs) for minute-level billing and scaling. The number of DUs is dynamically adjusted within a specified range based on the business load. For more information, see What is a DTS Serverless instance?.

      Note

      This option is available only when the billing method is Pay-as-you-go Serverless.

      Subscription Duration

      In subscription mode, select the duration and quantity for the subscription instance. You can choose a monthly subscription for 1 to 9 months, or a yearly subscription for 1, 2, 3, or 5 years.

      Note

      This option is available only when the billing method is Subscription.

    2. After you complete the configuration, read and select Data Transmission Service (Pay-As-You-Go) Terms of Service.

    3. Click Purchase and Start. In the Confirm dialog box, click OK.

      You can view the task progress on the Data Synchronization page.

Billing

Data synchronization

Migration type

Task configuration fee

Internet traffic fee

Schema migration and full data migration

Free.

Fees are charged for migrating data from Alibaba Cloud over the Internet. For more information, see Billing overview.

Incremental data migration

Charged. For details, see Billing overview.

Tablestore

  • When you import data into Tablestore, Tablestore charges a storage fee based on the data volume.

  • When you use a migration tool to access Tablestore, Tablestore charges for read and write operations based on the billing method.

    Note

    For more information about instance types and CUs, see Instances and Read/write throughput, respectively.

    Billing mode

    Compute capacity description

    VCU mode (Provisioned mode)

    Pay for compute performance consumption by pre-purchasing reserved VCUs based on resource assessment results or by paying for actual usage after enabling elastic capacity. Compute capacity includes the compute consumption for data reads and writes.

    CU mode (On-demand mode)

    Meters and charges for specific read and write requests based on read and write throughput. Depending on the instance type, billing distinguishes between pay-as-you-go read/write CUs and reserved read/write CUs.

    Note

    For more information about instance types and CUs, see Instances and Read/write throughput, respectively.