We started to use MongoDB at work. So far so good however I was asked to assess if MongoDB could do Replica Set and Sharding at the same time. After searching for a while I find out that yes it can but sharding should be avoiding unless really necessary.

I've read somewhere that with MongoDB you really need to have a lot of document ( like billions ) to start thinking about Sharding, however I fail to comprehend this since the organisation and size of an average document is not mentioned in those "stats".

The criteria we have now is that the RAM should be greater than the memory load needed to complete a request.

These leads me to those question : What are the instructions for MongoDB and SQL server to know what is used in RAM for a request ?

What are the key requirements to use Sharding with MongoDB ?

Can someone point me to a article, post or anything when a person explains why they used Sharding with MongoDB ?

How does MongoDB handles Auto-Sharding ?

Thank you.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

From what I understand your working set (the data that you access the most frequently) must fit in RAM for good performances. If it does not, then sharding can be an option.

Replica sets allows to distribute reads accross the set, while sharding can also serve to distribute writes.

There is a book called 'scaling mongodb' at O'Reilly explaining how and when using replica sets and shards.

You can also look at this page: http://www.mongodb.org/display/DOCS/Sharding+Introduction

link|improve this answer
3  
All of your data doesn't have to be in RAM - but the indexes really should be or you will see a huge drop in performance. – James Avery Oct 11 '11 at 13:05
1  
To further qualify, the part of the index used often should be in memory (so called right-balancing). In some situations that will be the entire index though. – Remon van Vliet Oct 11 '11 at 13:09
@JamesAvery if I understood you right, only indexes must fit completly in RAM for MongoDB to be performant ? – lollancf37 Oct 11 '11 at 13:45
1  
Yes, only the indexes. – Matt Oct 11 '11 at 13:46
@ixi I think I'll check this book. I have been to the page you give me and didn't find the informations I am looking for. I'll check it out again since I get some things better about the subject. – lollancf37 Oct 11 '11 at 13:46
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.