DEV Community

lucasnscr
lucasnscr

Posted on • Updated on

Akka and Actor Model

This article promoted the basic actor model implementation and concepts

Here is the complete code of the project

Installation

It is necessary to install some items:

  • Java 11
  • Maven

Image description

Actor model Architecture example

Actors

Actors are programming units within a program, instantiated within an actor server. These actors communicate with each other through messages, which work as in the DTO (Data Transfer Object) standard. These messages are passed through channels, which are like message buffers being queued for reading by actors.
An important point about messages is that they must be created as immutable objects, so we don't have problems with locks and shared access to information.

All this communication is done asynchronously, that is, when a message is sent to an actor, it is deposited for later reading by the actor in its channel (also called mailbox). This is also true in communication between actors: in a scenario where an actor A needs to communicate with an actor B (and receive a return from B), this return must be done through another message, which must be sent from the actor B to actor A.

Mail box

Messages sent to an actor are stored in an inbox (mailbox) and processed one by one (FIFO).

Message Responsibility:

  1. Send messages to other actors
  2. Create actors
  3. Modify your state for the next incoming message

Microservices

A microservice is an architectural style for developing an application as a suite of smaller services, each running in separate processes and communicating with mechanisms such as HTTP. As much as there is a similarity in the divisibility of entities between the actors model and microservices, they are not interchangeable.

When we talk about an actor model, we talk about different processes representing actors who communicate with messages directly. When we talk about microservices, we talk about different backends with different responsibilities communicating via a protocol such as HTTP.

Benefits Actors Model

  • A model in which each processing operation is encapsulated in a different actor. In this way, we can code, test, refactor, etc. each party completely independently, without affecting the other operations
  • Actor is developed under the stateless concept, in which its scope is only for processing the messages that are received, using immutable objects to encapsulate the data. In this way, we do not have deadlocks, as we do not share access to the same information, or inconsistent information because they are being accessed concurrently
  • buffers allow you to model the flow of execution so that slower operations can be executed in parallel with faster operations, thus, we gain a lot in program execution time;
  • With buffers, the most costly processing, such as operations to access database-like resources, is isolated to specific actors, which thus does not impact all processing.

Akka

Akka project with the vision of a runtime and programming model that would address the challenges of both multicore and distributed computing. Akka gives developers a unified way to build scalable and fault-tolerant software that can scale up on multicore systems, and scale out in distributed computing environments, which today often means in the cloud. Akka makes it possible to build software systems with reliability and high performance, without sacrificing developer joy and productivity.
In short, Akka is open source middleware for building highly concurrent, distributed and fault-tolerant systems on the JVM. Akka is built with Scala, but offers both Scala and Java APIs to developers.

Technologies

The following technologies were used to carry out the project:

  • Java
  • Maven
  • Akka

Top comments (0)