This topic describes how to synchronize data from an ApsaraDB RDS for PostgreSQL instance to an AnalyticDB for PostgreSQL instance by using Data Transmission Service (DTS). The data synchronization feature provided by DTS allows you to transfer and analyze data with ease.

Prerequisites

  • The tables to be synchronized from the ApsaraDB RDS for PostgreSQL instance must contain primary keys.
  • The destination AnalyticDB for PostgreSQL instance is created. For more information, see Create an AnalyticDB for PostgreSQL instance.

Usage notes

  • A data synchronization task can synchronize data from only one database. To synchronize data from multiple databases, you must create a data synchronization task for each database.
  • During data synchronization, new tables that are created in the source database can also be synchronized. However, to ensure data consistency, you must execute the following statement on the new tables before they can be synchronized:
    ALTER TABLE schema.table REPLICA IDENTITY FULL;
  • To ensure that the data synchronization task runs as expected, you can perform primary/secondary switchover only on an ApsaraDB RDS for PostgreSQL 11 instance. In this case, you must set the rds_failover_slot_mode parameter to sync. For more information, see Logical Replication Slot Failover.
    Warning If you perform primary/secondary switchover on a self-managed PostgreSQL database or an ApsaraDB RDS for PostgreSQL instance of other versions, the data synchronization task fails.
  • If one or more long-running transactions exist in the source database and incremental data is synchronized in the data synchronization task, the write-ahead logging (WAL) logs generated before the long-running transactions in the source database are committed may be accumulated. As a result, the disk space of the source database may be insufficient.

Billing

Synchronization typeTask configuration fee
Schema synchronization and full data synchronizationFree of charge.
Incremental data synchronizationCharged. For more information, see Billing overview.

Limits

  • Schema synchronization is not supported. DTS does not synchronize the schemas of objects from the source database to the destination database.
  • You can select only tables as the objects to be synchronized.
  • DTS does not synchronize the following types of data: BIT, VARBIT, GEOMETRY, UUID, TSQUERY, TSVECTOR, and TXID_SNAPSHOT.
  • If you perform a DDL operation on an object to be synchronized in the source database during data synchronization, you must perform the operation in the destination database. Then, you must restart the data synchronization task.

SQL operations that can be synchronized

INSERT, UPDATE, and DELETE

Preparations

  1. Change the value of the wal_level parameter for the source ApsaraDB RDS instance.
    Warning After you change the value of the wal_level parameter, you must restart the instance to apply the change. We recommend that you evaluate the impact on your business and change the parameter settings during off-peak hours.
    1. Log on to the ApsaraDB RDS console.
    2. In the left-side navigation pane, click Instances.
    3. In the top navigation bar, select the region in which the ApsaraDB RDS for PostgreSQL instance resides.
    4. Find the ApsaraDB RDS for PostgreSQL instance and click the ID of the instance.
    5. In the left-side navigation pane, click Parameters.
    6. On the Parameters page, find the wal_level parameter and change the parameter value to logical.
  2. Create a database, schema, and table in the destination AnalyticDB for PostgreSQL instance based on the schema of the objects to be synchronized. For more information, see SQL syntax.

Procedure

  1. Purchase a data synchronization instance. For more information, see Purchase a DTS instance.
    Note On the buy page, set Source Instance to PostgreSQL, set Destination Instance to AnalyticDB for PostgreSQL, and set Synchronization Topology to One-Way Synchronization.
  2. Log on to the DTS console.
    Note
    • If you are navigated to the Data Management (DMS) console from the DTS console, you can move the pointer over the jiqiren icon in the lower-right corner and click the Return to old version icon to return to the DTS console.
    • If you are navigated to the DTS console of the new version, you can click the Back to Old Version icon in the lower-right corner to go to the DTS console of the previous version.
  3. In the left-side navigation pane, click Data Synchronization.
  4. In the upper part of the Data Synchronization Tasks page, select the region in which the destination instance resides.
  5. Find the data synchronization instance and click Configure Task in the Actions column.
  6. Configure the source and destination instances.
    Configure the source and destination instances
    SectionParameterDescription
    N/ASynchronization Task NameThe task name that DTS automatically generates. We recommend that you specify a descriptive name that makes it easy to identify the task. You do not need to use a unique task name.
    Source Instance DetailsInstance TypeThe instance type of the source database. Select RDS Instance.
    Instance RegionThe source region that you selected on the buy page. You cannot change the value of this parameter.
    Instance IDThe ID of the ApsaraDB RDS for PostgreSQL instance.
    Database NameThe name of the source database.
    Database AccountThe privileged account of the ApsaraDB RDS for PostgreSQL instance. The account must be the owner of the selected database.
    Note If the source database runs on an ApsaraDB RDS for PostgreSQL 9.4 instance and you synchronize only DML operations, only the REPLICATION permission is required for the database account.
    Database PasswordThe password of the database account.
    Destination Instance DetailsInstance TypeThe value of this parameter is fixed to AnalyticDB for PostgreSQL.
    Instance RegionThe destination region that you selected on the buy page. You cannot change the value of this parameter.
    Instance IDThe ID of the destination AnalyticDB for PostgreSQL instance.
    Database NameThe name of the destination database.
    Note The database must exist in the AnalyticDB for PostgreSQL instance. Otherwise, you must create a database.
    Database AccountThe initial account of the AnalyticDB for PostgreSQL instance. For more information, see Create a database account.
    Note You can also enter an account that has the RDS_SUPERUSER permission. For more information, see Manage users and permissions.
    Database PasswordThe password of the database account.
  7. In the lower-right corner of the page, click Set Whitelist and Next.
    Note
    • You do not need to modify the security settings for ApsaraDB instances (such as ApsaraDB RDS for MySQL and ApsaraDB for MongoDB) and ECS-hosted databases. DTS automatically adds the CIDR blocks of DTS servers to the whitelists of ApsaraDB instances or the security group rules of Elastic Compute Service (ECS) instances. For more information, see Add the CIDR blocks of DTS servers to the security settings of on-premises databases.
    • After data synchronization is complete, we recommend that you remove the CIDR blocks of DTS servers from the whitelists or security groups.
  8. Configure the synchronization policy and the objects to be synchronized.
    Select the objects to be synchronized
    SectionParameterDescription
    Set the synchronization policyInitialize SynchronizationBy default, Initial Full Data Synchronization is selected. After the precheck, DTS synchronizes historical data of the required objects from the source database to the destination instance. The data is the basis for subsequent incremental synchronization.
    Processing Mode of Conflicting Tables
    • Clear Data

      Skip the check for empty destination tables during the precheck. Clear the data in destination tables before the full data synchronization task is initialized. If you want to synchronize your business data after testing the data synchronization task, you can select this mode.

    • Ignore

      Skips the check for empty destination tables during the precheck. Add data to the existing data during initial full data synchronization. If you want to synchronize data from multiple tables to one table, you can select this mode.

    Operation Types

    Select the types of operations that you want to synchronize based on your business requirements.

    Note The Alter Table operation is not supported.
    • Insert
    • Update
    • Delete
    • AlterTable
    Select the objects to be synchronizedN/A

    Select one or more tables from the Available section and click the Rightwards arrow icon to add the tables to the Selected section.

    Note
    • You can select only tables as objects to be synchronized.
    • You can use the object name mapping feature to rename the columns that are synchronized to the destination database. For more information, see Rename an object to be synchronized.
    Rename Databases and TablesN/A

    You can use the object name mapping feature to rename the objects that are synchronized to the destination instance. For more information, see Object name mapping.

    Retry Time for Failed ConnectionsN/A
    By default, if DTS fails to connect to the source or destination database, DTS retries within the next 720 minutes (12 hours). You can specify the retry time based on your needs. If DTS reconnects to the source and destination databases within the specified time, DTS resumes the data synchronization task. Otherwise, the data synchronization task fails.
    Note When DTS retries a connection, you are charged for the DTS instance. We recommend that you specify the retry time based on your business needs. You can also release the DTS instance at your earliest opportunity after the source and destination instances are released.
  9. In the lower-right corner of the page, click Precheck.
    Note
    • Before you can start the data synchronization task, DTS performs a precheck. You can start the data synchronization task only after the task passes the precheck.
    • If the task fails to pass the precheck, click the Info icon icon next to each failed item to view details.
      • After you troubleshoot the issues based on the causes, run a precheck again.
      • If you do not need to troubleshoot the issues, ignore failed items and run a precheck again.
  10. Close the Precheck dialog box after the following message is displayed: Precheck Passed. Then, the data synchronization task starts.
  11. Wait until initial synchronization is complete and the data synchronization task enters the Synchronizing state.
    You can view the status of the data synchronization task on the Synchronization Tasks page. View the status of a data synchronization task