连接到 MongoDB mongo shell 中的分片

Connecting to shards in MongoDB mongo shell

我正在学习 MongoDB 中的教程:权威指南,第 2 版,用于数据库课程,它似乎不适用于 3.6 版.2.

基本上我有两个 mongo shell 使用 mongo --nodb 打开了。

然后,首先,我 运行 cluster = new ShardingTest({"shards": 3, "chunksize": 1})(它工作并产生稳定的输出流)。

在第二个 shell 中,书上说 运行 db = (new Mongo("localhost:30999")).getDB("test") 失败了。一位同事告诉我 运行 db = (new Mongo("localhost:20000")).getDB("test"),这很有效。

然后,我插入了同样有效的数据。但是,在尝试 sh.status() 时,我收到消息 printShardingStatus: this db does not have sharding enabled. be sure you are connecting to a mongos from the shell and not to a mongod.

在网上搜索后,我想我会 运行 sh.enableSharding(db) 这也给了我以下错误:

2018-03-01T11:05:22.654-0500 E QUERY     [thread1] Error: not connected to a mongos :
sh._checkMongos@src/mongo/shell/utils_sh.js:8:15
sh._adminCommand@src/mongo/shell/utils_sh.js:18:9
sh.enableSharding@src/mongo/shell/utils_sh.js:98:12
@(shell):1:1

我 运行 在一台 Windows 10 机器上,设置了正确的环境变量并创建了 db 文件夹,所以任何 help/pointers 都会不胜感激!

编辑 1:

即使 db.collection.ensureIndex() 首先是 运行,此错误仍然存​​在。

下面的命令显示了如何在您的本地主机中 运行 3 个分片实例和 3 个配置实例。对于这些分片中的每一个,还创建了 3 个副本集(mongod 实例),可能对您有所帮助:

清理一切

echo "killing mongod and mongos"
killall mongod
killall mongos
echo "removing data files"
rm -rf /data/config
rm -rf /data/shard*

启动一个副本集并告诉它它将是 shard0

echo "starting servers for shard 0"
mkdir -p /data/shard0/rs0 /data/shard0/rs1 /data/shard0/rs2
mongod --replSet s0 --logpath "s0-r0.log" --dbpath /data/shard0/rs0 --port 37017 --fork --shardsvr
mongod --replSet s0 --logpath "s0-r1.log" --dbpath /data/shard0/rs1 --port 37018 --fork --shardsvr
mongod --replSet s0 --logpath "s0-r2.log" --dbpath /data/shard0/rs2 --port 37019 --fork --shardsvr

sleep 5

连接到一台服务器并启动设置

echo "Configuring s0 replica set"
mongo --port 37017 << 'EOF'
config = { _id: "s0", members:[
          { _id : 0, host : "localhost:37017" },
          { _id : 1, host : "localhost:37018" },
          { _id : 2, host : "localhost:37019" }]};
rs.initiate(config)
EOF

启动一个复制集并告诉它它将成为一个分片1

echo "starting servers for shard 1"
mkdir -p /data/shard1/rs0 /data/shard1/rs1 /data/shard1/rs2
mongod --replSet s1 --logpath "s1-r0.log" --dbpath /data/shard1/rs0 -port 47017 --fork --shardsvr
mongod --replSet s1 --logpath "s1-r1.log" --dbpath /data/shard1/rs1 --port 47018 --fork --shardsvr
mongod --replSet s1 --logpath "s1-r2.log" --dbpath /data/shard1/rs2 --port 47019 --fork --shardsvr

sleep 5

echo "Configuring s1 replica set"
mongo --port 47017 << 'EOF'
config = { _id: "s1", members:[
          { _id : 0, host : "localhost:47017" },
          { _id : 1, host : "localhost:47018" },
          { _id : 2, host : "localhost:47019" }]};
rs.initiate(config)
EOF

启动一个复制集并告诉它它将成为一个 shard2

echo "starting servers for shard 2"
mkdir -p /data/shard2/rs0 /data/shard2/rs1 /data/shard2/rs2
mongod --replSet s2 --logpath "s2-r0.log" --dbpath /data/shard2/rs0 --port 57017 --fork --shardsvr
mongod --replSet s2 --logpath "s2-r1.log" --dbpath /data/shard2/rs1 --port 57018 --fork --shardsvr
mongod --replSet s2 --logpath "s2-r2.log" --dbpath /data/shard2/rs2 --port 57019 --fork --shardsvr

sleep 5

echo "Configuring s2 replica set"
mongo --port 57017 << 'EOF'
config = { _id: "s2", members:[
      { _id : 0, host : "localhost:57017" },
      { _id : 1, host : "localhost:57018" },
      { _id : 2, host : "localhost:57019" }]};
rs.initiate(config)
EOF

现在启动 3 个配置服务器

echo "Starting config servers"
mkdir -p /data/config/config-a /data/config/config-b /data/config/config-c
mongod --replSet csReplSet --logpath "cfg-a.log" --dbpath /data/config/config-a --port 57040 --fork --configsvr
mongod --replSet csReplSet --logpath "cfg-b.log" --dbpath /data/config/config-b --port 57041 --fork --configsvr
mongod --replSet csReplSet --logpath "cfg-c.log" --dbpath /data/config/config-c --port 57042 --fork --configsvr

echo "Configuring configuration server replica set"
mongo --port 57040 << 'EOF'
config = { _id: "csReplSet", members:[
          { _id : 0, host : "localhost:57040" },
          { _id : 1, host : "localhost:57041" },
          { _id : 2, host : "localhost:57042" }]};
rs.initiate(config)
EOF

现在在标准端口上启动 mongos

mongos --logpath "mongos-1.log" --configdb csReplSet/localhost:57040,localhost:57041,localhost:57042 --fork
echo "Waiting 60 seconds for the replica sets to fully come online"
sleep 60
echo "Connnecting to mongos and enabling sharding"

添加分片并在测试数据库上启用分片

mongo <<'EOF'
use admin
db.runCommand( { addshard : "s0/localhost:37017" } );
db.runCommand( { addshard : "s1/localhost:47017" } );
db.runCommand( { addshard : "s2/localhost:57017" } );
db.runCommand( { enableSharding: "test" } );
db.runCommand( { shardCollection: "test.some_collection", key: { some_id:1 } } );
EOF

尝试通过打开一个新的 mongo --nodb 连接到端口 20006 上的 shell,然后执行 db = (new Mongo("localhost:20006")).getDB("test")

这应该为所有分片打开 mongos,所以现在命令 sh.status() 应该可以工作,以及设置平衡器状态和启动平衡器等其他命令。