<http://stackoverflow.com/questions/31454176/how-to-create-3-or-more-distributed-systems-in-akka#> I want to create a distributed system using 3 Remote System(akka functionality) in akka framework using scala but every time when message reaches to 3rd remote system it error me with Drop message.
We are trying to implement distributed systems using Akka Remote actors functionality of akka framework. We want to create three actor-systems say SystemA,SystemB,SystemC and created router actor with 5instances in respective systems. Say RouterA uses SystemA@ip:port RouterB uses SystemB@ip:port RouterC uses SystemC@ip:port When we have to send message from RouterA to RouterC via RouterB . But everytime i got message success at RouterB but failure on Reaching message to RouterC ( 6:22:25.623 TKD [kmipLayerSystem-akka.actor.default-dispatcher-5] DEBUG akka.remote.EndpointWriter - Associated [akka.tcp://[email protected]:2552] -> [akka.tcp://[email protected]:2553] 16:22:25.623 TKD [kmipLayerSystem-akka.actor.default-dispatcher-5] DEBUG a.s.Serialization(akka://kmipLayerSystem) - Using serializer[akka.serialization.JavaSerializer] for message [uKM.util.AWS_GetKeyReqParams] 16:22:25.641 TKD [kmipLayerSystem-akka.actor.default-dispatcher-5] DEBUG akka.remote.EndpointWriter - Drained buffer with maxWriteCount: 50, fullBackoffCount: 1, smallBackoffCount: 0, noBackoffCount: 0 , adaptiveBackoff: 1000 16:22:25.649 TKD [kmsActorSystem-akka.actor.default-dispatcher-19] ERROR akka.remote.EndpointWriter - dropping message [class akka.actor.ActorSelectionMessage] for non-local recipient [Actor[akka.tcp://[email protected]:2553/]] arriving at [akka.tcp://[email protected]:2553] inbound addresses are [akka.tcp://[email protected]:2553]) -- >>>>>>>>>> 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 http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
