Skip to content

Commit 68d135a

Browse files
authored
DOCSP-26460 replaces hide - oplog :doc:s (#7109)
1 parent 55c7a6c commit 68d135a

19 files changed

+29
-30
lines changed

source/administration/monitoring.txt

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ a running MongoDB instance:
3535
- MongoDB distributes a set of utilities that provides real-time
3636
reporting of database activities.
3737

38-
- MongoDB provides various :doc:`database commands
39-
</reference/command>` that return statistics regarding the current
38+
- MongoDB provides various :ref:`database commands
39+
<database-commands>` that return statistics regarding the current
4040
database state with greater fidelity.
4141

4242
- `MongoDB Atlas <https://www.mongodb.com/atlas/database?tck=docs_server>`_
@@ -156,9 +156,9 @@ by the collection, and information about its indexes.
156156
````````````````````
157157

158158
The :dbcommand:`replSetGetStatus` command (:method:`rs.status()` from
159-
the shell) returns an overview of your replica set's status. The :doc:`replSetGetStatus
160-
</reference/command/replSetGetStatus>` document details the
161-
state and configuration of the replica set and statistics about its members.
159+
the shell) returns an overview of your replica set's status. The
160+
``replSetGetStatus`` document details the state and configuration of the
161+
replica set and statistics about its members.
162162

163163
Use this data to ensure that replication is properly configured,
164164
and to check the connections between the current host and the other members
@@ -269,8 +269,7 @@ control these options.
269269
.. note::
270270

271271
You can specify these configuration operations as the command line
272-
arguments to :doc:`mongod </reference/program/mongod>` or :doc:`mongos
273-
</reference/program/mongos>`
272+
arguments to :binary:`mongod` or :binary:`mongos`.
274273

275274
For example:
276275

source/administration/production-checklist-development.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Replication
7575
.. include:: /includes/extracts/arbiters-and-pvs-with-reference.rst
7676

7777
- Ensure that your secondaries remain up-to-date by using
78-
:doc:`monitoring tools </administration/monitoring>` and by
78+
:ref:`monitoring tools <monitoring-for-mdb>` and by
7979
specifying appropriate :doc:`write concern
8080
</reference/write-concern>`.
8181

source/core/backups.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ systems.
167167
:binary:`~bin.mongodump` and :binary:`~bin.mongorestore` operate against a
168168
running :binary:`~bin.mongod` process, and can manipulate the underlying
169169
data files directly. By default, :binary:`~bin.mongodump` does not
170-
capture the contents of the :doc:`local database </reference/local-database>`.
170+
capture the contents of the :ref:`local database <replica-set-local-database>`.
171171

172172
:binary:`~bin.mongodump` only captures the documents in the database. The
173173
resulting backup is space efficient, but :binary:`~bin.mongorestore` or

source/core/replica-set-oplog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ the ``local.oplog.rs`` collection from a standalone MongoDB instance.
245245
both :ref:`replication` and recovery of a node if the node goes down.
246246

247247
Starting in MongoDB 5.0, it is no longer possible to perform manual
248-
write operations to the :doc:`oplog </core/replica-set-oplog>` on a
248+
write operations to the :ref:`oplog <replica-set-oplog>` on a
249249
cluster running as a :ref:`replica set <replication>`. Performing write
250250
operations to the oplog when running as a
251251
:term:`standalone instance <standalone>` should only be done with

source/core/replica-set-secondary.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Replica Set Secondary Members
1616

1717
A secondary maintains a copy of the :term:`primary's <primary>` data
1818
set. To replicate data, a secondary applies operations from the
19-
primary's :doc:`oplog </core/replica-set-oplog>` to its own data set
19+
primary's :ref:`oplog <replica-set-oplog>` to its own data set
2020
in an asynchronous process. [#slow-oplogs]_ A replica set can have one or more
2121
secondaries.
2222

source/core/replica-set-sync.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ Replication
268268
-----------
269269

270270
Secondary members replicate data continuously after the initial sync.
271-
Secondary members copy the :doc:`oplog </core/replica-set-oplog>` from
271+
Secondary members copy the :ref:`oplog <replica-set-oplog>` from
272272
their *sync from* source and apply these operations in an asynchronous
273273
process. [#slow-oplogs]_
274274

@@ -287,7 +287,7 @@ Streaming Replication
287287
~~~~~~~~~~~~~~~~~~~~~
288288

289289
*Sync from* sources send a continuous stream
290-
of :doc:`oplog </core/replica-set-oplog>` entries to their syncing
290+
of :ref:`oplog <replica-set-oplog>` entries to their syncing
291291
secondaries. Streaming replication mitigates replication lag in
292292
high-load and high-latency networks. It also:
293293

source/core/retryable-writes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Supported Deployment Topologies
3030
Supported Storage Engine
3131
Retryable writes require a storage engine supporting document-level
3232
locking, such as the :ref:`WiredTiger <storage-wiredtiger>` or
33-
:doc:`in-memory </core/inmemory>` storage engines.
33+
:ref:`in-memory <storage-inmemory>` storage engines.
3434

3535
3.6+ MongoDB Drivers
3636
Clients require MongoDB drivers updated for MongoDB 3.6 or greater:

source/includes/steps-change-replica-set-wiredtiger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ content: |
6565
6666
post: |
6767
Since no data exists in the ``--dbpath``, the ``mongod`` will perform an
68-
:doc:`initial sync </tutorial/resync-replica-set-member>`. The length of the
68+
:ref:`initial sync <resync-replica-member>`. The length of the
6969
initial sync process depends on the size of the database and network
7070
connection between members of the replica set.
7171

source/reference/command/serverStatus.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3775,7 +3775,7 @@ oplogTruncation
37753775

37763776
.. serverstatus:: oplogTruncation
37773777

3778-
A document that reports on :doc:`oplog </core/replica-set-oplog>`
3778+
A document that reports on :ref:`oplog <replica-set-oplog>`
37793779
truncations.
37803780

37813781
The field only appears when the current instance is a member of a

source/reference/configuration-options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Core Options
199199

200200
*Default*: 0
201201

202-
The default :doc:`log message </reference/log-messages>`
202+
The default :ref:`log message <log-messages-ref>`
203203
verbosity level for :ref:`components <log-message-components>`. The
204204
verbosity level determines the amount of :ref:`Informational and
205205
Debug <log-severity-levels>` messages MongoDB outputs. [#log-message]_

source/reference/limits.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ Indexes
679679

680680
.. limit:: Hidden Indexes
681681

682-
- You cannot :doc:`hide </core/index-hidden>` the ``_id`` index.
682+
- You cannot :ref:`hide <index-type-hidden>` the ``_id`` index.
683683

684684
- You cannot use :method:`~cursor.hint()` on a :doc:`hidden index
685685
</core/index-hidden>`.

source/reference/local-database.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Collections on Replica Set Members
126126
.. include:: /includes/fact-oplog-size.rst
127127

128128
Starting in MongoDB 5.0, it is no longer possible to perform manual
129-
write operations to the :doc:`oplog </core/replica-set-oplog>` on a
129+
write operations to the :ref:`oplog <replica-set-oplog>` on a
130130
cluster running as a :ref:`replica set <replication>`. Performing
131131
write operations to the oplog when running as a
132132
:term:`standalone instance <standalone>` should only be done with

source/reference/method/cursor.comment.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ find operation. This can make it easier to track a particular query in the
5757
following diagnostic outputs:
5858

5959
- The :data:`system.profile <<database>.system.profile>`
60-
- The :data:`QUERY` :doc:`log </reference/log-messages>` component
60+
- The :data:`QUERY` :ref:`log <log-messages-ref>` component
6161
- :method:`db.currentOp()`
6262

6363
See :ref:`configure log verbosity <log-messages-configure-verbosity>` for the
@@ -103,7 +103,7 @@ The following is an excerpt from the
103103
}
104104

105105

106-
:binary:`~bin.mongod` :doc:`log </reference/log-messages>`
106+
:binary:`~bin.mongod` :ref:`log <log-messages-ref>`
107107
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
108108

109109
The following is an excerpt from the :binary:`~bin.mongod` log. It has been

source/reference/parameters.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,7 @@ Logging Parameters
18291829
|both|
18301830

18311831
Specify an integer between ``0`` and ``5`` signifying the verbosity
1832-
of the :doc:`logging </reference/log-messages>`, where ``5`` is the
1832+
of the :ref:`logging <log-messages-ref>`, where ``5`` is the
18331833
most verbose. [#log-message]_
18341834

18351835
The default :parameter:`logLevel` is ``0`` (Informational).
@@ -2857,7 +2857,7 @@ If you attempt to update ``disableSplitHorizonIPCheck`` at run time,
28572857
streaming replication.
28582858

28592859
Set the value to ``false`` to disable streaming replication. If
2860-
disabled, secondaries fetch batches of :doc:`oplog </core/replica-set-oplog>`
2860+
disabled, secondaries fetch batches of :ref:`oplog <replica-set-oplog>`
28612861
entries by issuing a request to their *sync from* source and waiting for a
28622862
response. This requires a network roundtrip for each batch of :doc:`oplog
28632863
</core/replica-set-oplog>` entries.

source/reference/system-collections.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ MongoDB stores system information in collections that use the
2020
internal use. Do not create collections that begin with ``system``.
2121

2222
MongoDB also stores some additional instance-local metadata in the
23-
:doc:`local database </reference/local-database>`, specifically for
23+
:ref:`local database <replica-set-local-database>`, specifically for
2424
replication purposes and in the :doc:`config database
2525
</reference/config-database>` for :ref:`sessions information
2626
<sessions>`.

source/release-notes/3.2.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@ Write Concern
12761276
- For replica sets using :rsconf:`protocolVersion: 1
12771277
<protocolVersion>`, secondaries acknowledge write operations after the
12781278
secondary members have written to their respective on-disk
1279-
:doc:`journals </core/journaling>`, regardless of the :ref:`j <wc-j>`
1279+
:ref:`journals <journaling-internals>`, regardless of the :ref:`j <wc-j>`
12801280
option.
12811281

12821282
- For replica sets using :rsconf:`protocolVersion: 1

source/release-notes/4.4.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -888,13 +888,13 @@ Streaming Replication
888888
~~~~~~~~~~~~~~~~~~~~~
889889

890890
Starting in MongoDB 4.4, *sync from* sources send a continuous
891-
stream of :doc:`oplog </core/replica-set-oplog>` entries to their
891+
stream of :ref:`oplog <replica-set-oplog>` entries to their
892892
syncing secondaries.
893893

894894
Prior to MongoDB 4.4, secondaries fetched batches of :doc:`oplog
895895
</core/replica-set-oplog>` entries by issuing a request to their *sync
896896
from* source and waiting for a response. This required a network roundtrip
897-
for each batch of :doc:`oplog </core/replica-set-oplog>` entries. MongoDB
897+
for each batch of :ref:`oplog <replica-set-oplog>` entries. MongoDB
898898
4.4 adds the :parameter:`oplogFetcherUsesExhaust` startup parameter for
899899
disabling streaming replication and using the older replication behavior.
900900

source/release-notes/5.0-compatibility.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Manual Oplog Writes
202202
~~~~~~~~~~~~~~~~~~~
203203

204204
Starting in MongoDB 5.0, it is no longer possible to perform manual
205-
write operations to the :doc:`oplog </core/replica-set-oplog>` on a
205+
write operations to the :ref:`oplog <replica-set-oplog>` on a
206206
cluster running as a :ref:`replica set <replication>`. Performing write
207207
operations to the oplog when running as a
208208
:term:`standalone instance <standalone>` should only be done with
@@ -368,7 +368,7 @@ Map-Reduce
368368
----------
369369

370370
Starting in version 5.0, MongoDB deprecates the
371-
:doc:`map-reduce</core/map-reduce>` operation.
371+
:ref:`map-reduce <map-reduce>` operation.
372372

373373
For examples of aggregation pipeline alternatives to map-reduce
374374
operations, see :doc:`/reference/map-reduce-to-aggregation-pipeline` and

source/tutorial/change-replica-set-wiredtiger.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ down the :term:`primary`, and updates the stepped-down member.
7979

8080
To update a member to WiredTiger, the procedure removes a member's
8181
data, starts :binary:`~bin.mongod` with WiredTiger, and performs an
82-
:doc:`initial sync </tutorial/resync-replica-set-member>`.
82+
:ref:`initial sync <resync-replica-member>`.
8383

8484

8585
A. Update the secondary members to WiredTiger.

0 commit comments

Comments
 (0)