akka群集中出错

时间:2018-06-07 14:17:38

标签: akka akka-cluster akka-remote-actor akka-remoting

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

  

[WARN] [06/07/2018 15:08:51.923]   [ClusterSystem-akka.remote.default-远程调度-18]   [akka.tcp://ClusterSystem@192.168.2.8:2552 /系统/ endpointManager / reliableEndpointWriter-akka.tcp%3A%2F%2FClusterSystem%40192.168.2.7%3A2552-8]   与远程系统联系   [akka.tcp://ClusterSystem@192.168.2.7:2552]失败,地址现在   门限为[5000] ms。原因:[协会失败了   [akka.tcp://ClusterSystem@192.168.2.7:2552]]引起:[无回复   来自远程的出境协会。在[15000之后]握手超时   毫秒]。]

     

[WARN] [06/07/2018 16:07:06.347]   [ClusterSystem-akka.actor.default-调度-101]   [akka.remote.PhiAccrualFailureDetector@3895fa5b]心跳间隔是   增长过大:2839毫升

1 个答案:

答案 0 :(得分: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匹配。