Skip to content

Minor: spelling 'splittable' #986

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/core/sharded-cluster-internals.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ stores address records:
number of fixed chunks. This may have a number of effects:

- If MongoDB cannot split a chunk because all of its documents
have the same shard key, migrations involving these un-splitable
have the same shard key, migrations involving these un-splittable
chunks will take longer than other migrations, and it will be more
difficult for your data to stay balanced.

Expand All @@ -61,7 +61,7 @@ stores address records:
While this field has a large number of possible values, and thus has
potentially higher cardinality, it's possible that a large number of users
could have the same value for the shard key, which would make this
chunk of users un-splitable.
chunk of users un-splittable.

In these cases, cardinality depends on the data. If your address book
stores records for a geographically distributed contact list
Expand Down Expand Up @@ -168,7 +168,7 @@ To select a shard key for a collection:

If this field has low cardinality (i.e not sufficiently
selective) you should add a second field to the shard key making a
compound shard key. The data may become more splitable with a
compound shard key. The data may become more splittable with a
compound shard key.

.. see:: :ref:`sharding-mongos` for more information on query
Expand Down
6 changes: 3 additions & 3 deletions source/tutorial/deploy-shard-cluster.txt
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ You enable sharding on a per-collection basis.

This shard key distributes documents by the value of the
``zipcode`` field. If a number of documents have the same value
for this field, then that :term:`chunk` will be :ref:`splitable
for this field, then that :term:`chunk` will be :ref:`splittable
<sharding-shard-key-cardinality>` by the values of the ``name``
field.

Expand All @@ -271,7 +271,7 @@ You enable sharding on a per-collection basis.

This shard key distributes documents by the value of the ``state``
field. If a number of documents have the same value for this
field, then that :term:`chunk` will be :ref:`splitable
field, then that :term:`chunk` will be :ref:`splittable
<sharding-shard-key-cardinality>` by the values of the ``_id``
field.

Expand All @@ -280,7 +280,7 @@ You enable sharding on a per-collection basis.

This shard key distributes documents by the value of the ``type``
field. If a number of documents have the same value for this
field, then that :term:`chunk` will be :ref:`splitable
field, then that :term:`chunk` will be :ref:`splittable
<sharding-shard-key-cardinality>` by the values of the ``_id``
field.

Expand Down
2 changes: 1 addition & 1 deletion source/tutorial/select-shard-key.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Create a Shard Key that is Easily Divisible

An easily divisible shard key makes it easy for MongoDB to distribute
content among the shards. Shard keys that have a limited number of
possible values can result in chunks that are "unsplitable." See the
possible values can result in chunks that are "unsplittable." See the
:ref:`sharding-shard-key-cardinality` section for more information.

Create a Shard Key that has High Randomness
Expand Down