Hello there! Here is the current situation. I have a ActorSystem which has multiple actors - Monitoring, Scheduling, Processing. It starts all of them in single JVM.
During one of the design reviews, I was told that Processing may consume lot of memory and may throw OutOfMemoryException, which may bring down the entire JVM (hence ActorSystem). This sounds like a design constraint where the entire system becomes fragile and not fault tolerant. I thought and drew the diagram about what I would like to do <https://lh3.googleusercontent.com/-xpE--xiPLzw/VYCZzm2wtTI/AAAAAAAAAHM/ATctHpQ6ass/s1600/Screen%2BShot%2B2015-06-16%2Bat%2B2.39.37%2BPM.png> *Questions* 1. How can I start ProcessingActor in a separate JVM on a single machine? 2. If we extend the same idea, we should be able to start actors on separate JVM and different machines, right? Please provide your valuable inputs. Thank you + Harit -- >>>>>>>>>> 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.
