Effective Akka Front Cover

Effective Akka

  • Length: 74 pages
  • Edition: 1
  • Publisher:
  • Publication Date: 2013-09-02
  • ISBN-10: 1449360076
  • ISBN-13: 9781449360078
  • Sales Rank: #574680 (See Top 100 Books)
Description

Avoid common mistakes when building distributed, asynchronous, high-performance software with the Akka toolkit and runtime. With this concise guide, author Jamie Allen provides a collection of best practices based on several years of using the actor model. The book also includes examples of actor application types and two primary patterns of actor usage, the Extra Pattern and Cameo Pattern.

Allen, the Director of Consulting for Typesafe—creator of Akka and the Scala programming language—examines actors with a banking-service use case throughout the book, using examples shown in Akka and Scala. If you have any experience with Akka, this guide is essential.

  • Delve into domain-driven and work-distribution actor applications
  • Understand why it’s important to have actors do only one job
  • Avoid thread blocking by allowing logic to be delegated to a Future
  • Model interactions as simply as possible to avoid premature optimization
  • Create well-defined interactions, and know exactly what failures can occur
  • Learn why you should never treat actors as you would an ordinary class
  • Keep track of what goes on in production by monitoring everything
  • Tune Akka applications with the Typesafe Console

Q&A with Jamie Allen, author of “Effective Akka: Patterns and Best Practices”

Q. Why is this an important book for people to read now

A. The advent of the many-core platform means that developers have more processing resources in the form of “cores” at their disposal than ever before. Traditional programming constructs do not allow developers to leverage these cores. As computers add more and more cores with each new platform released by hardware manufacturers, developers will need to find ways to maximize the utilization of these resources. Akka provides a platform for doing just that, and allowing your application to scale up and out as more resources become available.

Q. What will readers walk away with after reading “Effective Akka?”

A. After reading “Effective Akka,” readers should have a firm grasp of the kinds of coding issues they may encounter when developing with actors, regardless of whether they’re using Scala/Akka or Erlang. Many of the concepts are relevant to developers who are writing asynchronous code without actors as well. Effective Akka provides guidance with respect to coding style and best practices so that developers are able to avoid common pitfalls.

Q. What’s so exciting and important about patterns and best prices?

A. The move to “reactive” solutions. Developers can perform much more work nowadays by using asynchrony– not wasting threads that spawn blocking operations, instead defining work that can be applied automatically when such work is completed. Many technologies are emerging in this space, such as ReactiveJava, Node.js, Go, Clojure’s core.async and Scala’s futures, actors and async support. Never before have developers had so many useful tools at their disposal to write applications that are interactive, low-latency, fault tolerant, and scalable. Every language and platform is looking to provide a solution in this space.

Q. Can you give us a few tips when building high-performance software with Akka?

  1. Be very careful about closing over state from outside of a code block. Capture and stabilize such state by placing it into local values so that you know you will have an unchanged value at the time you actually need it.
  2. Keep your code simple. Make more atomic methods and functions that do only one thing, and combine them to accomplish your goals.
  3. Never reference the keyword “this” from inside an actor. Don’t use it and don’t register it elsewhere. Pretend the concept does not exist, where possible. Learn to think in terms of “ActorRef” and use them at all times, even when communicating with yourself.
  4. Create failure zones in your application by assigning thread pool resources to specific groups of actors. This way, if one actor is monopolizing a thread with a computationally-intense activity, only a limited subset of other actors are affected by not having that resource available to them.
  5. Avoid blocking as much as possible. Always write code to be asynchronous unless there is a specific block of code where blocking must occur. Put any such blocking tasks on their own threads, or use Scala’s Managed Blocking to keep other resources from being starved of a thread.

Table of Contents

Chapter 1. Actor Application Types
Chapter 2. Patterns of Actor Usage
Chapter 3. Best Practices

To access the link, solve the captcha.