# 任意一节点操作 # 进入mongos 容器中 docker exec -it mongos bash # 连接mongos mongo --host 127.0.0.1 --port 27017 use admin # testdb1开启分片功能 db.runCommand( { enablesharding : "testdb1"}); db.runCommand( { shardcollection : "testdb1.tab1",key : {id: 1} } ) # 添加数据 use testdb1; for(var i=1;i<=20000;i++) db.tab1.save({id:i,"test1":"testval1"}); |