let say, the document is
{
x:Number
}
and I have 3 shards.
Instead of autosharding, can I define specifically shard1 only contains data x<0, shard2 only contains data 0 =< x =< 1000 , and shard 3 is 1000
|
|
|
You can. It's possible to pre-split chunks manually, it's described here: http://www.mongodb.org/display/DOCS/Splitting+Chunks Think carefully about how you split your chunks. If you do it badly you can get lots of performance problems, but if you know enough about your keys you can gain a lot. If you do it you probably want to turn off the balancer:
(this is described here: http://www.mongodb.org/display/DOCS/Sharding+Administration) This is an example of how you might do it. Depending on exactly what you want to do you will have to modify it (I assume your shard key is not named
The
The three following commands moves these chunks to separate shards. The docs say that the command will move the chunk containing the value in Read this page too http://www.mongodb.org/display/DOCS/Moving+Chunks |
|||||||||
|