Chapter 11. Storing actor state with Akka.Persistence
This chapter covers
Throughout the book so far, you’ve developed a wide variety of actors designed to operate in a number of different scenarios—both small, isolated actors and larger systems such as e-commerce applications. All these actors share a common trait: they exist as an abstraction over the top of application memory. Although actors incorporate desirable attributes such as message queues, processing, and state, the primary purpose of an actor system is to support concurrent workloads and reduce the surface area on which concurrency bugs can occur.
For every actor you’ve created so far, the actor’s state has been ephemeral, and if the actor shuts down, upon restart it returns to the state it had when it was created. But sometimes you need an actor to be more resilient and return to the last state it had before it shut down. Actors in Akka.NET can be shut down for a wide range of reasons: you might need to relocate the actor onto a different actor system because you’re running low on resources; you might take the approach of failing fast and letting Akka.NET restart the actor in the event of an error; or you might need to shut the application down when you want to upgrade it, which will cause all of the actors in the actor system to shut down.