Chapter 8. Composing actor systems

 

This chapter covers

  • Linking actor systems
  • Scaling applications across multiple machines
  • Creating applications that can handle machine-level failure

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.

8.1. Introducing Akka.NET remoting

 
 
 

8.2. Preparing to use remoting

 
 
 

8.3. Communicating with remote actors

 
 
 
 

8.4. Elastic scale across machines

 

8.5. Failure handling across machines

 
 

8.6. Akka.Remote security

 
 

8.7. Case study: Remoting, network applications, web server, and backend server

 

Summary

 
 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage