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 global-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 global-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 global-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 global-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.
-
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://truststore.pki.rds.amazonaws.com/global/global-bundle.pem
-
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
-
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 global-bundle.pem
-
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 themongodump
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 global-bundle.pem
-
Drop the
restaurants
collection — Before you restore therestaurants
collection in thebusiness
database, you have to first drop the collection that already exists in that database, as follows.use business
db.restaurants.drop()
-
Restore the data with
mongorestore
— With the binary dump of the data from Step 3, you can now use themongorestore
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 global-bundle.pem restaurantDump.bson
-
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 global-bundle.pem
-
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