微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Nosql Mongodb之旅(29)—MongoDB新增Shard Server

1、启动一个新Shard Server 进程

[plain] view plain copy
  1. [root@localhost~]#mkdir/data/shard/s2
  2. [root@localhost~]#/Apps/mongo/bin/mongod--shardsvr--port20002--dbpath/data/shard/s2
  3. --fork--logpath/data/shard/log/s2.log--directoryperdb
  4. alloutputgoingto:/data/shard/log/s2.log
  5. forkedprocess:6772
2、配置新Shard Server
    [root@localhost~]#/Apps/mongo/bin/mongoadmin--port40000
  1. MongoDBshellversion:1.8.1
  2. connectingto:127.0.0.1:40000/admin
  3. >db.runcommand({addshard:"localhost:20002"})
  4. {"shardAdded":"shard0002","ok":1}
  5. >printShardingStatus()
  6. ---ShardingStatus---
  7. shardingversion:{"_id":1,"version":3}
  8. shards:
  9. {"_id":"shard0000","host":"localhost:20000"}
  10. {"_id":"shard0001","host":"localhost:20001"}
  11. {"_id":"shard0002","host":"localhost:20002"}--新增ShardServer
  12. databases:
  13. {"_id":"admin","partitioned":false,"primary":"config"}
  14. {"_id":"test","partitioned":true,"primary":"shard0000"}
  15. test.userschunks:
  16. shard00022
  17. shard000021
  18. shard000121
  19. toomanychunksntoprint,useverboseifyouwanttoforceprint
  20. test.users_2chunks:
  21. shard000146
  22. shard00021
  23. shard000045
  24. toomanychunksntoprint,useverboseifyouwanttoforceprint
3、 查看分片表状态,以验证新Shard Server
    >usetest
  1. switchedtodbtest
  2. >db.users_2.stats()
  3. {
  4. "sharded":true,
  5. "ns":"test.users_2",
  6. ……
  7. "shard0002":{--新的ShardServer已有数据
  8. "ns":"test.users_2",248); line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "count":21848,108); list-style:decimal-leading-zero outside; color:inherit; line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "size":2097408,248); line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "avgobjSize":96,108); list-style:decimal-leading-zero outside; color:inherit; line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "storageSize":2793472,248); line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "numExtents":5,108); list-style:decimal-leading-zero outside; color:inherit; line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "nindexes":1,248); line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "lastExtentSize":2097152,108); list-style:decimal-leading-zero outside; color:inherit; line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "paddingFactor":1,248); line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "flags":1,108); list-style:decimal-leading-zero outside; color:inherit; line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "totalIndexSize":1277952,248); line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "indexSizes":{
  9. "_id_":1277952
  10. },108); list-style:decimal-leading-zero outside; color:inherit; line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "ok":1
  11. }
  12. },248); line-height:21px; margin:0px!important; padding:0px 3px 0px 10px!important"> "ok":1
  13. }
  14. >
我们可以发现,当我们新增Shard Server 后数据自动分布到了新Shard 上,这是由MongoDB内部自已实现的。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐