Reputation: 41
I am trying to create AKKA actor clusters on distributed systems with JAVA. I am able to use them in single machine. Just wondering suppose I am keeping the actors in different machines, how do i keep them alive to be ready to receive message.
1.Should i be keeping them in a running server like netty? Could be like a Spring boot executable jar 2.Should i keep a public static void main alive with threads or loop?
is there any full fledged example as well with deployment?
Upvotes: 4
Views: 190