MongoDB错误:moveChunk无法在数据传输中使用TO-shard:无法启动recv" chunk

时间:2016-05-04 07:25:52

标签: mongodb sharding multipeer-connectivity

我在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配置服务器。这证实没有连接问题。

如果需要更多详细信息,请与我们联系。

1 个答案:

答案 0 :(得分:1)

发现问题。

当从副本集的主节点到配置服务器没有连接时,会发生此错误。在我的情况下,我从一个辅助节点成功连接到我的配置服务器(my-conf-server-01:27019,my-conf-server-02:27019,my-conf-server-03:27019)。 主机条目存在,但不在主节点

由于这个问题,Mongo没有启动块迁移,我的分片也不平衡。