Mongodb Sharding Step By Step Tutorial With Example
Sometimes the data within MongoDB will be so huge, that queries against such big data sets can cause a lot of CPU utilization on the server. To tackle this situation, MongoDB has a concept of Sharding, which is basically the splitting of data sets across multiple MongoDB instances. The collection which could be large in size is actually split across multiple collections or Shards as they are called. Logically all the shards work as one collection....