Chapter 8. Composing actor systems
This chapter covers
One of the key objectives of the Reactive Manifesto is to ensure a responsive UX, regardless of what happens in the application, by using reactive principles. This means designing to address two problems: failures internal to the actor system and increased load on actors in the system. You’ve seen how the features of the Akka.NET framework handle both of these scenarios.
Failures can be handled by a combination of actor hierarchies and the supervision system. With the hierarchy, you can isolate failures to a single actor and recover with a supervision strategy handled by its parent. You’ve also seen that handling increased system load depends on increased message throughput. You can address this with Akka.NET’s routers, which evenly distribute messages to a number of actors that perform as a single actor. Routers can scale the number of routees dynamically according to the load, so you can elastically scale by providing either more or less compute power.