I'm playing with Akka and I have a design in which a supervisor actor has a child playing role A and several children playing role B. I want to define a supervision policy such as A failures are escalated (terminating the supervisor) and B ones produces the individual actors to be restarted.
Is this possible? Is it advisable?
Yes, by overriding
supervisorStrategy
. For example, from the docs:Then reading the note:
So rather than matching on the type of the exception, you would match on the sender (just typing here; it might not compile):
There's nothing wrong with this, but if you have groups of children playing different roles, you should probably follow the first rule of Akka (well, my first rule of Akka): when in doubt, you probably want another actor. Create one actor to supervise role A and another to supervise role B. You'll still need to override
supervisorStrategy
, but the test will be simpler. And it'll be easier to manage any other special differences between role A and B.