Skip to content

Commit ae6357c

Browse files
authored
DOCSP-26474 Replace ttl index refs (#2346)
* DOCSP-26474 Replace ttl index refs * add extra ref * fix update-operator conflict
1 parent b07a592 commit ae6357c

13 files changed

+20
-19
lines changed

source/administration/production-notes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ consider the following recommendations:
832832
files <dbpath>`.
833833

834834
- Adjust the ``ulimit`` settings for your platform according to the
835-
recommendations in the :doc:`ulimit </reference/ulimit>` reference.
835+
recommendations in the :ref:`ulimit <ulimit>` reference.
836836
Low ``ulimit`` values will negatively affect MongoDB when under heavy
837837
use and can lead to failed connections to MongoDB processes and loss
838838
of service.

source/core/index-hidden.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Behavior
2929
Apart from being hidden from the planner, hidden indexes behave like
3030
unhidden indexes. For example:
3131

32-
- If a hidden index is a :doc:`unique index </core/index-unique>`, the
32+
- If a hidden index is a :ref:`unique index <index-type-unique>`, the
3333
index still applies its unique constraint to the documents.
3434

3535
- If a hidden index is a :ref:`TTL index <index-feature-ttl>`, the index

source/core/sharding-reshard-a-collection.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ Limitations
134134
- Only one collection can be resharded at a time.
135135
- :rsconf:`writeConcernMajorityJournalDefault` must be ``true``.
136136
- Resharding a collection that has a
137-
:doc:`uniqueness </core/index-unique>` constraint is not supported.
138-
- The new shard key cannot have a :doc:`uniqueness </core/index-unique>`
137+
:ref:`uniqueness <index-type-unique>` constraint is not supported.
138+
- The new shard key cannot have a :ref:`uniqueness <index-type-unique>`
139139
constraint.
140140
- The following commands and corresponding shell methods are not
141141
supported on the collection that is being resharded while the

source/reference/command/serverStatus.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2406,17 +2406,17 @@ metrics
24062406
.. serverstatus:: metrics.ttl
24072407

24082408
A document that reports on the operation of the resource use of the
2409-
:doc:`ttl index </tutorial/expire-data/>` process.
2409+
:ref:`ttl index <ttl-collections>` process.
24102410

24112411
.. serverstatus:: metrics.ttl.deletedDocuments
24122412

24132413
The total number of documents deleted from collections with a
2414-
:doc:`ttl index </tutorial/expire-data/>`.
2414+
:ref:`ttl index <ttl-collections>`.
24152415

24162416
.. serverstatus:: metrics.ttl.passes
24172417

24182418
The number of times the background process removes documents from
2419-
collections with a :doc:`ttl index </tutorial/expire-data/>`.
2419+
collections with a :ref:`ttl index <ttl-collections>`.
24202420

24212421
.. _server-status-metrics-cursor:
24222422

source/reference/method/db.collection.createIndexes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ otherwise specified:
217217
- boolean
218218

219219
- Optional. Specifies that each index specified in the ``keyPatterns`` array
220-
is a :doc:`unique index </core/index-unique>`. Unique indexes will not
220+
is a :ref:`unique index <index-type-unique>`. Unique indexes will not
221221
accept insertion or update of documents where the index key value matches an
222222
existing value in the index.
223223

source/reference/method/db.collection.replaceOne.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ Definition
7272

7373
- The replacement document.
7474

75-
Cannot contain
76-
:doc:`update operators </reference/operator/update>`.
75+
Cannot contain :ref:`update operators <update-operators-top-level>`.
7776

7877

7978

source/reference/ulimit.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _ulimit:
2+
13
=========================
24
UNIX ``ulimit`` Settings
35
=========================

source/release-notes/3.2.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ additional CRUD methods that are consistent with the drivers' CRUD API:
11261126

11271127
- Equivalent to :method:`db.collection.findAndModify()` method
11281128
with ``update`` set to a document that specifies modifications
1129-
using :doc:`update operators </reference/operator/update>`.
1129+
using :ref:`update operators <update-operators-top-level>`.
11301130

11311131
* - :method:`db.collection.insertMany()`
11321132
- Equivalent to :method:`db.collection.insert()` method
@@ -1147,16 +1147,16 @@ additional CRUD methods that are consistent with the drivers' CRUD API:
11471147
- Equivalent to :method:`db.collection.update( \<query\>,
11481148
\<update\>, { multi: true, ... }) <db.collection.update()>`
11491149
method with an ``<update>`` document that specifies
1150-
modifications using :doc:`update operators
1151-
</reference/operator/update>` and the ``multi`` option set to
1150+
modifications using :ref:`update operators
1151+
<update-operators-top-level>` and the ``multi`` option set to
11521152
true.
11531153

11541154
* - :method:`db.collection.updateOne()`
11551155

11561156
- Equivalent to :method:`db.collection.update( \<query\>,
11571157
\<update\> ) <db.collection.update()>` method with an
11581158
``<update>`` document that specifies modifications using
1159-
:doc:`update operators </reference/operator/update>`.
1159+
:ref:`update operators <update-operators-top-level>`.
11601160

11611161
WiredTiger and ``fsyncLock``
11621162
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

source/release-notes/4.2-compatibility.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ features include:
810810
- Removal of :limit:`Index Name Length` for MongoDB versions with fCV
811811
set to 4.2+.
812812

813-
- New internal format for :doc:`unique indexes </core/index-unique>`.
813+
- New internal format for :ref:`unique indexes <index-type-unique>`.
814814
The new format applies to both existing unique indexes as well as
815815
newly created/rebuilt unique indexes.
816816

source/tutorial/deploy-replica-set-with-keyfile-access-control.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ authentication mechanism and settings.
2929

3030
Enforcing internal authentication also enforces user access control. To
3131
connect to the replica set, clients like :binary:`~bin.mongosh` need to
32-
use a :doc:`user account</core/authorization>`. See
32+
use a :ref:`user account<authorization>`. See
3333
:ref:`security-repSetDeploy-access-control`.
3434

3535
Cloud Manager and Ops Manager

source/tutorial/deploy-sharded-cluster-with-keyfile-access-control.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ enable internal authentication.
3030

3131
Enforcing internal authentication also enforces user access control. To
3232
connect to the replica set, clients like :binary:`~bin.mongosh` need to
33-
use a :doc:`user account</core/authorization>`. See
33+
use a :ref:`user account<authorization>`. See
3434
:ref:`security-shardClust-deploy-access-control`.
3535

3636
CloudManager and OpsManager

source/tutorial/enforce-keyfile-access-control-in-existing-replica-set.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ authentication mechanism and settings.
2727

2828
Enforcing internal authentication also enforces user access control. To
2929
connect to the replica set, clients like :binary:`~bin.mongosh` need to
30-
use a :doc:`user account</core/authorization>`. See
30+
use a :ref:`user account<authorization>`. See
3131
:ref:`security-replSet-auth-access-control`.
3232

3333
Cloud Manager and Ops Manager

source/tutorial/enforce-keyfile-access-control-in-existing-sharded-cluster.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ enable internal authentication.
3030

3131
Enforcing internal authentication also enforces user access control. To
3232
connect to the replica set, clients like :binary:`~bin.mongosh` need to
33-
use a :doc:`user account</core/authorization>`. See
33+
use a :ref:`user account<authorization>`. See
3434
:ref:`security-shardClust-enforce-access-control`.
3535

3636
CloudManager and OpsManager

0 commit comments

Comments
 (0)