Part 1: What is the Actor Model?
The Actor model was first created by Carl Hewitt and others [1] before being further developed by William Clinger during his graduate mathematics work [2]. Originally developed as an approach to modeling various problems in the then-nascent field of artificial intelligence, we can thank Gul Agha for helping the Actor model grow into the model of concurrent (and sometimes distributed) computation we know today [3]. Based around the simple notion that autonomous agents, called Actors, are themselves a primitive of concurrent computation, the Actor model has inspired countless advances in programming language research. Fittingly, these advances gave rise to a whole host of concrete implementations in various programming languages which have influenced systems research even more than they’ve impacted industry.
Actors communicate by message passing between actor mailboxes and may not share any state. All actors execute at the same time and may perform a limited set of actions. These core ideas of the Actor model revolve around three rules, called the Actor axioms, whose simplicity betrays the profundity of their consequences. Since actors communicate solely by message passing, the axioms dictate that a given actor may take the following actions in response to receiving a message.
- Communication
-
An actor may communicate with other actors by sending a finite number of messages.
- Reproduction
-
An actor may spawn a finite number of new actors.
- Memory/State
-
An actor may designate how a future message will be handled.
In support of the axioms, we may naively define \(A\) as the set of all actors such that \(A = \{a|Actor(a)\}\) and \(M\) as the set of all messages such that \(M = \{m|Message(m)\}\). Ergo, two actors communicate with one another by means of a sequence of messages indicated generally by the notation
Since this model is both very simple and very general, it may surprise some that the Actor model remains extraordinarily influential to this day. Consider, the popularity of programming platforms such as Erlang/OTP and Elixir, Akka on the Java Virtual Machine (JVM), and Akka.NET on the Common Language Runtime (CLR). Moreover, look to the rapid proliferation of Actor-inspired Rust concurrency frameworks such as Actix, spaad/xtra, and Riker. Despite the plethora of Actor model implementations, the axioms unite them all in a single, unifying set of theoretical underpinnings.
What might not be immediately apparent, however, is that the simplicity and generality of the axioms give rise to some interesting considerations.
For example, how can one actor, \(a_0\) send messages to another actor, \(a_1\), but not a third actor, \(a_2\)?
Really, how does \(a_0\) know that \(a_1\) even exists?
This brings us to the topic of actor names, sometimes called addresses, which are sort of like handles in traditional programming paradigms.
In order for \(a_0\) to communicate with \(a_1\), it must first know its name.
Therefore, knowing an actor’s name is a very powerful thing, very much on par with an access capability.
This might not seem like a profound consequence, but it will come up time and again.
Some frameworks even have a special type, usually called something like ActorRef
, which represents an actor’s name.
Without it, you cannot send messages to that actor.
A brief note on composition
One criticism often informally leveled against the Actor model is that "actors don’t compose", which usually just means that they don’t compose in the same way functions do. In fact, depending on their arrangement, actors can mimic the linear-style composition exhibited by functions. We’ll see an example of this very effect in the chapter [Linear composition with pipelines].
Luckily, functional composition is not the only way of having modules work together. Just as other kinds of agents, even complex ones such as humans, compose into groups, so can actors. In fact, since each topology in this book is really just a graph, any form of graph composition may also apply to the Actor model!
We refer to graph composition primarily as an operation of combination. We intend to convey this meaning rather than terms of art such as a graph lexicographic product, series-parallel composition, or other specialized term. |
Examples of this may be found throughout this book. Any time actors come together into logical groups to acheive a common purpose, it is an example of composition.
For curious readers interested in more formal definitions of actor composition, we suggest the examples of agent groups given by Burgess and Bergstra in their book on Promise Theory [4].
Key points
-
Actors are abstract entities which run concurrently.
-
Actors may only share information by passing messages and may not directly share state.
-
Actors have mailboxes in which incoming messages are deposited.
-
The Actor model is defined formally by the three axioms which detail what an actor may do in response to receiving a message.
-
Send messages
-
Spawn more actors
-
Manage its internal state
-
-
An actor cannot send a message to an actor without knowing (or being able to synthesize) it’s name/address.
Bibliography
[1] C. Hewitt, P. Bishop, and R. Steiger, “Session 8 formalisms for artificial intelligence a universal modular actor formalism for artificial intelligence,” in Advance Papers of the Conference, 1973, vol. 3, p. 235.