MongoDB叢集設定集合分片生效及檢視集合分片情況

右介發表於2017-08-04
#連線mongos
/opt/mongodb/mongodb-linux-x86_64-2.4.8/bin/mongo  127.0.0.1:27017
 
#使用admin資料庫
use admin
 
#指定testdb分片生效
db.runCommand( { enablesharding :"dbname"});
 
#指定資料庫裡需要分片的集合和片鍵(片鍵根據實際情況選擇)
db.runCommand( { shardcollection : "dbname.collectionname",key : {_id: 1} } )
 
#使用***資料庫
use ***
 
#檢視分片情況
db.tablename.stats();

相關文章