我正在使用 Akka 集群开发服务,但在程序运行时收到这些警告。我有一个 8 节点的 Akka 集群。谁能帮我解决这个错误:
[WARN] [06/07/2018 15:08:51.923] [ClusterSystem-akka.remote.default-remote-dispatcher-18] [akka.tcp://ClusterSystem@192.168.2.8:2552/system/endpointManager/reliableEndpointWriter-akka.tcp%3A%2F%2FClusterSystem%40192.168.2.7%3A2552-8] 与远程系统关联 [akka.tcp://ClusterSystem@192.168.2.7:2552] 失败,地址现在 门控 [5000] 毫秒。 原因:[关联失败 [akka.tcp://ClusterSystem@192.168.2.7:2552]]原因:[无响应 从远程进行出站关联。握手在 [15000 之后超时 女士]。
[WARN] [06/07/2018 16:07:06.347] [ClusterSystem-akka.actor.default-dispatcher-101] [akka.remote.PhiAccrualFailureDetector@3895fa5b] 检测信号间隔为 长得太大:2839米利斯
当您的 HostIP 与配置的种子节点不匹配时,您将收到此类错误。
同时检查您的 akka.remote 配置
remote {
log-remote-lifecycle-events = on
netty.tcp {
bind-hostname = 0.0.0.0
bind-port = ${hostport}
hostname = ${hostip}
port = ${hostport}
}
}
主机名应与您的主机 IP 匹配。