Is there any query to check the MongoDB chunk size?.I came to know that the default chunk size is 200MB.In the event of exceeding the chunk-size the shards gets splitted to next chunk correct?Can you guys help me....
According to the docs, there should be an option to find the config size. Run the following while connected to a config servers (
The 200MB number will depend on your version. Older versions default to 200MB. The newest versions will actually scale between 64MB and 200MB before issuing a split.
The default behavior here is to begin the split process when a chunk hits that threshold. The move is not instant, there's a whole process of moving the data, checking that it's in sync and then "cutting over". This should all be handled automatically as long as you have enough data to for a split. (and you've selected a shard key) |
||||
|
|