convertShardKeyToHashed
说明
convertShardKeyToHashed(<Object>)
返回输入的哈希值。
convertShardKeyToHashed()
方法使用与哈希索引相同的哈希函数,可用于查看某个键的哈希值。
例子
use test db.orders.createIndex( { _id: "hashed" } ) sh.shardCollection( "test.orders", { _id : "hashed" } )
如果集合中存在以下文档,则使用_id
字段的哈希值来分发该文档:
{ _id: ObjectId("5b2be413c06d924ab26ff9ca"), "item" : "Chocolates", "qty" : 25 }
要确定用于跨分片分发文档的_id
字段的哈希值,可以使用convertShardKeyToHashed()
方法:
convertShardKeyToHashed( ObjectId("5b2be413c06d924ab26ff9ca") )
[1] | 如果集合已包含数据,则必须在对集合进行分片之前对分片键创建哈希索引。 对于空的collection,MongoDB 会将索引创建为sh.shardCollection() 的一部分。 |