Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex StoreDoc
  • Getting started
    • All tutorials
    • Sharding collections
    • Migrating data to Yandex StoreDoc
    • Migrating Yandex StoreDoc cluster from version 4.4 to 6.0
    • Migrating collections from a third-party Yandex StoreDoc cluster
    • Yandex StoreDoc performance analysis and tuning
    • Delivering data from Yandex Managed Service for Apache Kafka® using Yandex Data Transfer
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Public materials
  • Release notes

In this article:

  • Required paid resources
  • Getting started
  • Migrating data using Yandex Data Transfer
  • Migration via database dump
  • Create a dump
  • Optionally, create a VM for dump upload
  • Restore the data
  1. Tutorials
  2. Migrating data to Yandex StoreDoc

Migrating data to Yandex StoreDoc

Written by
Yandex Cloud
Updated at April 13, 2026
  • Required paid resources
  • Getting started
  • Migrating data using Yandex Data Transfer
  • Migration via database dump
    • Create a dump
    • Optionally, create a VM for dump upload
    • Restore the data

To migrate your data to Yandex StoreDoc, follow these steps: transfer the data, switch the legacy database to read-only mode, transfer the workload over to the target cluster in Yandex Cloud.

You can migrate data from a third-party source cluster to a Yandex StoreDoc target cluster using the following two methods:

  • Migrating data via Yandex Data Transfer.

    This migration method allows you to:

    • Migrate your database with zero downtime.
    • Migrate from older to newer versions of MongoDB.
    • Eliminate the need for an intermediate VM or for exposing your Yandex StoreDoc target cluster to the internet.

    To use this migration method, enable internet access to the source cluster.

    For more information, see Problems addressed by Yandex Data Transfer.

  • Migration via database dump.

    A dump is a collection of files allowing you to restore a database to a specific state. To migrate data to a Yandex StoreDoc cluster, create a database dump using mongodump and restore it on the target cluster using mongorestore. To ensure dump integrity, switch the source cluster to read-only mode before creating the dump.

Required paid resourcesRequired paid resources

When migrating data using Data Transfer, you pay for the following 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).
  • Each transfer: use of computing resources and the number of transferred data rows (see Data Transfer pricing).

When migrating data using a database dump, you pay for the following 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).
  • VM instance: use of computing resources, storage, public IP address, and OS (see Compute Cloud pricing).

Getting startedGetting started

Create a Yandex StoreDoc target cluster with computing capacity and storage size matching the source database’s environment.

The source and target database names must be the same.

Migrating data using Yandex Data TransferMigrating data using Yandex Data Transfer

  1. Prepare the source cluster.

  2. Prepare the target cluster.

  3. 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 Series collections is not supported, so you should exclude such collections in the endpoint settings.

  4. 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.

  5. 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 _id field 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 _id field type requirement will not be met for some of the documents in the collection.

  6. Activate the transfer.

  7. Wait for the transfer status to change to Replicating.

  8. Switch the source cluster to "read-only" mode and transfer the load to the target cluster.

  9. 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.

  10. Deactivate the transfer and wait for its status to change to Stopped.

    For more information about transfer statuses, see Transfer lifecycle.

  11. Delete the stopped transfer.

  12. Delete the source and target endpoints.

Migration via database dumpMigration via database dump

Procedure:

  1. Create a dump of the source database using mongodump.
  2. If necessary, create a VM in Compute Cloud to restore the database from the dump within the Yandex Cloud infrastructure.
  3. Restore the data from the dump to the cluster using mongorestore.

Create a dumpCreate a dump

Use mongodump to create a database dump.

  1. Install mongodump and other MongoDB tools. Example for Ubuntu 20.04 LTS:

    wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
    echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
    sudo apt update
    sudo apt install mongodb-org-shell mongodb-org-tools
    
  2. Before creating a dump, we recommend switching your database to read-only mode to avoid losing any data that might be written during the dump process.

  3. Create a database dump:

    mongodump --host <DBMS_server_address> \
              --port <port> \
              --username <username> \
              --password "<password>" \
              --db <DB_name> \
              --out ~/db_dump
    

    If you can use multiple CPU cores for the dump, specify the -j flag with the number of available cores:

    mongodump --host <DBMS_server_address> \
              --port <port> \
              --username <username> \
              --password "<password>" \
              -j <number_of_cores> \
              --db <DB_name> \
              --out ~/db_dump
    
  4. Archive the dump:

    tar -cvzf db_dump.tar.gz ~/db_dump
    

Optionally, create a VM for dump uploadOptionally, create a VM for dump upload

You will need an intermediate VM in Yandex Compute Cloud under the following conditions:

  • Your Yandex StoreDoc cluster is not reachable from the internet.
  • Your hardware or connection to the cluster in Yandex Cloud is not very reliable.

To prepare your virtual machine for dump recovery:

  1. In the management console, create a new VM from an Ubuntu 20.04 LTS image. The necessary amount of RAM and the number of CPU cores depend on the volume of data transferred and the required transfer speed.

    The minimum configuration (1 core, 2 GB RAM, 10 GB disk space) should be sufficient for migrating a database of up to 1 GB. The larger the database being migrated, the more disk space and RAM are required, with the available disk space at least twice the database size.

    The VM must reside in the same network and availability zone as the Yandex StoreDoc cluster’s master host. The VM must have an external IP address, which will allow you to upload the dump from outside Yandex Cloud.

  2. Install the MongoDB client and additional database utilities:

    wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
    echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
    sudo apt update
    sudo apt install mongodb-org-shell mongodb-org-tools
    
  3. Move the database dump from your server to the VM via scp or a similar tool:

    scp ~/db_dump.tar.gz <VM_user_name>@<VM_public_address>:/tmp/db_dump.tar.gz
    
  4. Extract the dump on the virtual machine:

    tar -xzf /tmp/db_dump.tar.gz
    

Now you have a VM with a database dump, ready to be restored to the Yandex StoreDoc cluster.

Restore the dataRestore the data

Restore your database from the dump via mongorestore.

  • If you are restoring a dump from a VM located in Yandex Cloud:

    mongorestore --host <DBMS_server_address> \
                 --port <port> \
                 --username <username> \
                 --password "<password>" \
                 -j <number_of_streams> \
                 --authenticationDatabase <DB_name> \
                 --nsInclude '*.*' /tmp/db_dump
    
  • If you are restoring a dump from a server outside Yandex Cloud, you must explicitly specify the SSL settings for mongorestore:

    mongorestore --host <DBMS_server_address> \
                 --port <port> \
                 --ssl \
                 --sslCAFile <path_to_certificate_file> \
                 --username <username> \
                 --password "<password>" \
                 -j <number_of_streams> \
                 --authenticationDatabase <DB_name> \
                 --nsInclude '*.*' ~/db_dump
    
  • To transfer only specific collections, use the --nsInclude and --nsExclude flags to specify the namespaces that should be included and excluded from the collections being restored.

Was the article helpful?

Previous
Sharding collections
Next
Migrating Yandex StoreDoc cluster from version 4.4 to 6.0
© 2026 Direct Cursus Technology L.L.C.