- Reference >
- MongoDB Package Components >
mongoexport
mongoexport¶
On this page
Mac OSX Sierra and Go 1.6 Incompatibility
Users running on Mac OSX Sierra require the 3.2.10 or newer version of mongoexport.
Synopsis¶
mongoexport is a utility that produces a JSON or CSV export
of data stored in a MongoDB instance.
See the mongoimport document for more
information regarding the mongoimport utility, which
provides the inverse “importing” capability.
Run mongoexport from the system command line, not the mongo shell.
Considerations¶
Warning
Avoid using mongoimport and mongoexport for
full instance production backups. They do not reliably preserve all rich
BSON data types, because JSON can only represent a subset
of the types supported by BSON. Use mongodump
and mongorestore as described in MongoDB Backup Methods for this
kind of functionality.
mongoexport must be run directly from the system command line.
To preserve type information, mongoexport and mongoimport
uses the strict mode representation
for certain types.
For example, the following insert operation in the mongo
shell uses the shell mode representation for the BSON types
data_date and data_numberlong:
use test
db.traffic.insert( { _id: 1, volume: NumberLong('2980000'), date: new Date() } )
The argument to data_numberlong must be quoted to avoid potential
loss of accuracy.
Use mongoexport to export the data:
mongoexport --db test --collection traffic --out traffic.json
The exported data is in strict mode representation to preserve type information:
{ "_id" : 1, "volume" : { "$numberLong" : "2980000" }, "date" : { "$date" : "2014-03-13T13:47:42.483-0400" } }
See MongoDB Extended JSON for a complete list of these types and the representations used.
Required Access¶
mongoexport requires read access on the target database.
Ensure that the connecting user posseses, at a minimum, the read
role on the target database.
When connecting to a mongod or mongos that enforces
Authentication, ensure you use the required security
parameters based on the configured
authentication mechanism.
Read Preference¶
mongoexport defaults to primary read
preference when connected to a mongos
or a replica set.
You can override the default read preference using the
--readPreference option.
Important
Using a non-primary read preference on a mongos may
produce inconsistencies in data, including duplicates or missing
documents.
Options¶
Changed in version 3.0.0: mongoexport removed the --dbpath as well as related
--directoryperdb and --journal options. To use
mongoexport, you must run mongoexport against a running
mongod or mongos instance as appropriate.
Changed in version 3.0.0: mongoexport removed the --csv option. Use the
--type=csv option to specify CSV format
for the output.
-
mongoexport¶
-
mongoexport¶
-
--help¶ Returns information on the options and use of
mongoexport.
-
--verbose,-v¶ Increases the amount of internal reporting returned on standard output or in log files. Increase the verbosity with the
-vform by including the option multiple times, (e.g.-vvvvv.)
-
--quiet¶ Runs
mongoexportin a quiet mode that attempts to limit the amount of output.This option suppresses:
- output from database commands
- replication activity
- connection accepted events
- connection closed events
-
--version¶ Returns the
mongoexportrelease number.
-
--host<hostname><:port>,-h<hostname><:port>¶ Default: localhost:27017
Specifies a resolvable hostname for the
mongodto which to connect. By default, themongoexportattempts to connect to a MongoDB instance running on the localhost on port number27017.To connect to a replica set, specify the
replSetNameand a seed list of set members, as in the following:<replSetName>/<hostname1><:port>,<hostname2><:port>,<...>
You can always connect directly to a single MongoDB instance by specifying the host and port number directly.
Changed in version 3.0.0: If you use IPv6 and use the
<address>:<port>format, you must enclose the portion of an address and port combination in brackets (e.g.[<address>]).
-
--port<port>¶ Default: 27017
Specifies the TCP port on which the MongoDB instance listens for client connections.
-
--ipv6¶ Removed in version 3.0.
Enables IPv6 support and allows
mongoexportto connect to the MongoDB instance using an IPv6 network. Prior to MongoDB 3.0, you had to specify--ipv6to use IPv6. In MongoDB 3.0 and later, IPv6 is always enabled.
-
--ssl¶ New in version 2.6.
Enables connection to a
mongodormongosthat has TLS/SSL support enabled.Changed in version 3.0: Most MongoDB distributions include support for TLS/SSL. See Configure mongod and mongos for TLS/SSL and TLS/SSL Configuration for Clients for more information about TLS/SSL and MongoDB.
Changed in version 3.4: If
--sslCAFileis not specified when connecting to an TLS/SSL-enabled server, the system-wide CA certificate store will be used.
-
--sslCAFile<filename>¶ New in version 2.6.
Specifies the
.pemfile that contains the root certificate chain from the Certificate Authority. Specify the file name of the.pemfile using relative or absolute paths.Changed in version 3.0: Most MongoDB distributions include support for TLS/SSL. See Configure mongod and mongos for TLS/SSL and TLS/SSL Configuration for Clients for more information about TLS/SSL and MongoDB.
Changed in version 3.4: If
--sslCAFileis not specified when connecting to an TLS/SSL-enabled server, the system-wide CA certificate store will be used.Warning
Version 3.2 and earlier: For SSL connections (
--ssl) tomongodandmongos, if themongoexportruns without the--sslCAFile,mongoexportwill not attempt to validate the server certificates. This creates a vulnerability to expiredmongodandmongoscertificates as well as to foreign processes posing as validmongodormongosinstances. Ensure that you always specify the CA file to validate the server certificates in cases where intrusion is a possibility.
-
--sslPEMKeyFile<filename>¶ New in version 2.6.
Specifies the
.pemfile that contains both the TLS/SSL certificate and key. Specify the file name of the.pemfile using relative or absolute paths.This option is required when using the
--ssloption to connect to amongodormongosthat hasCAFileenabled withoutallowConnectionsWithoutCertificates.Changed in version 3.0: Most MongoDB distributions include support for TLS/SSL. See Configure mongod and mongos for TLS/SSL and TLS/SSL Configuration for Clients for more information about TLS/SSL and MongoDB.
Changed in version 3.4: If
--sslCAFileis not specified when connecting to an TLS/SSL-enabled server, the system-wide CA certificate store will be used.
-
--sslPEMKeyPassword<value>¶ New in version 2.6.
Specifies the password to de-crypt the certificate-key file (i.e.
--sslPEMKeyFile). Use the--sslPEMKeyPasswordoption only if the certificate-key file is encrypted. In all cases, themongoexportwill redact the password from all logging and reporting output.If the private key in the PEM file is encrypted and you do not specify the
--sslPEMKeyPasswordoption, themongoexportwill prompt for a passphrase. See SSL Certificate Passphrase.Changed in version 3.0: Most MongoDB distributions include support for TLS/SSL. See Configure mongod and mongos for TLS/SSL and TLS/SSL Configuration for Clients for more information about TLS/SSL and MongoDB.
Changed in version 3.4: If
--sslCAFileis not specified when connecting to an TLS/SSL-enabled server, the system-wide CA certificate store will be used.
-
--sslCRLFile<filename>¶ New in version 2.6.
Specifies the
.pemfile that contains the Certificate Revocation List. Specify the file name of the.pemfile using relative or absolute paths.Changed in version 3.0: Most MongoDB distributions include support for TLS/SSL. See Configure mongod and mongos for TLS/SSL and TLS/SSL Configuration for Clients for more information about TLS/SSL and MongoDB.
Changed in version 3.4: If
--sslCAFileis not specified when connecting to an TLS/SSL-enabled server, the system-wide CA certificate store will be used.
-
--sslAllowInvalidCertificates¶ New in version 2.6.
Bypasses the validation checks for server certificates and allows the use of invalid certificates. When using the
allowInvalidCertificatessetting, MongoDB logs as a warning the use of the invalid certificate.Changed in version 3.0: Most MongoDB distributions include support for TLS/SSL. See Configure mongod and mongos for TLS/SSL and TLS/SSL Configuration for Clients for more information about TLS/SSL and MongoDB.
Changed in version 3.4: If
--sslCAFileis not specified when connecting to an TLS/SSL-enabled server, the system-wide CA certificate store will be used.
-
--sslAllowInvalidHostnames¶ New in version 3.0.
Disables the validation of the hostnames in TLS/SSL certificates. Allows
mongoexportto connect to MongoDB instances even if the hostname in their certificates do not match the specified hostname.Changed in version 3.0: Most MongoDB distributions include support for TLS/SSL. See Configure mongod and mongos for TLS/SSL and TLS/SSL Configuration for Clients for more information about TLS/SSL and MongoDB.
Changed in version 3.4: If
--sslCAFileis not specified when connecting to an TLS/SSL-enabled server, the system-wide CA certificate store will be used.
-
--sslFIPSMode¶ New in version 2.6.
Directs the
mongoexportto use the FIPS mode of the installed OpenSSL library. Your system must have a FIPS compliant OpenSSL library to use the--sslFIPSModeoption.Note
FIPS-compatible SSL is available only in MongoDB Enterprise. See Configure MongoDB for FIPS for more information.
-
--username<username>,-u<username>¶ Specifies a username with which to authenticate to a MongoDB database that uses authentication. Use in conjunction with the
--passwordand--authenticationDatabaseoptions.
-
--password<password>,-p<password>¶ Specifies a password with which to authenticate to a MongoDB database that uses authentication. Use in conjunction with the
--usernameand--authenticationDatabaseoptions.Changed in version 3.0.0: If you do not specify an argument for
--password,mongoexportreturns an error.Changed in version 3.0.2: If you wish
mongoexportto prompt the user for the password, pass the--usernameoption without--passwordor specify an empty string as the--passwordvalue, as in--password "".
-
--authenticationDatabase<dbname>¶ Specifies the database in which the user is created. See Authentication Database.
If you do not specify an authentication database,
mongoexportassumes that the database specified to export holds the user’s credentials.
-
--authenticationMechanism<name>¶ Default: SCRAM-SHA-1
Changed in version 2.6: Added support for the
PLAINandMONGODB-X509authentication mechanisms.Changed in version 3.0: Added support for the
SCRAM-SHA-1authentication mechanism. Changed default mechanism toSCRAM-SHA-1.Specifies the authentication mechanism the
mongoexportinstance uses to authenticate to themongodormongos.Value Description SCRAM-SHA-1 RFC 5802 standard Salted Challenge Response Authentication Mechanism using the SHA1 hash function. MONGODB-CR MongoDB challenge/response authentication. MONGODB-X509 MongoDB TLS/SSL certificate authentication. GSSAPI (Kerberos) External authentication using Kerberos. This mechanism is available only in MongoDB Enterprise. PLAIN (LDAP SASL) External authentication using LDAP. You can also use PLAINfor authenticating in-database users.PLAINtransmits passwords in plain text. This mechanism is available only in MongoDB Enterprise.
-
--gssapiServiceName¶ New in version 2.6.
Specify the name of the service using GSSAPI/Kerberos. Only required if the service does not use the default name of
mongodb.This option is available only in MongoDB Enterprise.
-
--gssapiHostName¶ New in version 2.6.
Specify the hostname of a service using GSSAPI/Kerberos. Only required if the hostname of a machine does not match the hostname resolved by DNS.
This option is available only in MongoDB Enterprise.
-
--db<database>,-d<database>¶ Specifies the name of the database on which to run the
mongoexport.
-
--collection<collection>,-c<collection>¶ Specifies the collection to export.
-
--fields<field1[,field2]>,-f<field1[,field2]>¶ Specifies a field or fields to include in the export. Use a comma separated list of fields to specify multiple fields.
If any of your field names include white space, use quotation marks to enclose the field list. For example, if you wished to export two fields,
phoneanduser number, you would specify--fields "phone,user number".For
csvoutput formats,mongoexportincludes only the specified field(s), and the specified field(s) can be a field within a sub-document.For JSON output formats,
mongoexportincludes only the specified field(s) and the_idfield, and if the specified field(s) is a field within a sub-document, themongoexportincludes the sub-document with all its fields, not just the specified field within the document.
-
--fieldFile<filename>¶ An alternative to
--fields. The--fieldFileoption allows you to specify in a file the field or fields to include in the export and is only valid with the--typeoption with valuecsv. The file must have only one field per line, and the line(s) must end with the LF character (0x0A).mongoexportincludes only the specified field(s). The specified field(s) can be a field within a sub-document.
-
--query<JSON>,-q<JSON>¶ Provides a JSON document as a query that optionally limits the documents returned in the export. Specify JSON in strict format.
You must enclose the query in single quotes (e.g.
') to ensure that it does not interact with your shell environment.For example, given a collection named
recordsin the databasetestwith the following documents:{ "_id" : ObjectId("51f0188846a64a1ed98fde7c"), "a" : 1 } { "_id" : ObjectId("520e61b0c6646578e3661b59"), "a" : 1, "b" : 2 } { "_id" : ObjectId("520e642bb7fa4ea22d6b1871"), "a" : 2, "b" : 3, "c" : 5 } { "_id" : ObjectId("520e6431b7fa4ea22d6b1872"), "a" : 3, "b" : 3, "c" : 6 } { "_id" : ObjectId("520e6445b7fa4ea22d6b1873"), "a" : 5, "b" : 6, "c" : 8 }
The following
mongoexportuses the-qoption to export only the documents with the fieldagreater than or equal to ($gte) to3:mongoexport -d test -c records -q '{ a: { $gte: 3 } }' --out exportdir/myRecords.json
The resulting file contains the following documents:
{ "_id" : { "$oid" : "520e6431b7fa4ea22d6b1872" }, "a" : 3, "b" : 3, "c" : 6 } { "_id" : { "$oid" : "520e6445b7fa4ea22d6b1873" }, "a" : 5, "b" : 6, "c" : 8 }
You can sort the results with the
--sortoption tomongoexport.
-
--type<string>¶ Default: json
New in version 3.0.0.
Specifies the file type to export. Specify
csvfor CSV format orjsonfor JSON format.If you specify
csv, then you must also use either the--fieldsor the--fieldFileoption to declare the fields to export from the collection.
-
--out<file>,-o<file>¶ Specifies a file to write the export to. If you do not specify a file name, the
mongoexportwrites data to standard output (e.g.stdout).
-
--jsonArray¶ Modifies the output of
mongoexportto write the entire contents of the export as a single JSON array. By defaultmongoexportwrites data using one JSON document for every MongoDB document.
-
--pretty¶ New in version 3.0.0.
Outputs documents in a pretty-printed format JSON.
-
--slaveOk,-k¶ Deprecated since version 3.2.
Sets the Read Preference to
nearest, allowingmongoexportto read data from secondary replica set members.--readPreferencereplaces--slaveOkin MongoDB 3.2. You cannot specify--slaveOkwhen--readPreferenceis specified.Warning
Using a read preference other than
primarywith a connection to amongosmay produce inconsistencies, duplicates, or result in missed documents.
-
--readPreference<string>¶ Specify the read preference for
mongoexport.mongoexportdefaults toprimaryread preference when connected to amongosor a replica set.Otherwise,
mongoexportdefaults tonearest.Warning
Using a read preference other than
primarywith a connection to amongosmay produce inconsistencies, duplicates, or result in missed documents.
-
--forceTableScan¶ Forces
mongoexportto scan the data store directly instead of traversing the_idfield index. Use--forceTableScanto skip the index. Typically there are two cases where this behavior is preferable to the default:- If you have key sizes over 800 bytes that would not be present
in the
_idindex. - Your database uses a custom
_idfield.
When you run with
--forceTableScan,mongoexportmay return a document more than once if a write operation interleaves with the operation to cause the document to move.Warning
Use
--forceTableScanwith extreme caution and consideration.- If you have key sizes over 800 bytes that would not be present
in the
-
--skip<number>¶ Use
--skipto control wheremongoexportbegins exporting documents. Seeskip()for information about the underlying operation.
-
--limit<number>¶ Specifies a maximum number of documents to include in the export. See
limit()for information about the underlying operation.
-
--sort<JSON>¶ Specifies an ordering for exported results. If an index does not exist that can support the sort operation, the results must be less than 32 megabytes.
Use
--sortconjunction with--skipand--limitto limit number of exported documents.mongoexport -d test -c records --sort '{a: 1}' --limit 100 --out export.0.json mongoexport -d test -c records --sort '{a: 1}' --limit 100 --skip 100 --out export.1.json mongoexport -d test -c records --sort '{a: 1}' --limit 100 --skip 200 --out export.2.json
See
sort()for information about the underlying operation.
Use¶
Export in CSV Format¶
Changed in version 3.0.0: mongoexport removed the --csv option. Use the
--type=csv option to specify CSV format
for the output.
In the following example, mongoexport exports data from the
collection contacts collection in the users database in CSV
format to the file /opt/backups/contacts.csv.
The mongod instance that mongoexport connects to is
running on the localhost port number 27017.
When you export in CSV format, you must specify the fields in the documents
to export. The operation specifies the name and address fields
to export.
mongoexport --db users --collection contacts --type=csv --fields name,address --out /opt/backups/contacts.csv
For CSV exports only, you can also specify the fields in a file containing the line-separated list of fields to export. The file must have only one field per line.
For example, you can specify the name and address fields in a
file fields.txt:
name
address
Then, using the --fieldFile option, specify the fields to export with
the file:
mongoexport --db users --collection contacts --type=csv --fieldFile fields.txt --out /opt/backups/contacts.csv
Changed in version 3.0.0: mongoexport removed the --csv option and replaced with
the --type option.
Export in JSON Format¶
This example creates an export of the contacts collection from the
MongoDB instance running on the localhost port number 27017. This
writes the export to the contacts.json file in JSON format.
mongoexport --db sales --collection contacts --out contacts.json
Export from Remote Host Running with Authentication¶
The following example exports the contacts collection from the
marketing database, which requires authentication.
This data resides on the MongoDB instance located on the host
mongodb1.example.net running on port 37017, which requires the username
user and the password pass.
mongoexport --host mongodb1.example.net --port 37017 --username user --password "pass" --collection contacts --db marketing --out mdb1-examplenet.json
Export Query Results¶
You can export only the results of a query by supplying a query filter with
the --query option, and limit the results to a single
database using the “--db” option.
For instance, this command returns all documents in the sales database’s
contacts collection that contain a field named field with a value
of 1.
mongoexport --db sales --collection contacts --query '{"field": 1}'
You must enclose the query in single quotes (e.g. ') to ensure that it does
not interact with your shell environment.