On this page
Ranged Sharding
Range-based sharding involves dividing data into contiguous ranges determined by the shard key values. In this model, documents with “close” shard key values are likely to be in the same chunk or shard. This allows for efficient queries where reads target documents within a contiguous range. However, both read and write performance may decrease with poor shard key selection. See Shard Key Selection.
Range-based sharding is the default sharding methodology if no other options such as those required for Hashed Sharding or zones are configured.