Skip to content

Commit 77f98c2

Browse files
author
Dave
authored
DOCSP-19672 BACKPORT (#377)
1 parent 3e82c43 commit 77f98c2

File tree

7 files changed

+10
-35
lines changed

7 files changed

+10
-35
lines changed

config/redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1412,6 +1412,7 @@ raw: /master/release-notes/3.0-general-improvements -> ${base}/release-notes/3.0
14121412
[v4.0-*]: /${version}/reference/command/authSchemaUpgrade -> ${base}/${version}/core/security-scram/
14131413
[v4.0-*]: /${version}/reference/command/copydbgetnonce -> ${base}/${version}/reference/command/copydb/
14141414
[v4.0-*]: /${version}/reference/command/resync -> ${base}/${version}/core/master-slave/
1415+
[v4.0-*]: /${version}/reference/command/splitChunk -> ${base}/${version}/tutorial/split-chunks-in-sharded-cluster/
14151416
[v4.0-*]: /${version}/reference/program/mongoperf -> ${base}/${version}/reference/program/
14161417
[v4.0-*]: /${version}/tutorial/perform-two-phase-commits -> ${base}/${version}/core/transactions/
14171418
[v4.0-*]: /${version}/tutorial/install-mongodb-on-linux -> ${base}/${version}/administration/install-on-linux/

source/reference/built-in-roles.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ Cluster Administration Roles
267267
- :authaction:`enableSharding`
268268
- :authaction:`refineCollectionShardKey` (New in 4.4)
269269
- :authaction:`moveChunk`
270-
- :authaction:`splitChunk`
271270
- :authaction:`splitVector`
272271

273272
:authrole:`clusterManager` provides additional privileges for the
@@ -299,7 +298,6 @@ Cluster Administration Roles
299298
- :authaction:`moveChunk`
300299
- :authaction:`planCacheRead`
301300
- :authaction:`remove`
302-
- :authaction:`splitChunk`
303301
- :authaction:`splitVector`
304302
- :authaction:`update`
305303

@@ -355,7 +353,6 @@ Cluster Administration Roles
355353
- :authaction:`insert`
356354
- :authaction:`moveChunk`
357355
- :authaction:`remove`
358-
- :authaction:`splitChunk`
359356
- :authaction:`splitVector`
360357
- :authaction:`update`
361358

source/reference/command.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -531,10 +531,6 @@ Sharding Commands
531531

532532
- Creates a new :term:`chunk`.
533533

534-
* - :dbcommand:`splitChunk`
535-
536-
- Internal command to split chunk. Instead use the methods :method:`sh.splitFind()` and :method:`sh.splitAt()`.
537-
538534
* - :dbcommand:`splitVector`
539535

540536
- Internal command that determines split points.

source/reference/command/mergeChunks.txt

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,15 @@ The :dbcommand:`mergeChunks` command takes the following fields:
7171

7272
- array
7373

74-
- An array that contains the minimum and maximum key values of the new
75-
chunk.
74+
- An array that contains the minimum and maximum key values of the
75+
new chunk.
7676

7777

7878
Access Control
7979
--------------
8080

8181
On deployments running with :setting:`~security.authorization`, the
82-
user must have access that includes the following privileges:
83-
84-
- :authaction:`splitChunk` action on the collection.
85-
86-
The built-in role :authrole:`clusterManager` provides the required
82+
built-in role :authrole:`clusterManager` provides the required
8783
privileges.
8884

8985
Behavior

source/reference/command/nav-sharding.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,6 @@ Sharding Commands
136136

137137
- Creates a new :term:`chunk`.
138138

139-
* - :dbcommand:`splitChunk`
140-
141-
- Internal command to split chunk. Instead use the methods :method:`sh.splitFind()` and :method:`sh.splitAt()`.
142-
143139
* - :dbcommand:`splitVector`
144140

145141
- Internal command that determines split points.
@@ -185,7 +181,6 @@ Sharding Commands
185181
/reference/command/shardCollection
186182
/reference/command/shardingState
187183
/reference/command/split
188-
/reference/command/splitChunk
189184
/reference/command/splitVector
190185
/reference/command/unsetSharding
191186
/reference/command/updateZoneKeyRange

source/reference/privilege-actions.txt

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -554,10 +554,10 @@ Sharding Actions
554554

555555
.. authaction:: moveChunk
556556

557-
User can perform the :dbcommand:`moveChunk` command. In addition, user
558-
can perform the :dbcommand:`movePrimary` command provided that the privilege
559-
is applied to an appropriate database resource. Apply this action to database
560-
or collection resources.
557+
User can perform the :dbcommand:`moveChunk` command. In addition,
558+
user can perform the :dbcommand:`movePrimary` command provided that
559+
the privilege is applied to an appropriate database resource. Apply
560+
this action to database or collection resources.
561561

562562
.. authaction:: removeShard
563563

@@ -569,16 +569,10 @@ Sharding Actions
569569
User can perform the :dbcommand:`shardingState` command. Apply this
570570
action to the ``cluster`` resource.
571571

572-
.. authaction:: splitChunk
573-
574-
User can perform the :dbcommand:`splitChunk` command and the
575-
:dbcommand:`mergeChunks` command. Apply this action to database or
576-
collection resources.
577-
578572
.. authaction:: splitVector
579573

580-
User can perform the :dbcommand:`splitVector` command. Apply this action to
581-
database or collection resources.
574+
User can perform the :dbcommand:`splitVector` command. Apply this
575+
action to database or collection resources.
582576

583577
Server Administration Actions
584578
-----------------------------

source/reference/sharding.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,6 @@ The following database commands support :term:`sharded clusters
266266

267267
- Creates a new :term:`chunk`.
268268

269-
* - :dbcommand:`splitChunk`
270-
271-
- Internal command to split chunk. Instead use the methods :method:`sh.splitFind()` and :method:`sh.splitAt()`.
272-
273269
* - :dbcommand:`splitVector`
274270

275271
- Internal command that determines split points.

0 commit comments

Comments
 (0)