如何自动分片任何新的集合?

时间:2017-10-16 03:19:25

标签: mongodb sharding

我现在将这样的新系列分类:

sh.enableSharding(<database>)
db.createCollection("<collection>")
sh.shardCollection("<database>.<collection>",{"_id":1})

我想知道是否有办法在没有任何操作的情况下对数据库中的任何新集合进行分片,可能是这样的:

sh.enableSharding(<database>)
sh.shardAllCollections("<database>",{"_id":1}) // It is fake
db.createCollection("<collection1>") //shard automatically
db.createCollection("<collection2>") //shard automatically
db.createCollection("<collection3>") //shard automatically

0 个答案:

没有答案