Skip to content

DOCS-4065: Fix old legacy links in 2.0 and 2.2 release notes #2008

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
18 changes: 8 additions & 10 deletions source/release-notes/2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ for handling CSV input/output. This may break existing import/export
workflows that relied on the previous behavior. For more information see
:issue:`SERVER-1097`.

:wiki:`Journaling` is **enabled by default** in 2.0 for 64-bit builds.
:doc:`Journaling </core/journaling/>` is **enabled by default** in 2.0 for 64-bit builds.
If you still prefer to run without journaling, start :program:`mongod`
with the :option:`--nojournal <mongod --nojournal>` run-time option.
Otherwise, MongoDB creates journal files during startup. The first time you start :program:`mongod` with
Expand Down Expand Up @@ -216,8 +216,7 @@ would say:
which would succeed if it fulfilled the conditions the DBA defined for
"very important write".

For more information, see
:wiki:`Tagging <Data+Center+Awareness#DataCenterAwareness-Tagging%28version2.0%29>`.
For more information, see :doc:`/data-center-awareness`.

Drivers may also support tag-aware reads. Instead of
specifying ``slaveOk``, you specify ``slaveOk`` with tags indicating
Expand Down Expand Up @@ -287,7 +286,7 @@ objects, embedded either inline or in nested sub-documents. Additional
command options are also supported, allowing results to return with
not only distance but the location used to generate the distance.

For more information, see :wiki:`Multi-location Documents <Geospatial+Indexing#GeospatialIndexing-MultilocationDocuments>`.
For more information, see :ref:`geospatial-indexes-multi-location`.

Polygon searches
````````````````
Expand Down Expand Up @@ -323,7 +322,7 @@ command will report whether any inserts have failed, not just the
last one. If multiple errors occur, the client will only receive the
most recent :dbcommand:`getLastError` results.

See :wiki:`OP_INSERT <Mongo+Wire+Protocol#MongoWireProtocol-OPINSERT>`.
See :meta-driver:`OP_INSERT </legacy/mongodb-wire-protocol#op-insert>`.

.. include:: /includes/note-bulk-inserts-on-sharded-clusters.rst

Expand All @@ -338,8 +337,8 @@ map/reduce to a sharded collection. Combined with the ``reduce`` or
``merge`` flags, it is possible to keep adding data to very large
collections from map/reduce jobs.

For more information, see :wiki:`MapReduce Output Options <MapReduce#MapReduce-Outputoptions>`
and the :dbcommand:`mapReduce` reference.
For more information, see :doc:`/core/map-reduce/` and the
:dbcommand:`mapReduce` reference.

Performance Improvements
````````````````````````
Expand All @@ -362,8 +361,7 @@ Additional regex options: ``s``
```````````````````````````````

Allows the dot (``.``) to match all characters including new lines. This is
in addition to the currently supported ``i``, ``m`` and ``x``. See
:wiki:`Regular Expressions <Advanced+Queries#AdvancedQueries-RegularExpressions>` and :query:`$regex`.
in addition to the currently supported ``i``, ``m`` and ``x``. See :query:`$regex`.

$and
````
Expand All @@ -387,7 +385,7 @@ Custom Prompt
You can define a custom prompt for the :program:`mongo` shell. You can
change the prompt at any time by setting the prompt variable to a string
or a custom JavaScript function returning a string. For examples, see
:wiki:`Custom Prompt <Overview+-+The+MongoDB+Interactive+Shell#Overview-TheMongoDBInteractiveShell-CustomPrompt>`.
:ref:`shell-use-a-custom-prompt`.

Default Shell Init Script
`````````````````````````
Expand Down
7 changes: 1 addition & 6 deletions source/release-notes/2.2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -195,15 +195,10 @@ on specific shards. For example, with tag aware sharding, you can
ensure that data is closest to the application servers that use that
data most frequently.

.. todo When draft/core/write-operations.txt goes live, change this below:
write-concern
to
write-operations-write-concern

Shard tagging controls data location, and is complementary but
separate from replica set tagging, which controls :doc:`read
preference </core/read-preference>` and :ref:`write concern
<write-concern>`. For example, shard tagging can pin all
<write-operations-write-concern>`. For example, shard tagging can pin all
"USA" data to one or more logical shards, while replica set tagging
can control which :program:`mongod` instances (e.g. "``production``"
or "``reporting``") the application uses to service requests.
Expand Down
2 changes: 2 additions & 0 deletions source/tutorial/getting-started-with-the-mongo-shell.txt
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ Evaluate a JavaScript File

.. include:: /includes/fact-execute-javascript-from-shell.rst

.. _shell-use-a-custom-prompt:

Use a Custom Prompt
-------------------

Expand Down