我在mongodb changelog集合中看到以下错误。
{
"_id" : "ip-xxx-xx-xx-xx-2016-05-04T06:31:55-5729975b16a41fe4f4618182",
"server" : "ip-xxx-xx-xx-xx",
"clientAddr" : "xxx.xx.xx.x:36339",
"time" : ISODate("2016-05-04T06:31:55.754Z"),
"what" : "moveChunk.from",
"ns" : "my_db.my_collection",
"details" : {
"min" : {
"my_shard_key" : { "$minKey" : 1 }
},
"max" : {
"my_shard_key" : "H0285211-08"
},
"step 1 of 6" : 0,
"step 2 of 6" : 278,
"note" : "aborted",
"errmsg" : "moveChunk failed to engage TO-shard in the data transfer: cannot start recv'ing chunk [{ my_shard_key: MinKey },{ my_shard_key: \"H0285211-08\" }) :: caused by :: could not query collection metadata :: caused by :: 8002 all servers down/unreachable when querying: my-conf-server-01:27019,my-conf-server-02:27019,my-conf-server-03:27019"
}
}
我可以使用mongo客户端连接到我的mongo配置服务器。这证实没有连接问题。
如果需要更多详细信息,请与我们联系。
答案 0 :(得分:1)
发现问题。
当从副本集的主节点到配置服务器没有连接时,会发生此错误。在我的情况下,我从一个辅助节点成功连接到我的配置服务器(my-conf-server-01:27019,my-conf-server-02:27019,my-conf-server-03:27019)。 主机条目存在,但不在主节点。
由于这个问题,Mongo没有启动块迁移,我的分片也不平衡。