Skip to content

Commit cf42e8c

Browse files
author
Sam Kleinman
committed
edits: typo changes
1 parent 4a55e5b commit cf42e8c

File tree

6 files changed

+25
-43
lines changed

6 files changed

+25
-43
lines changed

draft/reserved-keywords.txt

Lines changed: 0 additions & 14 deletions
This file was deleted.

source/administration/configuration.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ best-practice configurations for common use cases.
1515

1616
While both interfaces provide access to the same collection of options
1717
and settings, this document primarily uses the configuration file
18-
interface. If you run MongoDB using a control script or a package for
19-
your operating system, you likely already have a configuration file
20-
located at ``/etc/mongodb.conf``. Confirm this by checking the content
21-
of the ``/etc/init.d/mongod`` or ``/etc/rc.d/mongod`` script to
22-
insure that the :term:`control scripts <control script>` start the
23-
:program:`mongod` with the appropriate configuration file (see below.)
18+
interface. If you run MongoDB using a control script or installed from
19+
a package for your operating system, you likely already have a
20+
configuration file located at ``/etc/mongodb.conf``. Confirm this by
21+
checking the content of the ``/etc/init.d/mongod`` or
22+
``/etc/rc.d/mongod`` script to insure that the :term:`control scripts
23+
<control script>` start the :program:`mongod` with the appropriate
24+
configuration file (see below.)
2425

2526
To start MongoDB instance using this configuration issue a command in
2627
the following form:

source/administration/monitoring.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Diagnosing Performance Issues
271271
-----------------------------
272272

273273
Degraded performance in MongoDB can be the result of an array of
274-
causes, and is typically a function of the relationship amongst the
274+
causes, and is typically a function of the relationship among the
275275
quantity of data stored in the database, the amount of system RAM, the
276276
number of connections to the database, and the amount of time the
277277
database spends in a lock state.

source/administration/production-notes.txt

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ For MongoDB on Linux use the following recommended configurations:
7171
database files are acceptable. See the :ref:`Readahead
7272
<production-readahead>` section
7373

74-
- Use NTP to synchronize time amongst your hosts. This is especially
74+
- Use NTP to synchronize time among your hosts. This is especially
7575
important in sharded clusters.
7676

7777
.. _production-readahead:
@@ -406,13 +406,13 @@ Additionally, see information on :ref:`replica set rollbacks
406406
Additional Deployment Considerations
407407
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
408408

409-
- Pick your shard keys carefully! They cannot be changed except
410-
manually by making a new collection.
409+
- Pick your shard keys carefully! There is no way to modify a shard
410+
key on a collection that is already sharded.
411411

412-
- You cannot shard an existing collection over 256 gigabytes. You
413-
could as a workaround create a new sharded collection and copy over
414-
the data via some script -- albeit that will likely take a while at
415-
this size.
412+
- You cannot shard an existing collection over 256 gigabytes. To shard
413+
large amounts of data, create a new empty sharded collection, and
414+
ingest the data from the source collection using an application
415+
level import operation.
416416

417417
- Unique indexes are not enforced across shards except for the shard
418418
key itself. See :doc:`/tutorial/enforce-unique-keys-for-sharded-collections`.
@@ -422,8 +422,8 @@ Additional Deployment Considerations
422422
necessary but on a bulk import of size it is helpful.
423423

424424
- Use :doc:`security/auth </administration/security/>` mode if you
425-
need it. It is not on by default; rather a trusted environment is
426-
assumed.
425+
need it. By default :setting:`auth` is not enabled and
426+
:program:`mongod` assumes a trusted environment.
427427

428428
- You do not have :doc:`fully generalized transactions
429429
</tutorial/isolate-sequence-of-operations/>`. Create rich documents
@@ -439,14 +439,10 @@ Additional Deployment Considerations
439439

440440
- Check :doc:`ulimits </administration/ulimit/>` settings.
441441

442-
- Use SSD if available and economical. Spinning disks can work well but
443-
SSDs and MongoDB are a nice combo. See :ref:`production-nfs` for more
444-
info.
445-
446-
- Maintain reasonable pool sizes on clients. If you have 100 client
447-
machines and each has a pool size of 1000 connections, that would be
448-
a worst case of 100,000 connections to MongoDB -- which would be too
449-
many to a single :program:`mongod` or :program:`mongos` (if connected to a
450-
cluster with many :program:`mongos`, then 100,000 connections may be ok).
451-
Try to maintain a
452-
reasonable number: 1K is fine; 100K is too much; 10K is ok.
442+
- Use SSD if available and economical. Spinning disks can work well
443+
but SSDs capcity for random I/O operations work well with the update
444+
model of :program:`mongod`. See :ref:`production-nfs` for more info.
445+
446+
- Ensure that clients keep reasonable pool sizes to avoid overloading
447+
the connection tracking capacity of a single :program:`mongod` or
448+
:program:`mongos` instance.

source/faq/developers.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ free pace created by document deletion or relocation.
691691

692692
However, in those exceptions where you must pad manually, you can use
693693
the strategy of first adding a temporary field to a document and then
694-
:operator:`$unset <$unset>` the field, as in the following example:
694+
:operator:`$unset` the field, as in the following example:
695695

696696
.. code-block:: javascript
697697

source/reference/mongodb-extended-json.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
.. _mongodb_extended_json:
21
=====================
32
MongoDB Extended JSON
43
=====================

0 commit comments

Comments
 (0)