Dumping, Restoring, Importing, and Exporting Data - Amazon DocumentDB
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Dumping, Restoring, Importing, and Exporting Data

You can use the mongodump, mongorestore, mongoexport, and mongoimport utilities to move data in and out of your Amazon DocumentDB cluster. This section discusses the purpose of each of these tools and configurations to help you achieve better performance.

mongodump

The mongodump utility creates a binary (BSON) backup of a MongoDB database. The mongodump tool is the preferred method of dumping data from your source MongoDB deployment when looking to restore it into your Amazon DocumentDB cluster due to the size efficiencies achieved by storing the data in a binary format.

Depending on the resources available on the instance or machine you are using to perform the command, you can speed up your mongodump by increasing the number of parallel connections dumped from the default 1 using the --numParallelCollections option. A good rule of thumb is to start with one worker per vCPU on your Amazon DocumentDB cluster's primary instance.

Note

We recommend MongoDB Database Tools up to and including version 100.6.1 for Amazon DocumentDB. You can access the MongoDB Database Tools downloads here.

Example Usage

The following is an example usage of the mongodump utility in the Amazon DocumentDB cluster, sample-cluster.

mongodump --ssl \ --host="sample-cluster.node.us-east-1.docdb.amazonaws.com:27017" \ --collection=sample-collection \ --db=sample-database \ --out=sample-output-file \ --numParallelCollections 4 \ --username=sample-user \ --password=abc0123 \ --sslCAFile rds-combined-ca-cn-bundle.pem

mongorestore

The mongorestore utility enables you to restore a binary (BSON) backup of a database that was created with the mongodump utility. You can improve restore performance by increasing the number of workers for each collection during the restore with the --numInsertionWorkersPerCollection option (the default is 1). A good rule of thumb is to start with one worker per vCPU on your Amazon DocumentDB cluster's primary instance.

Example Usage

The following is an example usage of the mongorestore utility in the Amazon DocumentDB cluster, sample-cluster.

mongorestore --ssl \ --host="sample-cluster.node.us-east-1.docdb.amazonaws.com:27017" \ --username=sample-user \ --password=abc0123 \ --sslCAFile rds-combined-ca-cn-bundle.pem <fileToBeRestored>

mongoexport

The mongoexport tool exports data in Amazon DocumentDB to JSON, CSV, or TSV file formats. The mongoexport tool is the preferred method of exporting data that needs to be human or machine readable.

Note

mongoexport does not directly support parallel exports. However, it is possible to increase performance by executing multiple mongoexport jobs concurrently for different collections.

Example Usage

The following is an example usage of the mongoexport tool in the Amazon DocumentDB cluster, sample-cluster.

mongoexport --ssl \ --host="sample-cluster.node.us-east-1.docdb.amazonaws.com:27017" \ --collection=sample-collection \ --db=sample-database \ --out=sample-output-file \ --username=sample-user \ --password=abc0123 \ --sslCAFile rds-combined-ca-cn-bundle.pem

mongoimport

The mongoimport tool imports the contents of JSON, CSV, or TSV files into an Amazon DocumentDB cluster. You can use the -–numInsertionWorkers parameter to parallelize and speed up the import (the default is 1).

Example Usage

The following is an example usage of the mongoimport tool in the Amazon DocumentDB cluster, sample-cluster.

mongoimport --ssl \ --host="sample-cluster.node.us-east-1.docdb.amazonaws.com:27017" \ --collection=sample-collection \ --db=sample-database \ --file=<yourFile> \ --numInsertionWorkers 4 \ --username=sample-user \ --password=abc0123 \ --sslCAFile rds-combined-ca-cn-bundle.pem

Tutorial

The following tutorial describes how to use the mongodump, mongorestore, mongoexport, and mongoimport utilities to move data in and out of an Amazon DocumentDB cluster.

  1. Prerequisites — Before you begin, ensure that your Amazon DocumentDB cluster is provisioned and that you have access to an Amazon EC2 instance in the same VPC as your cluster. For more information, see Connect using Amazon EC2.

    To be able to use the mongo utility tools, you must have the mongodb-org-tools package installed in your EC2 instance, as follows.

    sudo yum install mongodb-org-tools-4.0.18

    Because Amazon DocumentDB uses Transport Layer Security (TLS) encryption by default, you must also download the Amazon RDS certificate authority (CA) file to use the mongo shell to connect, as follows.

    wget https://s3.cn-north-1.amazonaws.com.cn/rds-downloads/rds-combined-ca-cn-bundle.pem
  2. Download sample data — For this tutorial, you will download some sample data that contains information about restaurants.

    wget https://raw.githubusercontent.com/ozlerhakan/mongodb-json-files/master/datasets/restaurant.json
  3. Import the sample data into Amazon DocumentDB — Since the data is in a logical JSON format, you will use the mongoimport utility to import the data into your Amazon DocumentDB cluster.

    mongoimport --ssl \ --host="tutorialCluster.amazonaws.com:27017" \ --collection=restaurants \ --db=business \ --file=restaurant.json \ --numInsertionWorkers 4 \ --username=<yourUsername> \ --password=<yourPassword> \ --sslCAFile rds-combined-ca-cn-bundle.pem
  4. Dump the data with mongodump — Now that you have data in your Amazon DocumentDB cluster, you can take a binary dump of that data using the mongodump utility.

    mongodump --ssl \ --host="tutorialCluster.us-east-1.docdb.amazonaws.com:27017"\ --collection=restaurants \ --db=business \ --out=restaurantDump.bson \ --numParallelCollections 4 \ --username=<yourUsername> \ --password=<yourPassword> \ --sslCAFile rds-combined-ca-cn-bundle.pem
  5. Drop the restaurants collection — Before you restore the restaurants collection in the business database, you have to first drop the collection that already exists in that database, as follows.

    use business
    db.restaurants.drop()
  6. Restore the data with mongorestore — With the binary dump of the data from Step 3, you can now use the mongorestore utility to restore your data to your Amazon DocumentDB cluster.

    mongorestore --ssl \ --host="tutorialCluster.us-east-1.docdb.amazonaws.com:27017" \ --numParallelCollections 4 \ --username=<yourUsername> \ --password=<yourPassword> \ --sslCAFile rds-combined-ca-cn-bundle.pem restaurantDump.bson
  7. Export the data using mongoexport — To complete the tutorial, export the data from your cluster in the format of a JSON file, no different than the file you imported in Step 1.

    mongoexport --ssl \ --host="tutorialCluster.node.us-east-1.docdb.amazonaws.com:27017" \ --collection=restaurants \ --db=business \ --out=restaurant2.json \ --username=<yourUsername> \ --password=<yourPassword> \ --sslCAFile rds-combined-ca-cn-bundle.pem
  8. Validation — You can validate that the output of Step 5 yields the same result as Step 1 with the following commands.

    wc -l restaurant.json

    Output from this command:

    2548 restaurant.json
    wc -l restaurant2.json

    Output from this command:

    2548 restaurant2.json