我有一个本地节点尝试加入我的生产群集以监控它。
它运行了好几天,但今天,我开始它(因为群集中的节点似乎有连接彼此的问题)但节点没有加入。
我使用InitialStateAsEvents
订阅群集,但我不再收到消息。
生产节点中的日志经常这样说:
New incarnation of existing member [Member(address = akka.tcp://application@127.0.0.1:2000, status = Down)] is trying to join. Existing will be removed from the cluster and then new member will be allowed to join.
但是,我在使用
离开应用程序后取消订阅该节点override def postStop(): Unit = {
cluster.down(cluster.selfAddress)
cluster.unsubscribe(self)
}