[akka-user] Move/Migrate Actors between Remote Nodes

2014-03-25 Thread Andreas Moregard
Hello! I have been trying to find information on how to move/migrate a running actor from one node to another but I have not been able to find anything concrete. Assume we have three actors, the producer, the processor and the consumer. The producer creates/senses/reads data and sends it to

Re: [akka-user] Move/Migrate Actors between Remote Nodes

2014-03-25 Thread Akka Team
Hi Andreas, To be able to migrate actors you need to be able to restore their state at their new place. This is one of the use-cases for the new experimental akka-persistence module ( http://doc.akka.io/docs/akka/2.3.0/scala/persistence.html). Migrating entities is not trivial, so before you