Chapter 6. Failure handling
This chapter covers
First, you learned how to create simple actors in Akka.NET; then, you learned how to create more-complex actors that can react to changes in their environment by using state machines. Next, you learned how actors are configured in Akka.NET by using Props for individual actor deployments and HOCON for configuring the internals of the actor system. You know how to implement the principles of reactive systems. In chapter 3, you saw how to build actors that communicate asynchronously through message passing, which forms the building blocks of reactive applications.
In this chapter, we’ll look at how you can implement one of the building blocks that sits on top of the message-passing layer, and how an Akka.NET application can respond to service failures. Throughout this chapter, we’ll look at what a failure typically involves, especially in the context of distributed environments running Akka.NET. Then, you’ll see how an actor system reacts to failures to ensure operations without requiring frequent human intervention.