Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Akka Cookbook
Akka Cookbook

Akka Cookbook: Recipes for concurrent, fast, and reactive applications

Arrow left icon
Profile Icon Mishra Profile Icon Héctor Veiga Ortiz
Arrow right icon
$9.99 $43.99
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2 (10 Ratings)
eBook May 2017 414 pages 1st Edition
eBook
$9.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Mishra Profile Icon Héctor Veiga Ortiz
Arrow right icon
$9.99 $43.99
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2 (10 Ratings)
eBook May 2017 414 pages 1st Edition
eBook
$9.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$9.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Akka Cookbook

Supervision and Monitoring

In this chapter, we will cover the following recipes:

  • Creating child actors of a parent actor
  • Overriding the life cycle hooks of an actor
  • Sending messages to actors and collecting responses
  • Understanding OneForOneStrategy for actors
  • Understanding AllForOneStrategy for actors
  • Monitoring an actor life cycle using DeathWatch

Introduction

In the previous chapter, you learned about some basic and advanced things about Akka actors. In this chapter, you will learn about supervision and monitoring of Akka actors.

Using supervision and monitoring, we can write fault-tolerant systems, which can run continuously for days, months, and years without stopping. Let's see what is meant by fault tolerance.

What is fault tolerance?

Fault tolerance is a property of systems that are intended to be always responsive rather than failing completely in case of a failure. Such systems are known as fault tolerance systems or resilient systems.

In simple words, a fault-tolerant system is one which is destined to continue as more or less fully operational, with perhaps a reduction in throughput or an increase...

Creating child actors of a parent actor

In this recipe, we will learn how to create child actors of an actor. Akka follows a tree-like hierarchy to create actors and it is also the recommended practice.

By following such practices, we can handle failures in actors as the parent can take care of it. Lets see how to do it.

Getting ready

We need to import the Hello-Akka project in the IDE of our choice. The Akka actor dependency that we added in build.sbt is sufficient for most of the recipes in this chapter, so we will skip the Getting ready section in our further recipes.

How to do it...

  1. Create a file named ParentChild...

Overriding the life cycle hooks of an actor

Since we are talking about supervision and monitoring of actors, you should understand the life cycle hooks of an actor. In this recipe, you will learn how to override the life cycle hooks of an actor when it starts, stops, prestarts, and postrestarts.

How to do it...

  1. Create a file called ActorLifeCycle.scala in package com.packt.chapter2.
  2. Add the following imports to the top of the file:
        import akka.actor._ 
import akka.actor.SupervisorStrategy._
import akka.util.Timeout
import scala.concurrent.Await
import scala.concurrent.duration._
import akka.pattern.ask
  1. Create the following messages to be sent to the actors:
        case object Error  
case class StopActor...

Sending messages to actors and collecting responses

In this recipe, you will learn how a parent sends messages to its child, and collects responses from them.

To step through this recipe, we need to import the Hello-Akka project in the IDE.

How to do it...

  1. Create a file, SendMesagesToChilds.scala, in package com.packt.chapter2.
  2. Add the following imports to the top of the file:
        import akka.actor.{ Props, ActorSystem, Actor, ActorRef } 
  1. Create messages to be sent to the actors as follows:
        case class DoubleValue(x: Int) 
case object CreateChild
case object Send
case class Response(x: Int)
  1. Define a child actor. It doubles the value sent to it.
        class DoubleActor extends Actor { 
def receive = {
...

Understanding OneForOneStrategy for actors

In this recipe, you will learn about OneForOneStrategy to implement the let it crash model.

The OneForOneStrategy class is applied when we want to supervise the child actors in such a way that only the failed child would be restarted, resumed, or escalated, not it's siblings. If we don't specify any supervisor strategy, then the default would be OneForOneStrategy. Let's understand it.

The OneForOneStrategy class is useful when actors are not dependent on each other, they are each responsible for a single task, and failure of one actor does not affect another.

To step through this recipe, we need to import the Hello-Akka project in IDE.

How to do it...

  1. Create a file, SupervisorStrategy.scala, in...

Introduction


In the previous chapter, you learned about some basic and advanced things about Akka actors. In this chapter, you will learn about supervision and monitoring of Akka actors.

Using supervision and monitoring, we can write fault-tolerant systems, which can run continuously for days, months, and years without stopping. Let's see what is meant by fault tolerance.

What is fault tolerance?

Fault tolerance is a property of systems that are intended to be always responsive rather than failing completely in case of a failure. Such systems are known as fault tolerance systems or resilient systems.

In simple words, a fault-tolerant system is one which is destined to continue as more or less fully operational, with perhaps a reduction in throughput or an increase in response time because of partial failure of its components.

Even if a components fails, the whole system never gets shut down; instead, it remains operational and responsive with just a decreased throughput.

Similarly, while designing...

Creating child actors of a parent actor


In this recipe, we will learn how to create child actors of an actor. Akka follows a tree-like hierarchy to create actors and it is also the recommended practice.

By following such practices, we can handle failures in actors as the parent can take care of it. Lets see how to do it.

Getting ready

We need to import the Hello-Akka project in the IDE of our choice. The Akka actor dependency that we added in build.sbt is sufficient for most of the recipes in this chapter, so we will skip the Getting ready section in our further recipes.

How to do it...

  1. Create a file named ParentChild.scala in package com.packt.chapter2.
  2. Add the following imports to the top of the file:
        import akka.actor.{ActorSystem, Props, Actor} 
  1. Create messages for sending to actors.
        case object CreateChild 
        case class Greet(msg: String) 
  1. Define a child actor as follows:
        class ChildActor extends Actor { 
          def receive = { 
            case Greet(msg) =&gt...
Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Covers a discussion on Lagom—the newest launched Akka framework that is built to create complex microservices easily
  • The recipe approach of the book allows the reader to know important and independent concepts of Scala and Akka in a seamless manner
  • Provides a comprehensive understanding of the Akka actor model and implementing it to create reactive web applications

Description

Akka is an open source toolkit that simplifies the construction of distributed and concurrent applications on the JVM. This book will teach you how to develop reactive applications in Scala using the Akka framework. This book will show you how to build concurrent, scalable, and reactive applications in Akka. You will see how to create high performance applications, extend applications, build microservices with Lagom, and more. We will explore Akka's actor model and show you how to incorporate concurrency into your applications. The book puts a special emphasis on performance improvement and how to make an application available for users. We also make a special mention of message routing and construction. By the end of this book, you will be able to create a high-performing Scala application using the Akka framework.

Who is this book for?

If you are a Scala developer who wants to build scalable and concurrent applications, then this book is for you. Basic knowledge of Akka will help you take advantage of this book.

What you will learn

  • Control an actor using the ContolAware mailbox
  • Test a fault-tolerant application using the Akka test kit
  • Create a parallel application using futures and agents
  • Package and deploy Akka application inside Docker
  • Deploy remote actors programmatically on different nodes
  • Integrate Streams with Akka actors
  • Install Lagom and create a Lagom project

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : May 26, 2017
Length: 414 pages
Edition : 1st
Language : English
ISBN-13 : 9781785288364
Category :
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : May 26, 2017
Length: 414 pages
Edition : 1st
Language : English
ISBN-13 : 9781785288364
Category :
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 158.97
Akka Cookbook
$54.99
Mastering Akka
$54.99
Learning Concurrent Programming in Scala
$48.99
Total $ 158.97 Stars icon
Banner background image

Table of Contents

11 Chapters
Diving into Akka Chevron down icon Chevron up icon
Supervision and Monitoring Chevron down icon Chevron up icon
Routing Messages Chevron down icon Chevron up icon
Using Futures and Agents Chevron down icon Chevron up icon
Scheduling Actors and Other Utilities Chevron down icon Chevron up icon
Akka Persistence Chevron down icon Chevron up icon
Remoting and Akka Clustering Chevron down icon Chevron up icon
Akka Streams Chevron down icon Chevron up icon
Akka HTTP Chevron down icon Chevron up icon
Understanding Various Akka patterns Chevron down icon Chevron up icon
Microservices with Lagom Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2
(10 Ratings)
5 star 70%
4 star 0%
3 star 10%
2 star 20%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




Amazon Customer Aug 08, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I have been using Akka for a while now. I've found this book to cover most of my use cases, plus some that I've not encountered yet. The example code is quite clear. I really like the "cookbook" format and would like to see it continue into advance scenarios.
Amazon Verified review Amazon
Amazon Customer Aug 10, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Great book! I was starting from zero with Akka and in no time I was able to implement the use case I wanted following several recipes. Totally recommended!
Amazon Verified review Amazon
Amazon Customer Jun 11, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I learnt a lot with this book. Useful and great attention to details. Code examples are helpful.
Amazon Verified review Amazon
kokalos Nov 05, 2020
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Il panorama della programmazione ad attori è abbastanza vasto. Questo libro ha il pregio di trattare in modo incrementale tutti gli aspetti del framework dalla applicazione semplice fino ai micro servizi
Amazon Verified review Amazon
Seth Kong Sep 24, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I find this book very helpful in applying Akka in my projects. I was reading many books on Akka before but this book is taking me to the next level. If you are looking to build the strong foundation with Akka using Scala this book is for you.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.