Hello,

I'm trying to setup a system with akka remore. There is one master and 
multiple works and each has actor system and on different hosts.

When I start 1 master and 1 worker, it works fine. But when 1 master and 
multiple workers, we keep receiving disassociated warning:

2017-02-08,10:38:55,797 WARN akka.remote.ReliableDeliverySupervisor: 
Association with remote system [akka.tcp://[email protected]:26000] has 
failed, address is now gated for [5000] ms. Reason: [Disassociated]

This is no transport issue. Because the business logic message of the actor 
could be sent and received between master and workers and the business 
logic works fine. 

Is there something wrong with the akka system?

The confs:

Master:
akka.loggers=["akka.event.slf4j.Slf4jLogger"]
akka.logging-filter="akka.event.slf4j.Slf4jLoggingFilter"
akka.loglevel="DEBUG"
akka.actor.provider=akka.remote.RemoteActorRefProvider
akka.remote.enabled-transports=["akka.remote.netty.tcp"]
akka.remote.netty.tcp.port=25000
akka.remote.netty.tcp.hostname=host1

worker:
akka.loggers=["akka.event.slf4j.Slf4jLogger"]
akka.logging-filter=akka.event.slf4j.Slf4jLoggingFilter
akka.actor.provider=akka.remote.RemoteActorRefProvider
akka.remote.enabled-transports=["akka.remote.netty.tcp"]
akka.remote.netty.tcp.port=26000
akka.remote.netty.tcp.hostname=0.0.0.0
akka.master="akka.tcp://MasterSystem@host1:25000/user/master"

Thanks,
Gang

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to