On this page本页内容
convertShardKeyToHashed
(<Object>)¶Returns the hashed value for the input. The convertShardKeyToHashed()
method uses the same hashing function as the hashed index and can be used to see what the hashed value would be for a key.
Consider a sharded collection that uses a hashed shard key [1]
If the following document exists in the collection, the hashed value of the _id
field is used to distribute the document:
To determine the hashed value of _id
field used to distribute the document across the shards, you can use the convertShardKeyToHashed
method:
[1] | If the collection already contains data, you must create a hashed index on the shard key before you shard the collection. For an empty collection, MongoDB creates the index as part of sh.shardCollection() . |