On this page
sh.shardCollection()
On this page
Definition
sh.shardCollection( namespace, key, unique, options )- 
     
Shards a collection using the
keyas a the shard key.sh.shardCollection()takes the following arguments:Parameter Type Description namespacestring The namespace of the collection to shard in the form <database>.<collection>.keydocument The index specification document to use as the shard key. The shard key determines how MongoDB distributes the documents among the shards.
The key of the index specification document is the field to use as the shard key. The value of the document must be one of the following:
1for ranged based sharding"hashed"to specify a hashed shard key.
Unless the collection is empty, the index must exist prior to the
shardCollectioncommand. If the collection is empty, MongoDB creates the index prior to sharding the collection if the index that can support the shard key does not already exist.See also Shard Key Indexes
uniqueboolean Optional. When true, theuniqueoption ensures that the underlying index enforces a unique constraint. Hashed shard keys do not support unique constraints. Defaults tofalse. If specifying theoptionsdocument,uniqueis required. Omitting a value foruniquewhile specifying a value for theoptionsdocument may result in an incorrectly sharded collection.optionsdocument Optional. A document containing optional fields, including numInitialChunksandcollation.The
optionsargument supports the following options:Parameter Type Description numInitialChunksinteger Optional. Specifies the number of chunks to create initially when sharding an empty collection with a hashed shard key. MongoDB will then create and balance chunks across the cluster. The
numInitialChunksmust be less than8192per shard.Changed in version 3.4: If the collection is not empty or the shard key is not a hashed key, the operation returns an error.
collationdocument Optional. If the collection specified to shardCollectionhas a default collation, you must include a collation document with{ locale : "simple" }, or theshardCollectioncommand fails. At least one of the indexes whose fields support the shard key pattern must have the simple collation. 
Considerations
MongoDB provides no method to deactivate sharding for a collection after calling shardCollection. Additionally, after shardCollection, you cannot change shard keys or modify the value of any field used in your shard key index.
Hashed Shard Keys
Hashed shard keys use a hashed index of a single field as the shard key.
Use the form {field: "hashed"} to specify a hashed shard key. Hashed shard keys may not be compound indexes.
Note
If chunk migrations are in progress while creating a hashed shard key collection, the initial chunk distribution may be uneven until the balancer automatically balances the collection.
See also
Uniqueness
If specifying unique: true:
- If the collection is empty, 
sh.shardCollection()creates the unique index on the shard key if such an index does not already exist. - If the collection is not empty, you must create the index first before using 
sh.shardCollection(). 
Although you can have a unique compound index where the shard key is a prefix, if using unique parameter, the collection must have a unique index that is on the shard key.
Collation
Changed in version 3.4.
If the collection has a default collation, the sh.shardCollection command must include a collation parameter with the value { locale: "simple" }. For non-empty collections with a default collation, you must have at least one index with the simple collation whose fields support the shard key pattern.
You do not need to specify the collation option for collections without a collation. If you do specify the collation option for a collection with no collation, it will have no effect.
Examples
Simple Usage
Given a collection named people in a database named records, the following command shards the collection by the zipcode field:
sh.shardCollection("records.people", { zipcode: 1 } )
      Usage with Options
The phonebook database has a collection contacts with no default collation. The following example uses sh.shardCollection() to shard the phonebook.contacts with:
- a hashed shard key on the 
last_namefield, 5initial chunks, and- a collation of 
simple. 
sh.shardCollection(
  "phonebook.contacts",
  { last_name: "hashed" },
  false,
  {
    numInitialChunks: 5,
    collation: { locale: "simple" }
  }
)
      See also