资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

mongodbshard分片技术-创新互联

启动route process

成都网站建设、网站设计,成都做网站公司-创新互联公司已向1000多家企业提供了,网站设计,网站制作,网络营销等服务!设计与技术结合,多年网站推广经验,合理的价格为您打造企业品质网站。

配置route process并且启动,代码如下:

[root@localhost ~]# /usr/local/mongo/bin/mongos --port 40000 --configdb localhost:30000 --fork --logpath /data/shard/log/route.log --chunkSize 1
forked process: 2911
[root@localhost ~]# all output going to: /data/shard/log/route.log

配置sharding

[root@localhost ~]# /usr/local/mongo/bin/mongo --port 40000
MongoDB shell version: 2.0.4
connecting to: 127.0.0.1:40000/test
mongos>

这个地方一定要切换到admin数据库

mongos> use admin
switched to db admin
mongos> db
admin
mongos> db.runCommand({addshard:"localhost:20000"})
{ "shardAdded" : "shard0000", "ok" : 1 }
mongos> db.runCommand({addshard:"localhost:20001"})
{ "shardAdded" : "shard0001", "ok" : 1 }

mongos> db.runCommand({enablesharding:"test"})
{ "ok" : 1 }
mongos> db.runCommand({shardcollection:"test.users",key:{_id:1}})
{ "collectionsharded" : "test.users", "ok" : 1 }

 

momongos> for(var i =1;i <= 500000;i++) db.users.insert({age:i,name:"fangwei",addr:"hangzhou",country:"China"})
mongos> db.users.find()
{ "_id" : ObjectId("53d4eefd67d21d1d69f5bcd0"), "age" : 1 }
{ "_id" : ObjectId("53d4f024b1e3fc47712a0576"), "age" : 1, "name" : "fangwei", "addr" : "hangzhou", "country" : "China" }
{ "_id" : ObjectId("53d4f024b1e3fc47712a0577"), "age" : 2, "name" : "fangwei", "addr" : "hangzhou", "country" : "China" }ngos>

---验证我们的分片

mongos> db.users.stats()
{
 "sharded" : true,
 "flags" : 1,
 "ns" : "test.users",
 "count" : 500001,
 "numExtents" : 17,
 "size" : 46000036,
 "storageSize" : 81166336,
 "totalIndexSize" : 18845680,
 "indexSizes" : {
  "_id_" : 18845680
 },
 "avgObjSize" : 91.999888000224,
 "nindexes" : 1,
 "nchunks" : 37,
 "shards" : {
  "shard0000" : {
   "ns" : "test.users",
   "count" : 197093,
   "size" : 18132500,

   "avgObjSize" : 91.99971587017296,
   "storageSize" : 33333248,
   "numExtents" : 8,
   "nindexes" : 1,
   "lastExtentSize" : 12083200,
   "paddingFactor" : 1,
   "flags" : 1,
   "totalIndexSize" : 8969072,
   "indexSizes" : {
    "_id_" : 8969072
   },
   "ok" : 1
  },
  "shard0001" : {
   "ns" : "test.users",
   "count" : 302908,
   "size" : 27867536,

   "avgObjSize" : 92,
   "storageSize" : 47833088,
   "numExtents" : 9,
   "nindexes" : 1,
   "lastExtentSize" : 14499840,
   "paddingFactor" : 1,
   "flags" : 1,
   "totalIndexSize" : 9876608,
   "indexSizes" : {
    "_id_" : 9876608
   },
   "ok" : 1
  }
 },
 "ok" : 1
}
mongos>

查看磁盘上物理文件分布情况

mongos> exit
bye
[root@localhost ~]# ll /data/shard/s0/test
total 213004
-rw-------. 1 root root  67108864 Jul 27 20:28 test.0
-rw-------. 1 root root 134217728 Jul 27 20:09 test.1
-rw-------. 1 root root  16777216 Jul 27 20:28 test.ns
drwxr-xr-x. 2 root root      4096 Jul 27 20:09 _tmp
[root@localhost ~]#

[root@localhost ~]# ll /data/shard/s1/test
total 475148
-rw-------. 1 root root  67108864 Jul 27 20:38 test.0
-rw-------. 1 root root 134217728 Jul 27 20:27 test.1
-rw-------. 1 root root 268435456 Jul 27 20:27 test.2
-rw-------. 1 root root  16777216 Jul 27 20:38 test.ns
drwxr-xr-x. 2 root root      4096 Jul 27 20:27 _tmp
[root@localhost ~]#

---列出所有的shard server

mongos> use admin
switched to db admin
mongos> db.runCommand({listshards:1})
{
 "shards" : [
  {
   "_id" : "shard0000",
   "host" : "localhost:20000"
  },
  {
   "_id" : "shard0001",
   "host" : "localhost:20001"
  }
 ],
 "ok" : 1
}

-----查看sharding信息

mongos> printShardingSizes()
--- Sharding Status ---
  sharding version: { "_id" : 1, "version" : 3 }
  shards:
      { "_id" : "shard0000", "host" : "localhost:20000" }
      { "_id" : "shard0001", "host" : "localhost:20001" }
  databases:
 { "_id" : "admin", "partitioned" : false, "primary" : "config" }
 { "_id" : "test", "partitioned" : true, "primary" : "shard0000" }
  test.users chunks:
   { "_id" : { $minKey : 1 } } -->> { "_id" : ObjectId("53d4eefd67d21d1d69f5bcd0") } on : shard0000 { "estimate" : false, "size" : 0, "numObjects" : 0 }
   { "_id" : ObjectId("53d4eefd67d21d1d69f5bcd0") } -->> { "_id" : ObjectId("53d4f024b1e3fc47712a1dd6") } on : shard0000 { "estimate" : false, "size" : 574116, "numObjects" : 6241 }
 

-------判断是佛sharding

> db.runCommand({isdbgrid:1})
{ "isdbgrid" : 1, "hostname" : "localhost.mongo102", "ok" : 1 }
>

----------对现有表执行sharding

> db
test
> db.users_2.stats()
{
 "sharded" : false,                               ---------------------可看出没有分表
 "primary" : "shard0000",
 "errmsg" : "ns not found",
 "ok" : 0
}

对其进行分表

> db
admin
> db.runCommand({shardcollection:"test.users_2",key:{_ud:1}})
{ "collectionsharded" : "test.users_2", "ok" : 1 }

> use test
switched to db test
> db.users_2.stats()
{
 "sharded" : true,
 "flags" : 1,
 "ns" : "test.users_2",
 "count" : 0,
 "numExtents" : 1,
 "size" : 0,
 "storageSize" : 8192,
 "totalIndexSize" : 16352,
 "indexSizes" : {
  "_id_" : 8176,
  "_ud_1" : 8176
 },
 "avgObjSize" : 0,
 "nindexes" : 2,
 "nchunks" : 1,
 "shards" : {
  "shard0000" : {
   "ns" : "test.users_2",
   "count" : 0,
   "size" : 0,
   "storageSize" : 8192,
   "numExtents" : 1,
   "nindexes" : 2,
   "lastExtentSize" : 8192,
   "paddingFactor" : 1,
   "flags" : 1,
   "totalIndexSize" : 16352,
   "indexSizes" : {
    "_id_" : 8176,
    "_ud_1" : 8176
   },
   "ok" : 1
  }
 },
 "ok" : 1
}
>

-------新增shard server 分片

[root@localhost ~]# mkdir /data/shard/s2

[root@localhost ~]# /usr/local/mongo/bin/mongod --shardsvr --port 20002 --dbpath /data/shard/s2 --fork --logpath /data/shard/log/s2.log --directoryperdb
[root@localhost ~]# forked process: 3480
all output going to: /data/shard/log/s2.log

[root@localhost ~]# /usr/local/mongo/bin/mongo --port 40000
MongoDB shell version: 2.0.4
connecting to: 127.0.0.1:40000/test

mongos> db
test
mongos> use admin
switched to db admin
mongos> db.runCommand({addshard:"localhost:20002"})
{ "shardAdded" : "shard0002", "ok" : 1 }
mongos>

另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


网站标题:mongodbshard分片技术-创新互联
本文网址:http://cdkjz.cn/article/djssjj.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220