File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,25 @@ Performance Impacts
49
49
50
50
.. include:: /includes/extracts/tools-performance-considerations-dump-restore.rst
51
51
52
+ .. _considerations-output-format:
52
53
54
+ Output Format
55
+ ~~~~~~~~~~~~~
56
+
57
+ :binary:`~bin.mongorestore` and :binary:`~bin.mongodump` can output data
58
+ to an archive file, which is a single-file alternative to multiple BSON
59
+ files. Archive files are special-purpose formats that support
60
+ non-contiguous file writes. They enable concurrent backups from MongoDB,
61
+ as well as restores to MongoDB. Using archive files optimizes disk I/O
62
+ while backup and restore operations execute.
63
+
64
+ You can also output archive files to the standard output (``stdout``).
65
+ Writing to the standard output allows for data migration over networks,
66
+ reduced disk I/O footprint, and concurrency gains in both the MongoDB
67
+ tools and your storage engine.
68
+
69
+ For more information on archive files, see the
70
+ :option:`--archive <mongodump --archive>` option.
53
71
54
72
.. _backup-mongodump:
55
73
.. _backup-and-restore-tools:
You can’t perform that action at this time.
0 commit comments