Hi Luciano,
Thanks for your response. We actually have already upgraded our entire cluster. All our MongoDB servers are running 2.2 currently.
One of our application's main bottlenecks is the write-locking which occurs when we write to one of several collections in our sharded cluster (call them `bottleneck_coll1` and `bottleneck_coll2` in `database_a`). In 2.2, write-locking only occurs on a per database level (not globally like in previous versions). To take advantage of this new write-locking model, we'd like to move `bottleneck_coll2` to a new database (`database_b`).
I'm trying to figure out the easiest way to move this collection.
Cheers,
-Chris