Hi,
On Thu, Dec 19, 2013 at 9:43 PM, <[email protected]> wrote: > As i've read in akka there is no single point of failure. How can we > handle this situation, > I've few nodes, one of them is the master node that assigns tasks to other > ones, What can be done if master node fails (automatically choose another > node as master)? > You can perhaps use Cluster Singleton<http://doc.akka.io/docs/akka/2.3-M2/contrib/cluster-singleton.html> . > How can we recover from such an failure ? > To recover the state, it must be persistent and for that you can use akka-persistence<http://doc.akka.io/docs/akka/2.3-M2/scala/persistence.html>, or store it in some other way. /Patrik > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: http://akka.io/faq/ > >>>>>>>>>> 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/groups/opt_out. > -- Patrik Nordwall Typesafe <http://typesafe.com/> - Reactive apps on the JVM Twitter: @patriknw -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: http://akka.io/faq/ >>>>>>>>>> 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/groups/opt_out.
