Skip to content

Commit fbc9a03

Browse files
authored
DOCSP-26477 Replace x.509 - zones and zone ranges (#2277)
1 parent e657f9a commit fbc9a03

11 files changed

+27
-28
lines changed

source/core/authentication.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ must meet the :ref:`client certificate requirements
7171

7272
For more information on x.509 and MongoDB, see:
7373

74-
- :doc:`x.509 Certificate Authentication </core/security-x.509>`
74+
- :ref:`x.509 Certificate Authentication <security-auth-x509>`
7575
- :ref:`x509-client-authentication`
7676

7777
.. _security-auth-kerberos:

source/core/hashed-sharding.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Shard the Collection
9696
--------------------
9797

9898
Use the :method:`sh.shardCollection()` method, specifying the full namespace
99-
of the collection and the target :doc:`hashed index</core/index-hashed>`
99+
of the collection and the target :ref:`hashed index <index-type-hashed>`
100100
to use as the :term:`shard key`.
101101

102102
.. code-block:: javascript
@@ -142,7 +142,7 @@ Shard an Empty Collection
142142
.. include:: /includes/extracts/zoned-sharding-shard-operation-chunk-distribution.rst
143143

144144
Sharding Empty Collection on Single Field Hashed Shard Key
145-
- With no :doc:`zones and zone ranges </core/zone-sharding>` specified
145+
- With no :ref:`zones and zone ranges <zones-sharding>` specified
146146
for the empty or non-existing collection:
147147

148148
- The sharding operation creates empty chunks to cover the entire
@@ -156,7 +156,7 @@ Sharding Empty Collection on Single Field Hashed Shard Key
156156
- After the initial distribution, the balancer manages the chunk
157157
distribution going forward.
158158

159-
- With :doc:`zones and zone ranges </core/zone-sharding>` specified
159+
- With zones and zone ranges specified
160160
for the empty or a non-existing collection (Available starting in
161161
MongoDB 4.0.3):
162162

@@ -173,7 +173,7 @@ Sharding Empty Collection on Compound Hashed Shard Key with Hashed Field Prefix
173173
If the compound hashed shard key has the hashed field as the prefix
174174
(i.e. the hashed field is the first field in the shard key):
175175

176-
- With no :doc:`zones and zone ranges </core/zone-sharding>` specified
176+
- With no zones and zone ranges specified
177177
for the empty or non-existing collection:
178178

179179
- The sharding operation creates empty chunks to cover the entire
@@ -188,7 +188,7 @@ Sharding Empty Collection on Compound Hashed Shard Key with Hashed Field Prefix
188188
- After the initial distribution, the balancer manages the chunk
189189
distribution going forward.
190190

191-
- With a *single* :doc:`zone </core/zone-sharding>` with a
191+
- With a *single* zone with a
192192
range from ``MinKey`` to ``MaxKey`` specified
193193
for the empty or a non-existing collection *and*
194194
the ``presplitHashedZones`` option specified to
@@ -208,21 +208,21 @@ Sharding Empty Collection on Compound Hashed Shard Key with Non-Hashed Prefix
208208
the prefix (i.e. the hashed field is *not* the first field in the
209209
shard key):
210210

211-
- With no :doc:`zones and zone ranges </core/zone-sharding>` specified
211+
- With no zones and zone ranges specified
212212
for the empty or non-existing collection *and*
213213
:ref:`preSplitHashedZones
214214
<method-shard-collection-presplitHashedZones>` is ``false`` or
215215
omitted, MongoDB does not perform any initial chunk creation or
216216
distribution when sharding the collection.
217217

218-
- With no :doc:`zones and zone ranges </core/zone-sharding>` specified
218+
- With no zones and zone ranges specified
219219
for the empty or non-existing collection *and*
220220
:ref:`preSplitHashedZones
221221
<method-shard-collection-presplitHashedZones>`,
222222
:method:`sh.shardCollection()` / :dbcommand:`shardCollection`
223223
returns an error.
224224

225-
- With :doc:`zones and zone ranges </core/zone-sharding>` specified
225+
- With zones and zone ranges specified
226226
for the empty or a non-existing collection *and* the
227227
:ref:`preSplitHashedZones
228228
<method-shard-collection-presplitHashedZones>` option specified to

source/core/ranged-sharding.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Shard an Empty Collection
7373

7474
If you shard an empty collection:
7575

76-
- With no :doc:`zones and zone ranges </core/zone-sharding>` specified for the
76+
- With no :ref:`zones and zone ranges <zone-sharding>` specified for the
7777
empty or non-existing collection:
7878

7979
- The sharding operation creates a single empty chunk to cover the
@@ -83,7 +83,7 @@ If you shard an empty collection:
8383
chunk across the shards as appropriate as well as manages the chunk
8484
distribution going forward.
8585

86-
- With :doc:`zones and zone ranges </core/zone-sharding>` specified for the
86+
- With zones and zone ranges specified for the
8787
empty or a non-existing collection (Available starting in MongoDB
8888
4.0.3),
8989

source/core/sharding-data-partitioning.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Populated Collection
4545
Empty Collection
4646
~~~~~~~~~~~~~~~~
4747

48-
- If you define :doc:`zones and zone ranges </core/zone-sharding>` defined
48+
- If you define :ref:`zones and zone ranges <zone-sharding>` defined
4949
for an empty or non-existing collection (Available starting in
5050
MongoDB 4.0.3):
5151

@@ -59,7 +59,7 @@ Empty Collection
5959
distribution going forward.
6060

6161

62-
- If you do not have :doc:`zones and zone ranges </core/zone-sharding>` defined
62+
- If you do not have zones and zone ranges defined
6363
for an empty or non-existing collection:
6464

6565
- For hashed sharding:
@@ -165,8 +165,7 @@ begins migrating data across the cluster to ensure an even distribution.
165165

166166
You can :ref:`manage <sharded-cluster-balancer>` certain aspects of the
167167
balancer. The balancer also respects any :term:`zones <zone>` created as
168-
a part of configuring :ref:`zones <zone-sharding>` in a sharded
169-
cluster.
168+
a part of configuring zones in a sharded cluster.
170169

171170
See :ref:`sharding-balancing` for more information on the
172171
:term:`balancer`.

source/includes/steps-clear-jumbo-flag-refine-key.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ content: |
8181
8282
The :dbcommand:`refineCollectionShardKey` command updates the
8383
:doc:`chunk ranges </core/sharding-data-partitioning>` and
84-
:doc:`zone ranges </core/zone-sharding>` to incorporate the new
84+
:ref:`zone ranges <zone-sharding>` to incorporate the new
8585
fields without modifying the range values of the existing key
8686
fields. That is, the refinement of the shard key does not
8787
immediately affect the distribution of chunks across shards or

source/reference/command/refineCollectionShardKey.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Definition
3030
As part of refining the shard key, the
3131
:dbcommand:`refineCollectionShardKey` command updates the
3232
:doc:`chunk ranges </core/sharding-data-partitioning>` and
33-
:doc:`zone ranges </core/zone-sharding>` to incorporate the new
33+
:ref:`zone ranges <zone-sharding>` to incorporate the new
3434
fields without modifying the range values of the existing key
3535
fields. That is, the refinement of the shard key does not
3636
immediately affect the distribution of chunks across shards or

source/reference/command/serverStatus.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4032,7 +4032,7 @@ security
40324032
.. serverstatus:: security.authentication.mechanisms.MONGODB-X509
40334033

40344034
A document that reports on the number of times
4035-
:doc:`x.509 </core/security-x.509/>` has been used to
4035+
:ref:`x.509 <security-auth-x509>` has been used to
40364036
authenticate against the
40374037
:binary:`~bin.mongod` or :binary:`~bin.mongos` instance.
40384038

@@ -4045,31 +4045,31 @@ security
40454045
.. serverstatus:: security.authentication.mechanisms.MONGODB-X509.speculativeAuthenticate.received
40464046

40474047
Number of speculative authentication attempts received using
4048-
:doc:`x.509 </core/security-x.509/>`. Includes both successful and
4048+
:ref:`x.509 <security-auth-x509>`. Includes both successful and
40494049
failed speculative authentication attempts. [#speculative-auth]_
40504050

40514051
.. versionadded:: 4.4
40524052

40534053
.. serverstatus:: security.authentication.mechanisms.MONGODB-X509.speculativeAuthenticate.successful
40544054

40554055
Number of successful speculative authentication attempts received
4056-
using :doc:`x.509 </core/security-x.509/>`. [#speculative-auth]_
4056+
using x.509. [#speculative-auth]_
40574057

40584058
.. versionadded:: 4.4
40594059

40604060
.. serverstatus:: security.authentication.mechanisms.MONGODB-X509.authenticate.received
40614061

40624062
Number of successful and failed authentication attempts
4063-
received using :doc:`x.509 </core/security-x.509/>`. This value
4064-
includes speculative authentication attempts received using x.509.
4063+
received using x.509. This value includes speculative
4064+
authentication attempts received using x.509.
40654065

40664066
.. versionadded:: 4.4
40674067

40684068
.. serverstatus:: security.authentication.mechanisms.MONGODB-X509.authenticate.successful
40694069

40704070
Number of successful authentication attempts received using
4071-
:doc:`x.509 </core/security-x.509/>`. This value includes
4072-
successful speculative authentication attempts which used x.509.
4071+
x.508. This value includes successful speculative authentication
4072+
attempts which used x.509.
40734073

40744074
.. versionadded:: 4.4
40754075

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Keyfile Security
6262

6363
Keyfiles are bare-minimum forms of security and are best suited for testing or
6464
development environments. For production environments we recommend using
65-
:doc:`x.509 certificates</core/security-x.509>`.
65+
:ref:`x.509 certificates<security-auth-x509>`.
6666

6767
.. _security-repSetDeploy-access-control:
6868

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Keyfile Security
6060

6161
Keyfiles are bare-minimum forms of security and are best suited for testing or
6262
development environments. For production environments we recommend using
63-
:doc:`x.509 certificates</core/security-x.509>`.
63+
:ref:`x.509 certificates<security-auth-x509>`.
6464

6565
.. _security-shardClust-deploy-access-control:
6666

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
@@ -60,7 +60,7 @@ Keyfile Security
6060

6161
Keyfiles are bare-minimum forms of security and are best suited for testing or
6262
development environments. For production environments we recommend using
63-
:doc:`x.509 certificates</core/security-x.509>`.
63+
:ref:`x.509 certificates<security-auth-x509>`.
6464

6565
.. _security-replSet-auth-access-control:
6666

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
@@ -69,7 +69,7 @@ Keyfile Security
6969

7070
Keyfiles are bare-minimum forms of security and are best suited for testing or
7171
development environments. For production environments we recommend using
72-
:doc:`x.509 certificates</core/security-x.509>`.
72+
:ref:`x.509 certificates<security-auth-x509>`.
7373

7474
.. _security-shardClust-enforce-access-control:
7575

0 commit comments

Comments
 (0)