Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Akka Actor Priorities

I have an actor-based system that performs periodic, cpu-intensive data ingests as well as serves RESTful endpoints. I'm using Akka actors to signal/control the various stages of the ingest process, and Spray (which is of course built on Akka) to serve my restful endpoints.

My problem is this: When the ingest kicks off it consumes most of the CPU, starving the RESTful endpoints until its done.

What's the best way to lower the priority of the ingest? Right now the ingest and the Spray module share the same ActorSystem, but they could be separated if that helps the solution.

like image 689
Greg Avatar asked Aug 26 '13 18:08

Greg


People also ask

What are the three operations that an actor can perform?

The processing units—Actors—can only communicate by exchanging messages and upon reception of a message an Actor can do the following three fundamental actions: send a finite number of messages to Actors it knows. create a finite number of new Actors. designate the behavior to be applied to the next message.

How do actors work in Akka?

What is an Actor in Akka? An actor is essentially nothing more than an object that receives messages and takes actions to handle them. It is decoupled from the source of the message and its only responsibility is to properly recognize the type of message it has received and take action accordingly.

What is alternative to Akka?

Spring, Scala, Erlang, Kafka, and Spring Boot are the most popular alternatives and competitors to Akka.

What is an actor in actor model?

An "actor" is the fundamental idea in the actor model. Experts refer to an actor as a computational entity, but a more detailed explanation would be that an actor, like an object, is simply an instance of a particular class. This shows a similarity between the actor model and the object-oriented model.


1 Answers

It seems the different actors in your system need to live in different dispatchers. Create a new dispatcher for the CPU-intensive actors and leave the web service actors in the default dispatcher (or maybe move those to another dispatcher as well, if you see fit)

You may want to tweak the newly created dispatcher - for example, if you say your ingest actors perform computationally intensive jobs you should reduce the degree of parallelism of the dispatcher to something closer to 1.0

Separating your actor system into different dispatchers prevents problems similar to the one you have - if some actors start to hog the underlying threads they end up saturating the dispatcher that runs them. By having the web actors in another dispatcher you limit the impact that the CPU-intensive actors have on the rest of the system. This is somewhat similar to the concept of "bulkheading".

Here's some more info on Akka dispatchers: http://doc.akka.io/docs/akka/2.2.0/scala/dispatchers.html

To configure new dispatcher it's also worthwhile to take a look at the configuration section of the documentation: http://doc.akka.io/docs/akka/2.2.0/general/configuration.html

like image 92
Marius Danila Avatar answered Sep 24 '22 17:09

Marius Danila