The Akka application and the Actor model are well known for resiliency. In large application one of the major challenge is to handle the failures and to keep alive the application. It’s like in real life when we are hurt and broken down their will always some one with us to overcome from our failures. The same thing happens in Akka System. Actor model come to your rescue when it comes to your system failures.
In this post we are going to look in to Akka Supervision. The supervision is handled with Actor life cycle, because it has been design in such away.
##What is a supervisor?
Supervisor is like an attribute for Actor model that will take care of the children that are created within their Context. To achieve this task we need to implement a piece of code that includes the supervise strategy. The default implementation will looks like this:
So now we can see once the exception is thrown in the child actor it will be passed to (Figure 1) the parent actor which is the supervise actor. During that time the supervisorStrategy will capture the message and decide what needs to be done to child actor (Stop or Restart).
- Escalate message basically will pass the exception message to the supervisor’s parent.
There are two type of supervisorStrategy :
- OneForOneStrategy() : This strategy dealts with on one-for-one-basic action. When an Actor is failed the decision of the supervisor is given to the injured/failed actor.
- AllForOneStrategy() : This strategy is contrast to OneForOneStrategy(). Though it’s a single child actor failure, the decision that made by the supervisor will be applied to all the children actors.
SupervisorStrategy helps to keep an Actor Application fault-tolerant
In Actor model to change the life cycle there are certain methods provided that can be overridden and use it to do our operations. These are some of the methods that helps to execute some jobs within the failing Actor.
-
preStart() : Can perform any initialization methods here that need to be executed before to achieve the main task. During this stage we can send messages to the actor itself. Eg: self ! Initialize
-
postStop() : Once the actor is stopped, can use the method to finalize some activities. Eg: Close the session or clean up the data.
-
postRestart() : After a injury once the actor model is restarted using this method we can execute some activates. Eg: Inform an actor that I’m back to normal state.
-
preRestart() : After a injury before the actor model is up and live can use this method to achieve some task that are used by the actor before it’s failure. Eg: Connect to the data base or create a new session.
Now lets take the same previous example but with some slight modification in Family Hierarchy (Figure 2). In family when sons and daughters are broken down parents are the first people to notice and to help them. It’s obvious mostly sons are attached to mother and daughters are to their father. Therefore lets create our actor models as follows.
Now we can see Sons (Petter & Roy) are under Mother’s (Mary) supervision and daughters (Sally & Victoriya) are under Father’s (John) supervision. Therefore now Mary and John Actor models need to be implemented with supervisor strategy and also the children need to be created under their context. I’ll be using the preStart() method to crate the child actors.
In this example we’ll be using the default action in the supervisorStrategy and we will try to restart and stop the child actors. In our Daughter Actor model we are going to throw Exception to crash the model. During the failure Father Actor model will Restart the failing actor.
Now once the actor model bounce back to live we are going to use preRestart(reason: Throwable, message: Option[Any]) method to inform parent Actors.
Hence, once the failed actors are restarted it will execute the preRestart method. After executing the code you will understand the full flow of the Actor life cycle by looking at the log file.
I have discussed the entire important new code portion from our example. Now let’s send the messages to crash the child actor so that parent can Restart or Stop the crashing model. In this tutorial we are going to Kill/Stop Son actor and to Restart a Daughter actor.
You will be wondering about the Kill message which is defined in Akka. Basically when Kill message is passed to an actor it will throw ActorKilledException. Therefore according to our supervisorStrategy implementation the failing actor will be stopped by the supervisor.
After running the sample application (TestSupervisor) the log file will be as follows,
We can see in the printed log Sally Actor was restarted and Roy Actor stopped by the supervisor.
To download the sample code : Download
Blog Series
- Life with Akka.io
- Set Up Akka
- Akka Concurrency
- Actor
- Actor System
- Supervision / Supervisor
- Being Stateful