This topic describes how to migrate full data from an Amazon RDS for PostgreSQL instance to an ApsaraDB RDS for PostgreSQL instance by using Data Transmission Service (DTS).

Prerequisites

  • The version of the Amazon RDS for PostgreSQL instance is 9.4 or later.
  • The Public accessibility option of the Amazon RDS for PostgreSQL instance is set to Yes. This ensures that DTS can access the Amazon RDS for PostgreSQL instance over the Internet.
  • An ApsaraDB RDS for PostgreSQL instance is created. For more information, see Create an ApsaraDB RDS for PostgreSQL instance.
    Note We recommend that you select the same major version of the ApsaraDB RDS for PostgreSQL instance as that of the Amazon RDS for PostgreSQL instance. To migrate data between different database versions, create a pay-as-you-go instance to verify compatibility.
  • The available storage space of the ApsaraDB RDS for PostgreSQL instance is larger than the total size of the data in the Amazon RDS for PostgreSQL instance.

Usage notes

  • DTS uses read and write resources of the source and destination databases during full data migration. This may increase the loads of the database servers. 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 impact of data migration on 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 utilization of the source and destination databases is less than 30%.
  • Incremental data migration is not supported in this scenario. Before you start the data migration task, you must stop the services that run on the Amazon RDS for PostgreSQL instance. To ensure data consistency, we recommend that you do not write data to the Amazon RDS for PostgreSQL instance during data migration.
  • Each data migration task can migrate data from only a single database. To migrate data from multiple databases, you must create a data migration task for each database.
  • DTS does not migrate functions that are written in the C programming language.
  • The tables to be migrated in the source database must have PRIMARY KEY or UNIQUE constraints and all fields must be unique. Otherwise, the destination database may contain duplicate data records.
  • If a data migration task fails, DTS automatically resumes the task. Before you switch your workloads to the destination instance, stop or release the data migration task. Otherwise, the data in the source instance overwrites the data in the destination instance after the task is resumed.

Billing

Migration typeTask configuration feeInternet traffic fee
Schema migration and full data migrationFree of charge.Charged only when data is migrated from Alibaba Cloud over the Internet. For more information, see Billing overview.

Migration types

  • Schema migration

    DTS migrates the schemas of objects to the ApsaraDB RDS for PostgreSQL instance. DTS supports schema migration for the following types of objects: table, trigger, view, sequence, function, user-defined type, rule, domain, operation, and aggregate.

  • Full data migration

    DTS migrates the historical data of objects from the Amazon RDS for PostgreSQL instance to the ApsaraDB RDS for PostgreSQL instance.

Permissions required for database accounts

DatabaseSchema migrationFull data migration
Amazon RDS for PostgreSQL instanceUSAGE permission on pg_catalogSELECT permission on the objects to be migrated
ApsaraDB RDS for PostgreSQL instanceCREATE and USAGE permissions on the objects to be migratedOwner permissions on schemas

Process of full data migration

To prevent data migration failures caused by dependencies between objects, DTS migrates the schemas and data of the source Amazon RDS for PostgreSQL instance in the following order:

  1. Migrate the schemas of tables, views, sequences, functions, user-defined types, rules, domains, operations, and aggregates.
  2. Perform full data migration.
  3. Migrate the schemas of triggers and foreign keys.

Preparation 1: Edit the inbound rule of the Amazon RDS for PostgreSQL instance

  1. Log on to the Amazon RDS Management Console.
  2. Go to the Basic Information page of the source Amazon RDS for PostgreSQL instance.
  3. In the Security group rules section, click the name of the security group to which the existing inbound rule belongs.
    Security group rules
  4. On the Security Groups page, click the Inbound tab in the Security Group section. On the Inbound tab, click Edit. In the Edit inbound rules dialog box, add the CIDR blocks of DTS servers that reside in the corresponding region to the inbound rule. For more information, see Add the CIDR blocks of DTS servers to the security settings of on-premises databases.
    Edit the inbound rule of the Amazon RDS for PostgreSQL instance
    Note
    • You need to add only the CIDR blocks of DTS servers that reside in the same region as the destination database. For example, the source database resides in the Singapore region and the destination database resides in the China (Hangzhou) region. You need to add only the CIDR blocks of DTS servers that reside in the China (Hangzhou) region.
    • You can add all of the required CIDR blocks to the inbound rule at a time.

Preparation 2: Create a database and a schema in the destination ApsaraDB RDS for PostgreSQL instance

Create a database and a schema in the destination ApsaraDB RDS for PostgreSQL instance based on the database and schema information of the objects to be migrated. The schema name of the source and destination databases must be the same. For more information, see Create a database on an ApsaraDB RDS for PostgreSQL instance and Manage accounts by using schemas.

Procedure

  1. Log on to the DTS console.
    Note If you are redirected to the Data Management (DMS) console, you can click the old icon in the lower-right corner to go to the previous version of the DTS console.
  2. In the left-side navigation pane, click Data Migration.
  3. At the top of the Migration Tasks page, select the region where the destination cluster resides.
  4. In the upper-right corner of the page, click Create Migration Task.
  5. Configure the source and destination databases.
    Configure the source and destination databases
    SectionParameterDescription
    N/ATask NameThe name of the task. DTS automatically generates a task name. We recommend that you specify a descriptive name to identify the task. You do not need to specify a unique task name.
    Source DatabaseInstance TypeThe instance type of the source database. Select User-Created Database with Public IP Address.
    Instance RegionThe region in which the source instance resides. If you select User-Created Database with Public IP Address as the instance type, you do not need to specify the Instance Region parameter.
    Database TypeThe type of the source database. Select PostgreSQL.
    Hostname or IP AddressThe endpoint that is used to access the Amazon RDS for PostgreSQL instance.
    Note You can obtain the endpoint on the Basic Information page of the Amazon RDS for PostgreSQL instance.
    Endpoint
    Port NumberThe service port number of the Amazon RDS for PostgreSQL instance. The default port number is 5432.
    Database NameThe name of the source database in the Amazon RDS for PostgreSQL instance.
    Database AccountThe database account of the Amazon RDS for PostgreSQL instance. For information about the permissions that are required for the account, see the Permissions required for database accounts section of this topic.
    Database PasswordThe password of the database account.
    Note After you specify the source database parameters, click Test Connectivity next to Database Password to verify whether the specified parameters are valid. If the specified parameters are valid, the Passed message is displayed. If the Failed message is displayed, click Check next to Failed to modify the source database parameters based on the check results.
    Destination DatabaseInstance TypeThe instance type of the destination database. Select RDS Instance.
    Instance RegionThe region in which the ApsaraDB RDS for PostgreSQL instance resides.
    RDS Instance IDThe ID of the ApsaraDB RDS for PostgreSQL instance.
    Database NameThe name of the destination database in the ApsaraDB RDS for PostgreSQL instance. The name can be different from the name of the source database in the Amazon RDS for PostgreSQL instance.
    Note Before you configure the data migration task, you must create a database and a schema in the ApsaraDB RDS for PostgreSQL instance. For more information, see the Preparation 2: Create a database and a schema in the destination ApsaraDB RDS for PostgreSQL instance section of this topic.
    Database AccountThe database account of the ApsaraDB RDS for PostgreSQL instance. For information about the permissions that are required for the account, see the Permissions required for database accounts section of this topic.
    Database PasswordThe password of the database account.
    Note After you specify the destination database parameters, click Test Connectivity next to Database Password to verify whether the specified parameters are valid. If the specified parameters are valid, the Passed message is displayed. If the Failed message is displayed, click Check next to Failed to modify the destination database parameters based on the check results.
  6. In the lower-right corner of the page, click Set Whitelist and Next.
    Warning If the CIDR blocks of DTS servers are automatically or manually added to the whitelist of the database or instance, or to the ECS security group rules, security risks may arise. Therefore, before you use DTS to migrate data, you must understand and acknowledge the potential risks and take preventive measures, including but not limited to the following measures: enhance the security of your username and password, limit the ports that are exposed, authenticate API calls, regularly check the whitelist or ECS security group rules and forbid unauthorized CIDR blocks, or connect the database to DTS by using Express Connect, VPN Gateway, or Smart Access Gateway.
  7. Select the migration types and the objects to be migrated.
    Select the migration types and the objects to be migrated
    SettingDescription
    Select the migration typesSelect Schema Migration and Full Data Migration. In this scenario, Incremental Data Migration is not supported.
    Note To ensure data consistency, do not write data to the Amazon RDS for PostgreSQL instance during data migration.
    Select the objects to be migrated

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

    Note
    • You can select columns, tables, or databases as the objects to be migrated.
    • By default, after an object is migrated to the destination database, the name of the object remains unchanged. You can use the object name mapping feature to rename the objects that are migrated to the destination database. For more information, see Object name mapping.
    • If you use the object name mapping feature to rename an object, other objects that are dependent on the object may fail to be migrated.
    Specify whether to rename objectsYou can use the object name mapping feature to rename the objects that are migrated to the destination instance. For more information, see Object name mapping.
    Specify the retry time range for failed connections to the source or destination databaseBy default, if DTS fails to connect to the source or destination database, DTS retries within the next 12 hours. You can specify the retry time range based on your business requirements. If DTS is reconnected to the source and destination databases within the specified retry time range, DTS resumes the data migration task. Otherwise, the data migration task fails.
    Note When DTS retries a connection, you are charged for the DTS instance. We recommend that you specify the retry time range based on your business requirements. You can also release the DTS instance at the earliest opportunity after the source and destination instances are released.
  8. In the lower-right corner of the page, click Precheck.
    Note
    • Before you can start the data migration task, DTS performs a precheck. You can start the data migration task only after the task passes the precheck.
    • If the task fails to pass the precheck, you can click the Info icon icon next to each failed item to view details.
      • You can troubleshoot the issues based on the causes and run a precheck again.
      • If you do not need to troubleshoot the issues, you can ignore failed items and run a precheck again.
  9. After the task passes the precheck, click Next.
  10. In the Confirm Settings dialog box, specify the Channel Specification parameter and select Data Transmission Service (Pay-As-You-Go) Service Terms.
  11. Click Buy and Start to start the data migration task.
    Note We recommend that you do not manually stop the task during full data migration. Otherwise, the data migrated to the destination database will be incomplete. You can wait until the data migration task automatically stops.
    Full data migration
  12. Switch your workloads to the ApsaraDB RDS for PostgreSQL instance.