Data Transmission Service (DTS) lets you synchronize data from a MongoDB sharded cluster to a MongoDB replica set or sharded cluster. This topic provides an example of how to synchronize data between ApsaraDB for MongoDB instances.
Prerequisites
-
Create a destination ApsaraDB for MongoDB replica set or sharded cluster instance. For instructions, see Create a replica set instance or Create a sharded cluster instance.
Important-
We recommend that the destination ApsaraDB for MongoDB instance has at least 10% more storage space than the source ApsaraDB for MongoDB instance.
-
For information about supported versions, see Synchronization solutions overview.
-
-
Apply for endpoints for all shard nodes in the source ApsaraDB for MongoDB sharded cluster instance, and ensure that all shards use the same account and password. For instructions, see Apply for a shard endpoint.
-
If the destination MongoDB instance is a sharded cluster instance, make the necessary preparations depending on how you create the schema.
-
Not using the schema synchronization feature of DTS
In the Configure Objects step, do not select Schema Synchronization for Synchronization Types. In the destination ApsaraDB for MongoDB instance, create the databases and collections for sharding, and configure data sharding. We recommend that you enable the balancer and perform pre-sharding. For more information, see Configure data sharding to maximize shard performance and How do I handle uneven data distribution in a sharded MongoDB cluster?.
-
Using the schema synchronization feature of DTS
In the Configure Objects step, select Schema Synchronization for Synchronization Types. After schema synchronization, we recommend that you enable the balancer and perform pre-sharding. For more information, see How do I handle uneven data distribution in a sharded MongoDB cluster?.
NoteConfiguring data sharding prevents data from being synchronized to a single shard, which ensures high cluster performance. Enabling the balancer and performing pre-sharding helps prevent data skew.
-
Limitations
|
Type |
Description |
|
Source and destination database limits |
|
|
Other limits |
|
Billing
|
Synchronization type |
Pricing |
|
Schema synchronization and full data synchronization |
Free of charge. |
|
Incremental data synchronization |
Charged. For more information, see Billing overview. |
One-way data synchronization topologies
Data Transmission Service (DTS) currently supports one-way data synchronization only between two ApsaraDB for MongoDB instances that use a sharded cluster architecture. Synchronization among multiple ApsaraDB for MongoDB instances is not supported.
Synchronization types
|
Synchronization type |
Description |
|
Schema synchronization |
Synchronizes the schema of the selected objects from the source ApsaraDB for MongoDB instance to the destination ApsaraDB for MongoDB instance. |
|
Full data synchronization |
Synchronizes the historical data of the selected objects from the source ApsaraDB for MongoDB instance to the destination ApsaraDB for MongoDB instance. Note
Full data synchronization is supported for databases and collections. |
|
Incremental data synchronization |
Synchronizes incremental updates from the source ApsaraDB for MongoDB instance to the destination ApsaraDB for MongoDB instance after a full data synchronization. OplogIncremental data synchronization does not replicate databases created after the task starts. The following changes are replicated:
Change streamThe following changes are replicated:
|
Clean up orphaned documents
Before you migrate data, you must clean up the orphaned documents from the source MongoDB database.
If you do not clean up orphaned documents, migration performance may be degraded, and conflicting _id values may cause data migration errors.
ApsaraDB for MongoDB
Running the cleanup script on an instance with a major version of MongoDB earlier than 4.2 or a minor version earlier than 4.0.6 causes an error. To view the current version of your instance, see MongoDB minor versions. To upgrade the major or minor version, see Upgrade the major version of a database and Upgrade the minor version of a database.
To clean up orphaned documents, use the cleanupOrphaned command. The usage of this command differs between MongoDB 4.4 and later and MongoDB 4.2 and earlier. The following sections describe the procedures.
MongoDB 4.4 and later
-
On a server that can connect to the sharded cluster instance, create a JavaScript (JS) script named
cleanupOrphaned.js.NoteThis script cleans up orphaned documents from all collections in multiple databases across multiple shards. To clean up orphaned documents from a specific collection, you can modify the JS script.
// A list of shard names. var shardNames = ["shardName1", "shardName2"]; // A list of databases to process. var databasesToProcess = ["database1", "database2", "database3"]; shardNames.forEach(function(shardName) { // Iterate over the specified databases. databasesToProcess.forEach(function(dbName) { var dbInstance = db.getSiblingDB(dbName); // Get the names of all collections in the database instance. var collectionNames = dbInstance.getCollectionNames(); // Iterate over each collection. collectionNames.forEach(function(collectionName) { // The full name of the collection. var fullCollectionName = dbName + "." + collectionName; // Build the cleanupOrphaned command. var command = { runCommandOnShard: shardName, command: { cleanupOrphaned: fullCollectionName } }; // Run the command. var result = db.adminCommand(command); if (result.ok) { print("Cleaned up orphaned documents for collection " + fullCollectionName + " on shard " + shardName); printjson(result); } else { print("Failed to clean up orphaned documents for collection " + fullCollectionName + " on shard " + shardName); } }); }); });You must modify the values of the
shardNamesanddatabasesToProcessparameters in the script.-
shardNames: An array of IDs of the shards from which you want to clean up orphaned documents. You can obtain the shard IDs from the Shard List section on the Basic Information page of the instance. Example:d-bp15a3796d3a****. -
databasesToProcess: An array of names for the databases that require cleanup.
-
-
In the directory where the
cleanupOrphaned.jsscript is stored, run the following command.mongo --host <Mongoshost> --port <Primaryport> --authenticationDatabase <database> -u <username> -p <password> cleanupOrphaned.js > output.txtThe following table describes the parameters.
Parameter
Description
<Mongoshost>The endpoint of the mongos node of the sharded cluster instance. Example:
s-bp14423a2a51****.mongodb.rds.aliyuncs.com.<Primaryport>The port number of the mongos node of the sharded cluster instance. The default value is 3717.
<database>The name of the authentication database. This is the database where the specified database account is defined.
<username>The database account.
<password>The password for the database account.
output.txtThe destination file for the execution results.
MongoDB 4.2 and earlier
-
On a server that can connect to the sharded cluster instance, create a JS script named
cleanupOrphaned.js.NoteThis script cleans up orphaned documents from a specific collection in a specific database across multiple shards. To clean up orphaned documents from multiple collections, you can either run the script multiple times with a modified
fullCollectionNameparameter or modify the script to iterate through the collections.function cleanupOrphanedOnShard(shardName, fullCollectionName) { var nextKey = { }; var result; while ( nextKey != null ) { var command = { runCommandOnShard: shardName, command: { cleanupOrphaned: fullCollectionName, startingFromKey: nextKey } }; result = db.adminCommand(command); printjson(result); if (result.ok != 1 || !(result.results.hasOwnProperty(shardName)) || result.results[shardName].ok != 1 ) { print("Unable to complete at this time: failure or timeout.") break } nextKey = result.results[shardName].stoppedAtKey; } print("cleanupOrphaned done for coll: " + fullCollectionName + " on shard: " + shardName) } var shardNames = ["shardName1", "shardName2", "shardName3"] var fullCollectionName = "database.collection" shardNames.forEach(function(shardName) { cleanupOrphanedOnShard(shardName, fullCollectionName); });You must modify the values of the
shardNamesandfullCollectionNameparameters in the script.-
shardNames: An array of IDs of the shards from which you want to clean up orphaned documents. You can obtain the shard IDs from the Shard List section on the Basic Information page of the instance. Example:d-bp15a3796d3a****. -
fullCollectionName: The name of the collection to clean up, in the formatdatabase.collection.
-
-
In the directory where the
cleanupOrphaned.jsscript is stored, run the following command.mongo --host <Mongoshost> --port <Primaryport> --authenticationDatabase <database> -u <username> -p <password> cleanupOrphaned.js > output.txtThe following table describes the parameters.
Parameter
Description
<Mongoshost>The endpoint of the mongos node of the sharded cluster instance. Example:
s-bp14423a2a51****.mongodb.rds.aliyuncs.com.<Primaryport>The port number of the mongos node of the sharded cluster instance. The default value is 3717.
<database>The name of the authentication database. This is the database where the specified database account is defined.
<username>The database account.
<password>The password for the database account.
output.txtThe destination file for the execution results.
Self-managed MongoDB
-
On a server that can connect to your self-managed MongoDB database, download the cleanupOrphaned.js script file.
wget "https://docs-aliyun.cn-hangzhou.oss.aliyun-inc.com/assets/attach/120562/cn_zh/1564451237979/cleanupOrphaned.js" -
Modify the cleanupOrphaned.js script file. Replace
testwith the name of the database to clean up.ImportantIf you have multiple databases, you must repeat Step 2 and Step 3 for each database.
function cleanupOrphaned(coll) { var nextKey = { }; var result; while ( nextKey != null ) { result = db.adminCommand( { cleanupOrphaned: coll, startingFromKey: nextKey } ); if (result.ok != 1) print("Unable to complete at this time: failure or timeout.") printjson(result); nextKey = result.stoppedAtKey; } } var dbName = 'test' db = db.getSiblingDB(dbName) db.getCollectionNames().forEach(function(collName) { cleanupOrphaned(dbName + "." + collName); }); -
Run the following command to clean up orphaned documents from all collections in the specified database on a shard.
NoteYou must repeat this step for each shard to clean up its orphaned documents.
mongo --host <Shardhost> --port <Primaryport> --authenticationDatabase <database> -u <username> -p <password> cleanupOrphaned.jsNote-
<Shardhost>: The IP address of the shard.
-
<Primaryport>: The service port of the primary node in the shard.
-
<database>: The name of the authentication database. This is the database where the specified database account is defined.
-
<username>: The database account.
-
<password>: The password for the database account.
Example:
In this example, a self-managed MongoDB database has three shards. You must run the command on each shard to clean up its orphaned documents.
mongo --host 172.16.1.10 --port 27018 --authenticationDatabase admin -u dtstest -p 'Test123456' cleanupOrphaned.jsmongo --host 172.16.1.11 --port 27021 --authenticationDatabase admin -u dtstest -p 'Test123456' cleanupOrphaned.jsmongo --host 172.16.1.12 --port 27024 --authenticationDatabase admin -u dtstest -p 'Test123456' cleanupOrphaned.js -
Procedure
This topic provides an example of configuring a DTS task before purchasing the instance. In this scenario, you do not need to specify the number of shards for the source ApsaraDB for MongoDB sharded cluster. If you purchase a DTS instance before configuring the task, you must specify the correct number of shards during the purchase.
Go to the data synchronization task list page in the destination region. You can do this in one of two ways.
DTS console
Log on to the DTS console.
In the navigation pane on the left, click Data Synchronization.
In the upper-left corner of the page, select the region where the synchronization instance is located.
DMS console
NoteThe actual steps may vary depending on the mode and layout of the DMS console. For more information, see Simple mode console and Customize DMS console layout and style.
Log on to the DMS console.
In the top menu bar, choose .
To the right of Data Synchronization Tasks, select the region of the synchronization instance.
Click Create Task to open the task configuration page.
-
Configure the source and destination databases.
Category
Parameter
Description
N/A
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
Select Existing Connection
Select the registered database instance with DTS from the drop-down list. The database information below is automatically configured.
NoteIn the DMS console, this configuration item is Select a DMS database instance.
If you have not registered the database instance or do not need to use a registered instance, manually configure the database information below.
Database Type
Select MongoDB.
Access Method
Select Alibaba Cloud Instance.
Instance Region
Select the region of the source ApsaraDB for MongoDB instance.
Replicate Data Across Alibaba Cloud Accounts
For this example, select No, as the database instance belongs to the current Alibaba Cloud account.
Architecture
Select Sharded Cluster.
Migration Method
Select a method for incremental data synchronization based on your requirements.
-
Oplog (Recommended):
This option is available if Oplog is enabled for the source database.
NoteOplog is enabled by default for self-managed MongoDB databases and ApsaraDB for MongoDB instances. This method offers lower latency for incremental synchronization tasks because logs are retrieved faster. We recommend selecting Oplog.
-
ChangeStream:
This option is available if Change Streams are enabled for the source database.
Note-
If the source database is an Amazon DocumentDB (non-elastic cluster) instance, you can select only ChangeStream.
-
If you set Architecture of the source database to Sharded Cluster, you do not need to specify Shard account and Shard password.
-
Instance ID
Select the ID of the source ApsaraDB for MongoDB instance.
Authentication Database
Enter the name of the database to which the database account of the source ApsaraDB for MongoDB instance belongs. The default value is admin.
Database Account
Enter the database account of the source ApsaraDB for MongoDB instance. The account must have read permissions on the databases to be synchronized, and on the config, admin, and local databases.
Database Password
Enter the password for the specified database account.
Shard account
Enter the account that is used to access the shards of the source ApsaraDB for MongoDB instance.
NoteIf your source database is a self-managed MongoDB database, you must also specify the shard access information.
Shard password
Enter the password for the shard account of the source ApsaraDB for MongoDB instance.
Encryption
DTS supports three connection methods: Non-encrypted, SSL-encrypted, and Mongo Atlas SSL. The options for Encryption vary based on the selected Access Method and Architecture. The options displayed in the console prevail.
Note-
A MongoDB database where the Architecture is Sharded Cluster and the Migration Method is Oplog does not support SSL-encrypted.
-
If the source is a self-managed MongoDB database (Access Method is not Alibaba Cloud Instance) with a Replica Set architecture, and you select SSL-encrypted, DTS also allows you to upload a CA certificate to verify the connection.
Destination Database
Select Existing Connection
Select the registered database instance with DTS from the drop-down list. The database information below is automatically configured.
NoteIn the DMS console, this configuration item is Select a DMS database instance.
If you have not registered the database instance or do not need to use a registered instance, manually configure the database information below.
Database Type
Select MongoDB.
Access Method
Select Alibaba Cloud Instance.
Instance Region
Select the region of the destination ApsaraDB for MongoDB instance.
Replicate Data Across Alibaba Cloud Accounts
For this example, select No, as the database instance belongs to the current Alibaba Cloud account.
Architecture
Select the architecture of the destination ApsaraDB for MongoDB instance.
Instance ID
Select the ID of the destination ApsaraDB for MongoDB instance.
Authentication Database
Enter the name of the database to which the database account of the destination ApsaraDB for MongoDB instance belongs. The default value is admin.
Database Account
Enter the database account of the destination ApsaraDB for MongoDB instance. The account must have the dbAdminAnyDatabase permission, the readWrite permission on the destination database, and the read permission on the local database.
Database Password
Enter the password for the specified database account.
Encryption
DTS supports three connection methods: Non-encrypted, SSL-encrypted, and Mongo Atlas SSL. The options for Encryption vary based on the selected Access Method and Architecture. The options displayed in the console prevail.
Note-
MongoDB databases with an Architecture of Sharded Cluster do not support SSL-encrypted.
-
If the destination is a self-managed MongoDB database (Access Method is not Alibaba Cloud Instance) with a Replica Set, and you select SSL-encrypted, DTS also allows you to upload a CA certificate to verify the connection.
After completing the configuration, click Test Connectivity and Proceed at the bottom of the page.
NoteEnsure that you add the CIDR blocks of the DTS servers (either automatically or manually) to the security settings of both the source and destination databases to allow access. For more information, see Add the IP address whitelist of DTS servers.
If the source or destination is a self-managed database (i.e., the Access Method is not Alibaba Cloud Instance), you must also click Test Connectivity in the CIDR Blocks of DTS Servers dialog box.
-
Configure the task objects.
-
On the Configure Objects page, specify the objects to synchronize.
Parameter
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.
ImportantIf the destination MongoDB instance is a sharded cluster and you do not need to use the schema synchronization feature of DTS (for example, data sharding is already configured on the destination), do not select Schema Synchronization. Otherwise, shard conflicts may cause data inconsistency or task failure.
Synchronization Topology
Select One-way Synchronization.
Processing Mode of Conflicting Tables
Precheck and Report Errors: Checks if the destination database contains collections with the same names. If a collection with a duplicate name is found, an error is reported during the precheck phase and the data synchronization task does not start. Otherwise, the precheck is successful.
NoteIf you cannot delete or rename the collection with the same name in the destination database, you can use the object name mapping feature to change the collection name in the destination database. For more information, see Set the name of a synchronization object in the destination instance.
Ignore Errors and Proceed: Skips checking for collections with the same name in the destination database.
WarningSelecting Ignore Errors and Proceed may cause data inconsistency and put your business at risk. For example:
If a record in the destination database has the same primary key or unique key value as a record in the source database, the record in the destination database is retained. The record from the source database is not synchronized to the destination database.
Data initialization may fail, only some data may be synchronized, or the synchronization may fail.
Capitalization of Object Names in Destination Instance
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.NoteYou can select objects at the DATABASE or COLLECTION level.
Selected Objects
To set the name of a synchronization object in the destination instance, right-click the object in the Selected Objects box to modify it. For more information, see Object name mapping.
To remove a synchronization object, click it in the Selected Objects box, and then click
to move it to the Source Objects box.
Note-
To select incremental operations at the database or collection level, right-click the desired object in the Selected Objects box and make your selections in the dialog box that appears.
-
To filter data (supported during full synchronization but not incremental synchronization), right-click the desired collection in the Selected Objects box and configure the settings in the dialog box that appears. For instructions, see Configure filter conditions.
-
If you use the object name mapping feature to specify a database or collection to receive data, synchronization may fail for other objects that depend on the mapped object.
-
Click Next: Advanced Settings.
Parameter
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.
NoteIf 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.
ImportantThe 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).
NoteThis parameter is available only if Synchronization Types is set to Full Data Synchronization.
You can also adjust the rate of full data synchronization when the synchronization instance is running.
Only one data type for primary key _id in a table of the data to be synchronized
Specify whether the data types of the
_idprimary key are unique within each collection to be synchronized.Important-
Select an option based on your actual data. An incorrect selection may lead to data loss.
-
This parameter is available only if Synchronization Types includes Full Data Synchronization.
-
Yes: The data types are unique. During the full synchronization phase, DTS does not scan the data types of the primary keys in the source data. For each collection, DTS synchronizes only the data corresponding to one primary key data type.
-
No: The data types are not unique. During the full synchronization phase, DTS scans the data types of the primary keys in the source data and synchronizes all the data.
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 business requirements. You do not need to select a tag in this example.
Configure ETL
Choose whether to enable the extract, transform, and load (ETL) feature. For more information, see What is ETL? Valid values:
-
Yes: Enables the ETL feature. Enter data processing statements in the code editor. For more information, see Configure ETL in a data migration or data synchronization task.
-
No: Disables the ETL feature.
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.
No: No alerts are configured.
Yes: Configures alerts. You must also set the alert threshold and alert notifications. For more information, see Configure monitoring and alerting during task configuration.
Click Data Verification to configure a data verification task.
To use the data verification feature, see Configure data verification.
-
Save the task and perform a precheck.
To view the parameters for configuring this instance via an API operation, hover over the Next: Save Task Settings and Precheck button and click Preview OpenAPI parameters in the tooltip.
If you have finished viewing the API parameters, click Next: Save Task Settings and Precheck at the bottom of the page.
NoteBefore a synchronization task starts, DTS performs a precheck. You can start the task only if the precheck passes.
If the precheck fails, click View Details next to the failed item, fix the issue as prompted, and then rerun the precheck.
If the precheck generates warnings:
For non-ignorable warning, click View Details next to the item, fix the issue as prompted, and run the precheck again.
For ignorable warnings, you can bypass them by clicking Confirm Alert Details, then Ignore, and then OK. Finally, click Precheck Again to skip the warning and run the precheck again. Ignoring precheck warnings may lead to data inconsistencies and other business risks. Proceed with caution.
-
Purchase the instance.
When the Success Rate reaches 100%, click Next: Purchase Instance.
On the Purchase page, select the billing method and link specifications for the data synchronization instance. For more information, see the following table.
Category
Parameter
Description
New Instance Class
Billing Method
Subscription: You pay upfront for a specific duration. This is cost-effective for long-term, continuous tasks.
Pay-as-you-go: You are billed hourly for actual usage. This is ideal for short-term or test tasks, as you can release the instance at any time to save costs.
Resource Group Settings
The resource group to which the instance belongs. The default is default resource group. For more information, see What is Resource Management?.
Instance Class
DTS offers synchronization specifications at different performance levels that affect the synchronization rate. Select a specification based on your business requirements. For more information, see Data synchronization link specifications.
Subscription Duration
In subscription mode, select the duration and quantity of the instance. Monthly options range from 1 to 9 months. Yearly options include 1, 2, 3, or 5 years.
NoteThis option appears only when the billing method is Subscription.
Read and select the checkbox for Data Transmission Service (Pay-as-you-go) Service Terms.
Click Buy and Start, and then click OK in the OK dialog box.
You can monitor the task progress on the data synchronization page.