created a collection in MongoDB consisting of 11446615 documents.
Each document has the following form:
{
\"_id\" : ObjectId(\"4e03dec7c3c365f57482
This doesn't have to be a mongo question, it's a general operating system question. There are three possible bottlenecks for your database use.
In the case of network, rewrite your network protocol if possible, otherwise shard to other machines. In the case of CPU, if you're 100% on a few cores but others are free, sharding on the same machine will improve performance. If disk is fully utilized add more disks and shard across them -- way cheaper than adding more machines.