Skip to content

Commit f61696a

Browse files
committed
DOCSP-15360, DOCSP-15407 foreport address build errors part1
1 parent 9d610a4 commit f61696a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+102
-112
lines changed

source/administration/monitoring.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ become primary.
572572
Once a :binary:`~bin.mongod` has terminated, it may not be possible to cleanly
573573
restart it on the *same* machine.
574574

575-
.. topic:: Symlinks
575+
.. note:: Symlinks
576576

577577
If any of its monitored directories is a symlink to other volumes, the
578578
Storage Node Watchdog does not monitor the symlink target.

source/core/backups.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ and the :opsmgr:`Ops Manager Manual </>`.
9191
Back Up by Copying Underlying Data Files
9292
----------------------------------------
9393

94-
.. topic:: Considerations for Encrypted Storage Engines using AES256-GCM
94+
.. note:: Considerations for Encrypted Storage Engines using AES256-GCM
9595

9696
.. include:: /includes/fact-aes256-backups.rst
9797

source/core/causal-consistency-read-write-concerns.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ the following causal consistency guarantees:
136136

137137
|checkmark| Read own writes |checkmark| Monotonic reads |checkmark| Monotonic writes |checkmark| Writes follow reads
138138

139-
.. topic:: Scenario 1 (Read Concern "majority" and Write Concern "majority")
139+
.. note:: Scenario 1 (Read Concern "majority" and Write Concern "majority")
140140

141141
During the transient period with two primaries, because only ``P``\
142142
:sub:`new` can fulfill writes with :writeconcern:`{ w: "majority" }
@@ -193,7 +193,7 @@ the following causal consistency guarantees:
193193
reflects a state of the data after Read\ :sub:`1` (i.e. an
194194
earlier state reflects the data read by Read\ :sub:`1`).
195195

196-
.. topic:: Scenario 2 (Read Concern "majority" and Write Concern "majority")
196+
.. note:: Scenario 2 (Read Concern "majority" and Write Concern "majority")
197197

198198
Consider an alternative sequence where Read\ :sub:`1` with read
199199
concern :readconcern:`"majority"` routes to ``S``\ :sub:`1`:
@@ -273,7 +273,7 @@ provides the following causal consistency guarantees *if causal consistency impl
273273

274274
|checkmark| Read own writes |checkmark| Monotonic reads |checkmark| Monotonic writes |checkmark| Writes follow reads
275275

276-
.. topic:: Scenario 3 (Read Concern "majority" and Write Concern ``{w: 1}``)
276+
.. note:: Scenario 3 (Read Concern "majority" and Write Concern ``{w: 1}``)
277277

278278
During the transient period with two primaries, because both ``P``\
279279
:sub:`old` and ``P``\ :sub:`new` can fulfill writes with
@@ -375,7 +375,7 @@ provides the following causal consistency guarantees *if causal consistency impl
375375
earlier state reflects the data read by Read\
376376
:sub:`1`).
377377

378-
.. topic:: Scenario 4 (Read Concern "majority" and Write Concern ``{w: 1}``)
378+
.. note:: Scenario 4 (Read Concern "majority" and Write Concern ``{w: 1}``)
379379

380380
Consider an alternative sequence where Read\ :sub:`1` with
381381
read concern :readconcern:`"majority"` routes to ``S``\ :sub:`1`:
@@ -482,7 +482,7 @@ cannot guarantee causal consistency.
482482
This combination may satisfy all four causal consistency guarantees in
483483
some situations, but not necessarily in all situations.
484484

485-
.. topic:: Scenario 5 (Read Concern "local" and Write Concern ``{w: 1}``)
485+
.. note:: Scenario 5 (Read Concern "local" and Write Concern ``{w: 1}``)
486486

487487
During this transient period, because both ``P``\ :sub:`old` and
488488
``P``\ :sub:`new` can fulfill writes with :writeconcern:`{ w: 1 } <\<number\>>` write concern, a
@@ -553,7 +553,7 @@ the following causal consistency guarantees:
553553
This combination may satisfy all four causal consistency guarantees in
554554
some situations, but not necessarily in all situations.
555555

556-
.. topic:: Scenario 6 (Read Concern "local" and Write Concern "majority")
556+
.. note:: Scenario 6 (Read Concern "local" and Write Concern "majority")
557557

558558
During this transient period, because only ``P``\ :sub:`new` can
559559
fulfill writes with :writeconcern:`{ w: "majority" } <"majority">` write concern, a client

source/core/data-model-operations.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ the following behaviors:
139139

140140
- For each :term:`database`, a single namespace file (i.e.
141141
``<database>.ns``) stores all meta-data for that database, and each
142-
index and collection has its own entry in the namespace file. MongoDB
143-
places :limit:`limits on the size of namespace files
144-
<Size of Namespace File>`.
142+
index and collection has its own entry in the namespace file. See
143+
places :ref:`namespace length limits <limit-namespace-length>` for
144+
specific limitations.
145145

146146
.. _faq-developers-embed-documents:
147147

source/core/index-multikey.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ For an example, see :ref:`multikey-embedded-documents`.
128128
.. seealso::
129129

130130
- :ref:`unique-separate-documents`
131-
132131
- :ref:`index-unique-index`
133132

134133
Sorting

source/core/index-single.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ You can create indexes on fields within embedded documents, just as you
6363
can index top-level fields in documents. Indexes on embedded fields
6464
differ from :ref:`indexes on embedded documents <index-embedded-documents>`,
6565
which include the full content up to the maximum :limit:`index size
66-
<Index Key>` of the embedded document in the index. Instead, indexes on
66+
<Index Key Limit>` of the embedded document in the index. Instead, indexes on
6767
embedded fields allow you to use a "dot notation," to introspect into
6868
embedded documents.
6969

source/core/replica-set-architecture-three-members.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,4 @@ set will elect the secondary to be primary.
8686

8787
.. seealso::
8888

89-
:doc:`/tutorial/deploy-replica-set`.
90-
89+
:doc:`/tutorial/deploy-replica-set`

source/core/retryable-writes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ cannot be :writeconcern:`{w: 0} <\<number\>>`.
156156
any multi-document write operations, such as ``update`` which
157157
specifies ``true`` for the ``multi`` option.
158158

159-
.. topic:: Updates to Shard Key Values
159+
.. note:: Updates to Shard Key Values
160160

161161
Starting in MongoDB 4.2, you can update a document's shard key value
162162
(unless the shard key field is the immutable ``_id`` field) by

source/core/security-encryption-at-rest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Enterprise for Linux also supports authenticated encryption
4949
``AES256-GCM`` (or 256-bit Advanced Encryption Standard in
5050
Galois/Counter Mode). FIPS mode encryption is also available.
5151

52-
.. topic:: AES256-GCM and Filesystem Backups
52+
.. note:: AES256-GCM and Filesystem Backups
5353

5454
.. include:: /includes/fact-aes256-backups.rst
5555

source/core/sharding-balancer-administration.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ All chunk migrations use the following procedure:
176176

177177
.. seealso::
178178

179-
:ref:`moveChunk-directory`.
179+
:ref:`moveChunk-directory`
180180

181181
The migration process ensures consistency and maximizes the availability of
182182
chunks during balancing.

0 commit comments

Comments
 (0)