Migrating collections from MongoDB to Yandex StoreDoc
To migrate collections from a third-party MongoDB cluster to your Yandex StoreDoc cluster, follow these steps: transfer the data, switch legacy databases to read-only mode, switch the workload to your Yandex Cloud cluster.
Required paid resources
- Yandex StoreDoc cluster: computing resources allocated to hosts, storage and backup size (see Yandex StoreDoc pricing).
- Public IP addresses if public access is enabled for cluster hosts (see Virtual Private Cloud pricing).
- Per transfer: Computing resources used and the number of data rows transferred (see Data Transfer pricing).
Getting started
Make sure you can connect to the source cluster’s hosts from the internet.
Migrating data using Yandex Data Transfer
-
Create a source endpoint with the following parameters:
-
Database type:
MongoDB. -
Endpoint parameters → Connection settings:
Custom installation.Configure the source cluster connection settings.
Note
Transferring of
Time Seriescollections is not supported, so you should exclude such collections in the endpoint settings. -
-
Create a target endpoint with the following parameters:
-
Database type:
MongoDB. -
Endpoint parameters → Connection settings:
Yandex StoreDoc cluster.Specify the ID of the target cluster.
-
-
Create a Snapshot and increment-type transfer and configure it to use the previously created endpoints.
To make large collections (over 1 GB) copy more quickly, enable parallel copy in the transfer settings. Specify two or more workers. The collection will be split into the specified number of parts that will be copied concurrently.
For parallel copy to work, the
_idfield data type must be the same for all documents in the same collection. If a transfer discovers a type mismatch, the collection will not be partitioned but transferred in a single thread instead. If needed, remove documents with mismatched data types from the collection before starting a transfer.Note
If a document with a different data type is added to a collection after a transfer starts, the transfer will move it at the replication stage after the parallel copy operation is completed. However, when re-activated, the transfer will not be able to partition a collection because the
_idfield type requirement will not be met for some of the documents in the collection. -
Wait for the transfer status to change to Replicating.
-
Switch the source cluster to "read-only" mode and transfer the load to the target cluster.
-
On the transfer monitoring page, wait for the Maximum data transfer delay metric to decrease to zero. This means that all changes that occurred in the source cluster after data copying was completed are transferred to the target cluster.
-
Deactivate the transfer and wait for its status to change to Stopped.
For more information about transfer statuses, see Transfer lifecycle.
Collection migration example
- Configure the source cluster.
- Create and configure the target cluster.
- Set up the endpoints and transfer.
- Transfer data.
- Delete the resources you created.
Configure the source cluster
-
Connect to the
mongoshost on the MongoDB source cluster viamongosh. -
Create a database
db1. -
Create a user with owner privileges for
db1and log in as that user:use admin db.createUser({ user: "user1", pwd: passwordPrompt(), roles: [ { role: "dbOwner", db: "db1" } ] }) db.auth("user1") -
Fill in
collection1indb1with random values. 200,000 entries will be added to the collection:use db1 function randomName() { // Base 36 uses letters and digits to represent a number: return (Math.random()+1).toString(36).substring(2); } var day = 1000 * 60 * 60 * 24; function randomDate () { return new Date(Date.now() - (Math.floor(Math.random() * day))); } for (var i = 1; i <= 200000; ++i) { db.collection1.insertOne({ name: randomName(), creationDate: randomDate(), uid: i }); }
Create and configure the target cluster
- Create a Yandex StoreDoc cluster with your preferred configuration.
- Create a database
db1. - Create a user named
user_transferwith thereadWriterole for the new database.
- Create a Yandex StoreDoc cluster with your preferred configuration. The cluster must have at least two hosts.
- Enable sharding.
- Create a database
db1. - Create a user named
user_transferwith thereadWriterole for your new database and themdbShardingManagerrole for theadmindatabase. - Follow these steps to create and configure an empty sharded collection named
collection1in thedb1database.
Set up the endpoints and transfer
- Create the endpoint for the source cluster:
- Database type:
MongoDB. - Connection settings:
Custom installation.- CA certificate: If connecting to the source cluster requires encryption, upload the certificate file.
- Host list: Specify the FQDNs of the source cluster’s hosts.
- Port: Specify the port for connecting to the hosts.
- Authentication source:
db1. - User:
user1. - Password: Enter the
user1password.
- Database type:
- Create the endpoint for the target cluster:
- Database type:
MongoDB. - Connection settings:
MDB cluster.- Specify the target cluster ID.
- User:
user_transfer. - Password: Enter the
user_transferpassword. - Cleanup policy:
Drop.
- Database type:
- Create a transfer:
- Transfer type: Snapshot and increment.
- Source: Select the endpoint you created for the source cluster.
- Target: Select the endpoint you created for the target cluster.
- Create the endpoint for the source cluster:
- Database type:
MongoDB. - Connection settings:
Custom installation.- CA certificate: If connecting to the source cluster requires encryption, upload the certificate file.
- Host list: Specify the FQDNs of the source cluster’s hosts.
- Port: Specify the port for connecting to the hosts.
- Authentication source:
db1. - User:
user1. - Password: Enter the
user1password.
- Database type:
- Create the endpoint for the target cluster:
- Database type:
MongoDB. - Connection settings:
MDB cluster.- Specify the target cluster ID.
- User:
user_transfer. - Password: Enter the
user_transferpassword. - Cleanup policy:
Don't cleanuporTruncate.
- Database type:
- Create a transfer:
- Transfer type: Snapshot and increment.
- Source: Select the endpoint you created for the source cluster.
- Target: Select the endpoint you created for the target cluster.
Transfer the data
-
Activate the transfer.
-
Wait for the transfer status to change to Replicating.
-
Switch the source cluster to
read-only
mode and transfer the workload over to the target cluster. -
On the transfer monitoring page, wait until the Maximum data transfer delay value drops to zero. This means that all changes made in the source cluster after the initial data copy have been transferred to the target cluster.
-
Connect to the target cluster.
-
Verify that
collection1has been transferred and contains 200,000 documents, matching the count in the source cluster:use db1 db.collection1.countDocuments()200000
-
Activate the transfer.
-
Wait for the transfer status to change to Replicating.
-
Switch the source cluster to
read-only
mode and transfer the workload over to the target cluster. -
On the transfer monitoring page, wait until the Maximum data transfer delay value drops to zero. This means that all changes made in the source cluster after the initial data copy have been transferred to the target cluster.
-
Connect to the target cluster.
-
Verify that
collection1has been transferred, that it contains 200,000 documents as in the source cluster, and that the documents are distributed across shards:use db1 db.collection1.countDocuments()200000db.collection1.getShardDistribution()Shard rs01 at rs01/<host_1> { data: '7.05MiB', docs: 99752, chunks: 2, 'estimated data per chunk': '3.52MiB', 'estimated docs per chunk': 49876 } --- Shard rs02 at rs02/<host_2> { data: '7.08MiB', docs: 100248, chunks: 2, 'estimated data per chunk': '3.54MiB', 'estimated docs per chunk': 50124 } --- ...
Delete the resources you created
Some resources are not free of charge. Delete the resources you no longer need to avoid paying for them:
-
Deactivate the transfer and wait for its status to change to Stopped.
To learn more about the transfer lifecycle, see this Yandex Data Transfer guide.
-
Once the transfer is stopped, delete it.