Docs Menu
Docs Home
/
MongoDB Database Tools
/

mongorestore Behavior, Access, and Usage

On this page

  • Behavior
  • Required Access
  • Usage in Backup Strategy
  • Learn More

Warning

Data Dump and Restore Conflicts with $ Prefix in Fields

Starting in MongoDB 5.0, document field names can be prefixed with a dollar character ($). However, mongodump and mongorestore won't work with field names that are prefixed with a dollar character in a collection's options.

MongoDB Extended JSON (v2) cannot differentiate between type wrappers and fields that have the same name as type wrappers. Don't use extended JSON formats if the corresponding BSON representation might include $ prefixed keys. The DBRefs mechanism is an exception to this general rule.

When using mongorestore to load data files created by mongodump, the MongoDB versions of your source and destination deployments must be either:

  • The same major version.

  • The same feature compatibility version.

For example, if your dump was created from a MongoDB deployment running version 4.4, the MongoDB deployment you restore to must also run version 4.4 or have its FCV set to 4.4.

To change your feature compatibility version, see setFeatureCompatibilityVersion.

Note

You can restore the BSON files generated from mongodump into MongoDB deployments running the same or newer version as the source deployment. However, restoring files into a newer version deployment is not the recommended way to upgrade your deployment. To learn how to upgrade your deployment, see the upgrade documentation.

This guarantee does not apply to metadata, archive, or oplog replay files. If you try to restore these files using different source and destination deployment versions, the mongorestore process could result in failure, silent failure, or corrupted metadata.

In addition, ensure that you are using the same version of mongorestore to load the data files as the version of mongodump that you used to create them. For example, if you used mongodump version 100.10.0 to create the dump, use mongorestore version 100.10.0 to restore it.

mongorestore can create a new database or add data to an existing database. However, mongorestore performs inserts only and does not perform updates. If you restore documents to an existing database and collection and existing documents have the same value _id field as the documents to restore, mongorestore will not overwrite those documents.

By default, mongorestore may insert documents in a random order. To preserve document order during the restore process, use --maintainInsertionOrder.

mongorestore recreates indexes recorded by mongodump after restoring data.

Note

For MongoDB installations with featureCompatibilityVersion (fCV) set to "4.0" or earlier, creating indexes will error if an index key in an existing document exceeds the limit.

To avoid this issue, consider using hashed indexes or indexing a computed value instead. To resolve the index issue after restoring the data, you can disable the default index key length validation on the target database by setting the mongod instance's failIndexKeyTooLong parameter to false.

mongorestore does not restore the system.profile collection data.

mongorestore automatically creates FIPS-compliant connections to a mongod/mongos that is configured to use FIPS mode.

If you specify write concern in both the --writeConcern option and the --uri connection string option, the --writeConcern value overrides the write concern specified in the URI string.

Starting in MongoDB 5.0, you can use mongorestore to restore timeseries collections. For details, see Restore a Time Series Collection.

On free (M0) and shared (M2 and M5) tier Atlas clusters, the following limitations apply:

  • You can't run mongorestore on the admin database. By default, mongorestore skips this database. If you use the --db option to set the destination database to admin, the program returns an error.

  • You can't use the following options with the mongorestore program:

To restore data to a MongoDB deployment that has access control enabled, the restore role provides the necessary privileges to restore data from backups if the data does not include system.profile collection data and you run mongorestore without the --oplogReplay option.

If the backup data includes system.profile collection data or you run mongorestore with the --oplogReplay option, you need additional privileges:

system.profile

If the backup data includes system.profile collection data and the target database does not contain the system.profile collection, mongorestore attempts to create the collection even though the program does not actually restore system.profile documents. As such, the user requires additional privileges to perform createCollection and convertToCapped actions on the system.profile collection for a database.

Both the built-in roles dbAdmin and dbAdminAnyDatabase provide the additional privileges.

--oplogReplay

To run with --oplogReplay, create a user-defined role that has anyAction on anyResource.

Grant only to users who must run mongorestore with --oplogReplay.

For an overview of mongorestore usage as part of a backup and recovery strategy, see Back Up and Restore with MongoDB Tools.

To use mongodump and mongorestore as a backup strategy for sharded clusters, see Back Up a Self-Managed Sharded Cluster with a Database Dump.

Sharded clusters can also use one of the following coordinated backup and restore processes, which guarantee atomicity across shards while still accepting writes:

Back

Compatibility & Installation