MongoDb: sharded replica set: data distribution
- How does the data get distributed among the shards?
- How to backup and restore an infrastructure with 2 shards (3 config servers and 1 mongos)
- When should I choose MongoDb Shard with Replica Set vs MongoDb Replica set only?
- I have 2 shards. I use mongodump and mongorestore for backup and restore, is it a good practice?
- Sometimes, the 3 config server are out of sync. What does it mean? How can I quickly get rid of these issues?
mongodb
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
- How does the data get distributed among the shards?
- How to backup and restore an infrastructure with 2 shards (3 config servers and 1 mongos)
- When should I choose MongoDb Shard with Replica Set vs MongoDb Replica set only?
- I have 2 shards. I use mongodump and mongorestore for backup and restore, is it a good practice?
- Sometimes, the 3 config server are out of sync. What does it mean? How can I quickly get rid of these issues?
mongodb
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
- How does the data get distributed among the shards?
- How to backup and restore an infrastructure with 2 shards (3 config servers and 1 mongos)
- When should I choose MongoDb Shard with Replica Set vs MongoDb Replica set only?
- I have 2 shards. I use mongodump and mongorestore for backup and restore, is it a good practice?
- Sometimes, the 3 config server are out of sync. What does it mean? How can I quickly get rid of these issues?
mongodb
- How does the data get distributed among the shards?
- How to backup and restore an infrastructure with 2 shards (3 config servers and 1 mongos)
- When should I choose MongoDb Shard with Replica Set vs MongoDb Replica set only?
- I have 2 shards. I use mongodump and mongorestore for backup and restore, is it a good practice?
- Sometimes, the 3 config server are out of sync. What does it mean? How can I quickly get rid of these issues?
mongodb
mongodb
asked Oct 20 '15 at 6:25
JLavoieJLavoie
1063
1063
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Sometimes, the 3 config server are out of sync. What does it mean? How can I quickly get rid of these issues?
Most convenient way would be to copy (cp or rsync) the configdb data directory content between hosts in cases of inconsistency
When should I choose MongoDb Shard with Replica Set vs MongoDb Replica set only?
Replica ONLY: When you desire to make your mongo data highly available
and add redundancy in your solution. The benefit can be to offload
reporting requests to secondary nodes and/or make mongodb cluster
sustain network partitions or disaster recovery
Sharding ONLY: When you desire to scale your mongodb cluster
horizontally to achieve load balancing and distribute traffic to
multiple hosts you must choose sharding. For example, you can achieve
partitioning benefits with sharding enabled on databases.
Sharding with replica set: When you desire to enable all benefits
stated above i.e. scale you cluster horizontally to handle large
volumes of data for load balancing and also achieve HA within each
shard you must choose this approach
add a comment |
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f118540%2fmongodb-sharded-replica-set-data-distribution%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sometimes, the 3 config server are out of sync. What does it mean? How can I quickly get rid of these issues?
Most convenient way would be to copy (cp or rsync) the configdb data directory content between hosts in cases of inconsistency
When should I choose MongoDb Shard with Replica Set vs MongoDb Replica set only?
Replica ONLY: When you desire to make your mongo data highly available
and add redundancy in your solution. The benefit can be to offload
reporting requests to secondary nodes and/or make mongodb cluster
sustain network partitions or disaster recovery
Sharding ONLY: When you desire to scale your mongodb cluster
horizontally to achieve load balancing and distribute traffic to
multiple hosts you must choose sharding. For example, you can achieve
partitioning benefits with sharding enabled on databases.
Sharding with replica set: When you desire to enable all benefits
stated above i.e. scale you cluster horizontally to handle large
volumes of data for load balancing and also achieve HA within each
shard you must choose this approach
add a comment |
Sometimes, the 3 config server are out of sync. What does it mean? How can I quickly get rid of these issues?
Most convenient way would be to copy (cp or rsync) the configdb data directory content between hosts in cases of inconsistency
When should I choose MongoDb Shard with Replica Set vs MongoDb Replica set only?
Replica ONLY: When you desire to make your mongo data highly available
and add redundancy in your solution. The benefit can be to offload
reporting requests to secondary nodes and/or make mongodb cluster
sustain network partitions or disaster recovery
Sharding ONLY: When you desire to scale your mongodb cluster
horizontally to achieve load balancing and distribute traffic to
multiple hosts you must choose sharding. For example, you can achieve
partitioning benefits with sharding enabled on databases.
Sharding with replica set: When you desire to enable all benefits
stated above i.e. scale you cluster horizontally to handle large
volumes of data for load balancing and also achieve HA within each
shard you must choose this approach
add a comment |
Sometimes, the 3 config server are out of sync. What does it mean? How can I quickly get rid of these issues?
Most convenient way would be to copy (cp or rsync) the configdb data directory content between hosts in cases of inconsistency
When should I choose MongoDb Shard with Replica Set vs MongoDb Replica set only?
Replica ONLY: When you desire to make your mongo data highly available
and add redundancy in your solution. The benefit can be to offload
reporting requests to secondary nodes and/or make mongodb cluster
sustain network partitions or disaster recovery
Sharding ONLY: When you desire to scale your mongodb cluster
horizontally to achieve load balancing and distribute traffic to
multiple hosts you must choose sharding. For example, you can achieve
partitioning benefits with sharding enabled on databases.
Sharding with replica set: When you desire to enable all benefits
stated above i.e. scale you cluster horizontally to handle large
volumes of data for load balancing and also achieve HA within each
shard you must choose this approach
Sometimes, the 3 config server are out of sync. What does it mean? How can I quickly get rid of these issues?
Most convenient way would be to copy (cp or rsync) the configdb data directory content between hosts in cases of inconsistency
When should I choose MongoDb Shard with Replica Set vs MongoDb Replica set only?
Replica ONLY: When you desire to make your mongo data highly available
and add redundancy in your solution. The benefit can be to offload
reporting requests to secondary nodes and/or make mongodb cluster
sustain network partitions or disaster recovery
Sharding ONLY: When you desire to scale your mongodb cluster
horizontally to achieve load balancing and distribute traffic to
multiple hosts you must choose sharding. For example, you can achieve
partitioning benefits with sharding enabled on databases.
Sharding with replica set: When you desire to enable all benefits
stated above i.e. scale you cluster horizontally to handle large
volumes of data for load balancing and also achieve HA within each
shard you must choose this approach
answered Oct 20 '15 at 7:03
Raunak JhawarRaunak Jhawar
1242
1242
add a comment |
add a comment |
Thanks for contributing an answer to Database Administrators Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f118540%2fmongodb-sharded-replica-set-data-distribution%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown