1

我正在使用 Akka 集群开发服务,但是当我的程序运行时我收到了这些警告。我有一个 8 节点的 Akka 集群。谁能帮我解决这个错误:

[警告] [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] 毫秒. 原因:[Association failed with [akka.tcp://ClusterSystem@192.168.2.7:2552]] 原因:[远程没有响应出站关联。[15000 ms] 后握手超时。]

[警告] [06/07/2018 16:07:06.347] [ClusterSystem-akka.actor.default-dispatcher-101] [akka.remote.PhiAccrualFailureDetector@3895fa5b] 心跳间隔过大:2839 毫秒

4

1 回答 1

0

当您的 HostIP 与配置的种子节点不匹配时,您将收到此类错误。

还要检查您的 akka.remote 配置

  remote {
    log-remote-lifecycle-events = on
    netty.tcp {
      bind-hostname = 0.0.0.0
      bind-port = ${hostport}

      hostname = ${hostip}
      port = ${hostport}
    }
  }

主机名应与您的 HostIP 匹配。

于 2018-06-12T11:52:43.593 回答