我创建了一个包含两个副本集的分片。每个副本集都有3个mongod
服务器,它们工作正常。此外,mongos
服务器似乎工作。这是它的状态:
mongos> sh.status()
--- Sharding Status ---
sharding version: {
"_id" : 1,
"version" : 3,
"minCompatibleVersion" : 3,
"currentVersion" : 4,
"clusterId" : ObjectId("51c5be46dda9b0a5cd83ad64")
}
shards:
{ "_id" : "s1", "host" : "s1/RemotePC_1:27017,RemotePC_1:27018,RemotePC_1:27019" }
{ "_id" : "s2", "host" : "s2/RemotePC_2:27017,RemotePC_2:27018,RemotePC_2:27019" }
databases:
{ "_id" : "admin", "partitioned" : false, "primary" : "config" }
{ "_id" : "student", "partitioned" : true, "primary" : "s1" }
student.grades
shard key: { "_id" : 1 }
chunks:
s1 1
{ "_id" : { "$minKey" : 1 } } -->> { "_id" : { "$maxKey" : 1 } } on : s1 { "t" : 1, "i" : 0 }
但是,当我在student.grades
集合上运行任何命令(insert,find,count,mongoimport)时,我得到了这个错误:
mongos> db.grades.count()
Sat Jun 22 20:07:00.968 JavaScript execution failed: count failed: {
"code" : 10429,
"ok" : 0,
"errmsg" : "exception: setShardVersion failed host: RemotePC_2:27017 { oldVersion: Timestamp 0|0, oldVersionEpoch: ObjectId
('000000000000000000000000'), errmsg: \"exception: all servers down/unreachable when querying: My-PC:57017,My-PC:57018,My-PC:57019\", code: 8002, ok: 0.0 }"
} at src/mongo/shell/query.js:L180
为什么呢?我错过了什么吗?
答案 0 :(得分:2)
分片群集的所有成员必须能够覆盖所有其他成员。
您在本地计算机上运行mongos
,它可以访问也在本地计算机上运行的配置服务器,它可以访问在远程计算机上运行的分片。
但是,如果远程计算机上的分片无法访问本地计算机上的配置服务器,则 无法在群集中正常运行(这是您看到的错误消息)
解决此问题的方法是使用指定为主机名的配置服务器参数(mongos
)重新启动--configdb
,这些主机名可从“remote-PC”路由(也可查找)。如果您正在运行多个mongos
进程,则需要对所有进程执行此操作。