Your shard key lends itself to pre-splitting your chunks. Then you would just want
to move some of your new empty chunks onto the right servers before they receive
data. If done right, it makes the balancer much less busy.
http://www.mongodb.org/display/DOCS/Splitting+Chunks
Nathan Ehresman
http://www.tebros.com/
> --
> You received this message because you are subscribed to the Google Groups
> "mongodb-user" group.
> To post to this group, send email to mongod...@googlegroups.com.
> To unsubscribe from this group, send email to mongodb-user...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/mongodb-user?hl=en.
As Nathan mentioned, pre-splitting is probably the right way to go
here - it's more code, but hopefully you should only need a small
script that runs every few days. We are looking at tracking not only
the current size but rate of size increase to make the balancer more
predictive, but for now this may be your best solution.