我现在将这样的新系列分类:
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