1
vote
3answers
48 views

Does the child actor know that he is being resumed?

Imagine a straight-forward supervision hierarchy. The child dies. The father decides to Restart the child. When Restarted, the postRestart and friends are called, but what if the father had decided to ...
3
votes
2answers
471 views

Persisting Akka state in case of a crash

I am a beginner with Akka, and I enjoy many of the functionalities it provides for asynchronous programming, such as Actors, Agents or Futures. A strong selling point of Akka is the fact that when an ...
1
vote
0answers
90 views

In Akka 2.0, can I restart an actor on a new remote node from a supervisor?

Assuming a supervisor that is supervising a remote actor. If the remote actor dies because its entire Akka node has been terminated, is it possible to resurrect the actor on a new Akka node, keeping ...
1
vote
0answers
99 views

In Akka 2.0, is it possible to have a clustered supervisor?

I know that proper clustering using Akka is the focus of Akka 2.1, however need to build something with what's available now. I have a multi node Akka setup and want to gracefully handle remote ...
15
votes
1answer
209 views

Testing with probabilistic failure of components in Akka (Scala)

I've started using Akka with Scala to develop a set of interacting components in a bus-oriented architecture. I need to test the fault-tolerance of the system, and for that I was wondering if there is ...
5
votes
1answer
525 views

Handle Akka actor bounded mailbox MessageQueueAppendFailedException

To avoid OOM, I'm bounding the mailbox size of some of my Akka 1.1.3 actors with a shared custom dispatcher. For example: object Static { val dispatcher = ...
53
votes
3answers
2k views

Akka Actor not terminating if an exception is thrown

I am currently trying to get started with Akka and I am facing a weird problem. I've got the following code for my Actor: class AkkaWorkerFT extends Actor { def receive = { case Work(n, c) if n ...
19
votes
5answers
5k views

Scala + Akka: How to develop a Multi-Machine Highly Available Cluster

We're developing a server system in Scala + Akka for a game that will serve clients in Android, iPhone, and Second Life. There are parts of this server that need to be highly available, running on ...