Skip to content

DOCS-4682 - add mentions of config file invocation of wiredTiger #2115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion source/includes/options-mongod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1542,7 +1542,8 @@ directive: option
description: |
.. versionadded:: 2.8.0

Specifies the storage engine for the {{program}} database.
Specifies the storage engine for the {{program}} database. Valid
options include ``mmapv1`` and ``wiredTiger``.
post: |
If you attempt to start a {{program}} with a
:option:`storage.dbPath` that contains data files produced by a
Expand Down
10 changes: 9 additions & 1 deletion source/release-notes/2.8.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,17 @@ To enable WiredTiger, start MongoDB with the following option:

mongod --storageEngine wiredTiger

or by specifying the following value in the configuration file:

.. code-block:: yaml

storage:
engine: wiredTiger

If you attempt to start a :program:`mongod` with a
:setting:`storage.dbPath` that contains data files produced by a
storage engine other than the one specified by ``--storageEngine``,
storage engine other than the one specified by ``--storageEngine``
or the ``storage.engine`` configuration file option,
:program:`mongod` will refuse to start.

The behavior and properties of the ``wiredTiger`` storage engine are
Expand Down