redis-cluster-从远程机器向现有集群添加节点从属永远挂起

redis-cluster-从远程机器向现有集群添加节点从属永远挂起

我正在尝试将一个地址上的 8 个副本的集群连接到另一个地址上的现有集群。

副本服务器均以集群模式运行。

当我尝试做以下任一操作时:

./redis-trib.rb add-node --slave REPLICA_IP:6380 MASTER_IP:6380

或者

./redis-cli --cluster add-node REPLICA_IP:6380 MASTER_IP:6380 --cluster-slave

我得到了相同的结果;

Waiting for the cluster to join...........................

无限期挂起。

两台服务器肯定可以互相看到,我可以从任一服务器连接到任何相关的 redis 节点(副本或主节点)。发现/通信端口(16830 等)都已打开并可连接。这些命令的输出还表明已找到集群,因为它显示了每个节点及其正确的节点 ID。

以下是 add-node 命令的完整输出:

>>> Adding node REPLICA_IP:6380 to cluster MASTER_IP:6380
>>> Performing Cluster Check (using node MASTER_IP:6380)
M: 043a5fa4fdca929d3d87f953906dc7c1f030926c MASTER_IP:6380
   slots:[0-2047] (2048 slots) master
M: e104777d31630eef11a01e41c7d3a6c98e14ab64 MASTER_IP:6386
   slots:[12288-14335] (2048 slots) master
M: 9c807d6f57a9634adcdf75fa1943c32c985bda1c MASTER_IP:6384
   slots:[8192-10239] (2048 slots) master
M: 0f7ec07deff97ca23fe67109da2365d916ff1a67 MASTER_IP:6383
   slots:[6144-8191] (2048 slots) master
M: 974e8b4051b7a8e33db62ba7ad62c7e54abe699d MASTER_IP:6382
   slots:[4096-6143] (2048 slots) master
M: b647bb9d732ff2ee83b097ffb8b49fb2bccd366f MASTER_IP:6387
   slots:[14336-16383] (2048 slots) master
M: a86ac1d5e783bed133b153e471fdd970c17c6af5 MASTER_IP:6381
   slots:[2048-4095] (2048 slots) master
M: 6f859b03f86eded0188ba493063c5c2114d7c11f MASTER_IP:6385
   slots:[10240-12287] (2048 slots) master
[OK] All nodes agree about slots configuration.
>>> Check for open slots...
>>> Check slots coverage...
[OK] All 16384 slots covered.
Automatically selected master MASTER_IP:6380
>>> Send CLUSTER MEET to node REPLICA_IP:6380 to make it join the cluster.
Waiting for the cluster to join
............................

如果我CLUSTER MEET手动运行,然后CLUSTER NODES我可以暂时看到另一个处于“握手”状态且状态为“断开连接”的节点,然后它就消失了。它显示的节点 ID 与实际不一样。

相关内容