Re: [akka-user] Akka configured seed nodes are leaving cluster and unreachable/reachable warning message is getting logged.

2016-08-23 Thread Patrik Nordwall
I would suggest that you turn on remote debug logging and hopefully find the root cause of the "Failed to write message to the transport": http://doc.akka.io/docs/akka/2.4/java/logging.html#Auxiliary_remote_logging_options /Patrik On Tue, Aug 23, 2016 at 5:27 PM, Rob Crawford

Re: [akka-user] Akka configured seed nodes are leaving cluster and unreachable/reachable warning message is getting logged.

2016-08-23 Thread Rob Crawford
Trying to pass around an entire Spring context is a bad idea. It contains MANY objects -- you're serializing your entire application. Focus on serializing the state -- changeable data -- of your actor, and let Spring wire up the dependencies on the other node. On Tuesday, August 23, 2016 at

Re: [akka-user] Akka configured seed nodes are leaving cluster and unreachable/reachable warning message is getting logged.

2016-08-23 Thread vipin mandloi
Hello, Thanks for your quick response. As soon i add 3rd node, i am getting this* unreachable/reachable message . and cluster is getting deformed*. till 2 nodes there is no issue. One more things added *serialize-creators = on and serialize-messages = * *on* to verify serialization for props

Re: [akka-user] Akka configured seed nodes are leaving cluster and unreachable/reachable warning message is getting logged.

2016-08-22 Thread Justin du coeur
On Mon, Aug 22, 2016 at 11:09 AM, vipin mandloi wrote: > Please let me know if i am missing any configuration. > It's not a matter of *missing* -- the problem is that this: > *My application.conf is configured as below-* > > > cluster { >

[akka-user] Akka configured seed nodes are leaving cluster and unreachable/reachable warning message is getting logged.

2016-08-22 Thread vipin mandloi
Hello All, I am setting akka cluster *(using akka library version 2.3.9* ) with one master actor and multiple worker actor. Master Actor is configured with pool cluster aware router. I am deploying application with forming 4 cluster nodes. *Initially all the nodes are joining to cluster