-
Notifications
You must be signed in to change notification settings - Fork 1.7k
DOCS-487 updated Sharding, Administration, and Indexing sign posts #206
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
tutorial/install-mongodb-on-linux | ||
tutorial/install-mongodb-on-redhat-centos-or-fedora-linux | ||
tutorial/install-mongodb-on-os-x | ||
tutorial/install-mongodb-on-debian-or-ubuntu-linux | ||
tutorial/change-oplog-size | ||
tutorial/deploy-replica-set | ||
tutorial/deploy-geographically-distributed-replica-set | ||
tutorial/expand-replica-set | ||
tutorial/change-hostnames-in-a-replica-set | ||
tutorial/recover-data-following-unexpected-shutdown | ||
tutorial/deploy-shard-cluster | ||
tutorial/convert-replica-set-to-replicated-shard-cluster | ||
tutorial/add-shards-to-shard-cluster | ||
tutorial/remove-shards-from-cluster | ||
tutorial/expire-data | ||
|
||
.. toctree:: | ||
:hidden: | ||
|
||
tutorial/recover-data-following-unexpected-shutdown | ||
tutorial/convert-replica-set-to-replicated-shard-cluster |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,8 @@ shell helpers. | |
User Commands | ||
------------- | ||
|
||
.. _sharding-commands: | ||
|
||
Sharding | ||
~~~~~~~~ | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,63 +2,62 @@ | |
Sharding | ||
======== | ||
|
||
.. index:: background; sharding | ||
.. _sharding-background: | ||
|
||
MongoDB provides an automatic sharding feature that distributes a | ||
single logical database system across a cluster of machines. MongoDB | ||
Sharding distributes a | ||
single logical database system across a cluster of machines. Sharding | ||
uses range-based portioning to distribute :term:`documents <document>` | ||
in a single collection between members of a shard cluster based on a | ||
specific ":term:`shard key`. | ||
|
||
For a high-level introduction to the underlying concepts and operation | ||
of sharding, consider ":doc:`/core/sharding`." To understand how | ||
sharding works and to use sharding in your deployment, to read | ||
":doc:`/administration/sharding-architectures`" document provides an | ||
overview of basic system architectures. | ||
|
||
Administrators of shard clusters should also read the | ||
":doc:`/administration/sharding`" document. This resource contains a | ||
catalog of procedures for configuring and maintaining shard clusters, | ||
in addition to a :ref:`troubleshooting <sharding-troubleshooting>` | ||
section to aid in diagnosing common issues with sharding. Use the | ||
:ref:`sharding tutorials <sharding-tutorials>` for instructions on | ||
complete administrative operations. | ||
|
||
Finally, for details on MongoDB's internal operation of sharding, the | ||
":doc:`/core/sharding-internals`" document addresses these underlying | ||
concepts. | ||
based on a | ||
specific :term:`shard key`. | ||
|
||
This page lists the documents, tutorials, and reference pages that | ||
describe sharding. | ||
|
||
For an overview, see :doc:`/core/sharding`. To configure, maintain, and | ||
troubleshoot shard clusters, see :doc:`/administration/sharding`. For | ||
deployment architectures, see | ||
:doc:`/administration/sharding-architectures`. For details on the | ||
internal operations of sharding, see :doc:`/core/sharding-internals`. | ||
For procedures for performing certain sharding tasks, see the :ref:`Tutorials <sharding-tutorials>` | ||
list. | ||
|
||
Documentation | ||
------------- | ||
|
||
The following is the outline of the main documentation: | ||
|
||
.. toctree:: | ||
:maxdepth: 3 | ||
|
||
core/sharding | ||
core/sharding-internals | ||
administration/sharding | ||
administration/sharding-architectures | ||
core/sharding-internals | ||
|
||
.. index:: tutorials; sharding | ||
.. _sharding-tutorials: | ||
|
||
Tutorials | ||
--------- | ||
|
||
The following tutorials outline basic administrative process for | ||
deploying and managing shard clusters: | ||
The following tutorials describe specific sharding procedures: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
tutorial/deploy-shard-cluster | ||
tutorial/add-shards-to-shard-cluster | ||
tutorial/remove-shards-from-cluster | ||
tutorial/enforce-unique-keys-for-sharded-collections | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rervert, re: in person conversation. |
||
|
||
.. _sharding-reference: | ||
|
||
Reference | ||
--------- | ||
|
||
The following reference section describes sharding commands: | ||
|
||
Additionally, the :doc:`/tutorial/enforce-unique-keys-for-sharded-collections` | ||
tutorial describes a sharding-specific application development | ||
pattern. | ||
- :ref:`sharding-commands` | ||
|
||
.. STUB tutorial/replace-one-configuration-server-in-a-shard-cluster | ||
.. STUB tutorial/replace-all-configuration-servers-in-a-shard-cluster |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
link smell