The routers does not guarantee delivery, you are likely firing up the system and sending messages before the group has learned about the actor on the other nodes.
Here's an adaption of your config in a fully working sample that waits a bit to give the groups time to have found the receiving pools that works as expected: https://gist.github.com/johanandren/35ed29f320ec3a0cece0946fcd70eb89 Cheers -- Johan Akka Team On Tue, Mar 7, 2017 at 6:03 PM, Arkaitz Jimenez <[email protected] > wrote: > /ClusterAwareActor { > router = random-group > routees.paths = ["/user/EchoGroup"] > cluster { > enabled = on > allow-local-routees = off > } > } > /EchoGroup { > router = random-pool > nr-of-instances = 10000 > pool-dispatcher { > executor = "fork-join-executor" > fork-join-executor { > parallelism-min = 20 > parallelism-max = 20 > } > } > > > } -- >>>>>>>>>> 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.
