Skip to content

Commit 54e9f60

Browse files
author
Ed Costello
committed
Copy edits
1 parent 9de5717 commit 54e9f60

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

source/administration/import-export.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ with the database itself.
2323
:program:`mongod` instance, they can impact the performance of your
2424
running database.
2525

26-
Not only do these backup processes create traffic for a running
26+
Not only do these processes create traffic for a running
2727
database instance, they also force the database to read all data
2828
through memory. When MongoDB reads infrequently used data, it can
2929
supplant more frequently accessed data, causing a deterioration in
@@ -34,9 +34,9 @@ with the database itself.
3434
a superset of :term:`JSON`. Thus, :program:`mongoimport` and
3535
:program:`mongoexport` cannot represent :term:`BSON` data
3636
accurately in :term:`JSON`. As a result data exported or imported
37-
with these tools may lose some measure of fidelity. See the
38-
":wiki:`MongoDB Extended JSON <Mongo+Extended+JSON>`" wiki page for
39-
more information about Use with care.
37+
with these tools may lose some measure of fidelity. See
38+
:doc:`/reference/mongodb-extended-json` for more information about
39+
MongoDB Extended JSON.
4040

4141
.. seealso:: See the ":doc:`/administration/backups`" document for
4242
more information on backing up MongoDB instances. Additionally,
@@ -48,8 +48,8 @@ with the database itself.
4848
- :doc:`/reference/mongodump`
4949

5050
If you want to transform and process data once you've imported it
51-
in MongoDB consider the topics in :doc:`/aggregation`, including:
52-
51+
in MongoDB consider the topics in :doc:`/aggregation`, including:
52+
5353
- :doc:`/applications/map-reduce` and
5454
- :doc:`/applications/aggregation`.
5555

@@ -135,7 +135,7 @@ JSON.
135135
Data Import and Export and Backups Operations
136136
---------------------------------------------
137137

138-
For resilient and non-disruptive backups,
138+
For resilient and non-disruptive backups,
139139
use a file system or block-level disk snapshot function, such as the
140140
methods described in the ":doc:`/administration/backups`" document. The
141141
tools and operations discussed provide functionality that's useful in
@@ -215,7 +215,7 @@ that it does not interact with your shell environment. The resulting
215215
documents will return on standard output.
216216

217217
By default, :program:`mongoexport` returns one :term:`JSON document`
218-
per MongoDB document. Specify the
218+
per MongoDB document. Specify the
219219
":option:`--jsonArray <mongoexport --jsonArray>`" argument to return
220220
the export as a single :term:`JSON` array. Use the ":option:`--csv
221221
<mongoexport --csv>`" file to return the result in CSV (comma

source/administration/journaling.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To enable journaling, start :program:`mongod` with the
4949
:option:`--journal <mongod --journal>` command line option.
5050

5151
If no journal files exist, when :program:`mongod` starts, it must
52-
preallocates new journal files. During this operation, the
52+
preallocate new journal files. During this operation, the
5353
:program:`mongod` is not listening for connections until preallocation
5454
completes: for some systems this may take a several minutes. During
5555
this period your applications and the :program:`mongo` shell are not
@@ -70,9 +70,6 @@ Disable Journaling
7070
To disable journaling, start :program:`mongod` with the
7171
:option:`--nojournal <mongod --nojournal>` command line option.
7272

73-
To disable journaling, shut down :program:`mongod` cleanly and restart
74-
with :option:`--nojournal <mongod --nojournal>`.
75-
7673
Get Commit Acknowledgment
7774
~~~~~~~~~~~~~~~~~~~~~~~~~
7875

source/reference/mongodb-extended-json.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.. _mongodb_extended_json:
12
=====================
23
MongoDB Extended JSON
34
=====================

0 commit comments

Comments
 (0)