Chapter 11. Storing actor state with Akka.Persistence

 

This chapter covers

  • Adding a persistent backing data store to an actor to save its state
  • The concepts behind event sourcing
  • Creating evolvable applications using Akka.Persistence and event sourcing

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.

11.1. Understanding event sourcing

 
 
 

11.2. Using Akka.Persistence

 
 
 

11.3. Akka.Persistence performance tuning

 

11.4. Akka.Persistence performance tuning

 
 
 

11.5. Case study: Persistence, storage, staged upgrades

 
 

Summary

 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage