Tagged Questions
A high-level concurrency model building on independent, totally encapsulated active objects exchanging messages asynchronously.
53
votes
4answers
7k views
Scala actors: receive vs react
Let me first say that I have quite a lot of Java experience, but have only recently become interested in functional languages. Recently I've started looking at Scala, which seems like a very nice ...
51
votes
3answers
1k views
Akka Actor not terminating if an exception is thrown
I am currently trying to get started with Akka and I am facing a weird problem. I've got the following code for my Actor:
class AkkaWorkerFT extends Actor {
def receive = {
case Work(n, c) if n ...
35
votes
2answers
3k views
Is F# really faster than Erlang at spawning and killing processes?
Updated: This question contains an error which makes the benchmark meaningless. I will attempt a better benchmark comparing F# and Erlang's basic concurrency functionality and inquire about the ...
26
votes
3answers
481 views
The actor model: Why is erlang special? Or, why do you need another language for it?
I've been looking into learning erlang, and as a result, have been reading (okay, skimming) about the actor model.
From what I understand, the actor model is simply a set of functions (run within ...
26
votes
2answers
2k views
Scala Actors - Worst practices?
I feel a bit insecure about using actors in Scala.
I have read documentation about how to do stuff..but I guess I would also need some DON'T rules in order to feel free to use them.
I think I am ...
25
votes
2answers
1k views
What's the difference between the different Actors implementation in Scala?
With the release of Scala 2.9.0, it was also announced the Typesafe Stack, which combines the Scala language with the Akka framework. Now, though Scala has actors in its standard library, Akka uses ...
23
votes
4answers
2k views
Different Scala Actor Implementations Overview
I'm trying to find the 'right' actor implementation for my thesis. I realized there is a bunch of them and it's a bit confusing to pick one. Personally I'm especially interested in remote actors, but ...
21
votes
3answers
3k views
Can Scala actors process multiple messages simultaneously?
The reply to a recent question of mine indicated that an actor processed its messages one at a time. Is this true? I see nothing that explicitly says that (in Programming in Scala), which contains the ...
17
votes
2answers
963 views
How does Actors work compared to threads?
Is there any good and short explanation of how Actors works compared to threads?
Can't a thread be seen as an actor and send messages to other threads? I see some difference, but it's not that clear ...
16
votes
1answer
2k views
Scala Actors vs JMS
What are the differences using Scala Actors instead of JMS?
For example from a performance and scalability perspective, what does the Scala Actor model add compared to JMS? In which cases does it ...
16
votes
3answers
3k views
Design patterns for Agent / Actor based concurrent design
Recently i have been getting into alternative languages that support an actor/agent/shared nothing architecture - ie. scala, clojure etc (clojure also supports shared state).
So far most of the ...
15
votes
3answers
2k views
Design patterns/best practice for building Actor-based system
I am struggling to find any decent links to design patterns, best practice or good, basic architectural principles that should be used in building Actor-based apps. Those few that I know of are:
Blog ...
15
votes
4answers
3k views
Which Actor model library/framework for Java?
There are so many different Actor model implementations for Java (and the JVM languages).
A lot of Actor libraries and frameworks have been implemented to permit Actor-style programming in Java ...
15
votes
2answers
657 views
Scala Actors: Different behavior on JRE 1.5 and 1.6
My simulation is using actors and Scala 2.8-Snapshot. In Java JRE 1.5 it runs well - all 40 gears (actors) are working simultaneously. Using Java JRE 1.6 only 3 gears are working simultaneously. I ...
14
votes
2answers
177 views
scala actors vs threads and blocking IO
As I understand it, actors are basically lightweight threads implemented on top of threads, running many actors on a small pool of shared threads.
Given that's the case, using blocking operations in ...
14
votes
5answers
2k views
Any good implementation of Actors for C#?
Is there any good implementation of actors concurrency model for .net/c#?
I have to optimize a c# routine and i think that actors model fits perfectly as a solution for my problem. Unfortunately i ...
14
votes
7answers
4k views
Scala remote actors
Are there any guides or tutorials which explain the possibility to use scala actors remotely? All I have found until now is one example (without comments) but that's hardly enough.
13
votes
1answer
1k views
How Clojure's agents compare to Scala's actors?
I wrote a simulation of the Ring network topology in Scala (source here) (Scala 2.8 RC7) and Clojure (source here) (Clojure 1.1) for a comparison of Actors and Agents.
While the Scala version shows ...
13
votes
1answer
3k views
Using scala actor framework as fork-join computation?
Is it possible, in theory, to use the Scala Actor Framework to do a kind of asynchronous divide-and-conquer computation similarly to JDK 7's Fork-Join framework? If so, how could I express an FJ ...
12
votes
5answers
2k views
Unit testing scala actors
Anyone know of a good way to unit test Scala actors? In the general sense I have an actor that receives a message and will send out other messages in response. This is done on multiple threads, and an ...
11
votes
2answers
240 views
Using Actors instead of `synchronized`
Every time I read about using synchronized in Scala the author will usually mention that Actors should be used instead (this for example). While I understand roughly how actors work I'd really like to ...
11
votes
4answers
2k views
Sleeping actors?
What's the best way to have an actor sleep? I have actors set up as agents which want to maintain different parts of a database (including getting data from external sources). For a number of reasons ...
10
votes
3answers
321 views
The strange case of multiple Futures in Scala
What's the the connection between those Future-related class and traits in Scala, and why are they sprinkled over different packages?
I have found those:
abstract class scala.actors.Future
object ...
10
votes
2answers
509 views
Wait for an Actor to exit()
How do I wait for a Scala Actor to exit()? I set up two Actors in a unit test, and send a few messages to get them started. They send a few messages back and forth and eventually both call exit(). ...
10
votes
1answer
2k views
How can Scala actors return a value in response to a message?
There are plenty of examples of actors replying with another message back to the sender, but whilst browsing the API docs I noticed the !! and !? operators which are part of the CanReply trait (which ...
10
votes
1answer
578 views
What does the remote-actor framework do if trying to write to a client which is no longer there?
I have a server which is using the remote actors framework to communicate with multiple clients. As mentioned in this question, I am having trouble keeping track of when a client disappears. Hence my ...
9
votes
4answers
281 views
Actor-based distributed concurrency libraries for Ocaml and other languages
Question
Can anyone recommend a library for Ocaml that offers an actor-based concurrency model for distributed computing?
Note here the "actor-based" and "distributed" - I'd like the actor-based ...
9
votes
2answers
756 views
Why are messages to akka actors untyped?
In akka, is there a way to restrict messages to actors to be of specific static type other than using the "Typed Actor" APIs that use an RPC style programming model?
Can I use the message passing ...
9
votes
5answers
609 views
Transferring typical 3-tier architecture to actors
This question bothers me for some time now (I hope I'm not the only one). I want to take typical 3-tier jee app and see how it possibly can look like implemented with actors. I would like to find out ...
9
votes
3answers
707 views
Proper way to access shared resource in Scala actors
In Java, one would synchronize methods or blocks that access a shared resource that is needed in a multi-threaded environment.
I'm wondering how the "Scala Actors" way of doing this would work.
...
9
votes
3answers
2k views
How to designate a thread pool for actors
I have an existing java/scala application using a global thread pool. I would like to start using actors in the project but would like everything in the app using the same pool.
I know I can set the ...
8
votes
1answer
174 views
How to start Akka Actors since 2.0?
I'm using Akka Actors and I'm trying to update my code to use the latest 2.0 milestone. The API changed somewhat, for example the creation of Actors now works via something called an ActorSystem.
...
8
votes
3answers
257 views
Should actor messages extend a common trait?
In most examples of proper usage of the scala (and akka) actor frameworks, people tend to derive every message from a single trait. For example:
trait Message
object Ping extends Message
object Pong ...
8
votes
3answers
633 views
Akka remote actor server discovery
I would like to deploy a remote actors software made with akka on a cluster. The system is composed of several worker nodes and a single master node. The problem is that I cannot know in advance the ...
8
votes
2answers
1k views
When to you Akka (Scala Actors) instead of “older” messaging solutions such as WebSphere MQ or Tibco Rendevous?
I already read the discussion about Scala Actors vs. JMS: Scala Actors vs JMS
I will play with Akka in the next weeks to get a better understanding about its power and good use cases. It looks really ...
8
votes
2answers
802 views
Parallel collections in Scala 2.9 and Actors
Ok, this might be a rather silly question, but what is the benefit of using parallel collections within an actor framework? That is, if I'm only dealing with one message at a time from an actor's ...
8
votes
2answers
847 views
Interacting with actors in scala swing applications
I'm writing a small application in scala. The application processes simple log files. Because the processing takes some time, I've decided to let my application core extend Actor.
class Application ...
8
votes
5answers
275 views
How would you explain actors to a non-programmer?
Well, the title's pretty much it: if I sat a non-techie/my mum/twelve-year old boy/cocker spaniel in front of you and asked you to explain actors to them, where would you start? I ask because my ...
8
votes
2answers
475 views
blocking channels vs async message passing
I've noticed two methods to "message passing". One I've seen Erlang use and the other is from Stackless Python. From what I understand here's the difference
Erlang Style - Messages are sent and ...
8
votes
3answers
526 views
Strange GC behaviour of Scala actors application
I have an application which uses rather a lot of actors: 25,000 to be precise. It uses Scala 2.7.7 and is running on jdk6_u18. It basically listens to and processes market data and has very little ...
8
votes
2answers
747 views
Scala Remote Actor Security
What is the (or a) recommended way to implement security for Scala Remote Actors (authentication of remote nodes allowed to speak to this actor, and encryption of the contents of the discussion)? Has ...
8
votes
3answers
383 views
How does Erlang's support for *transparent* distribution of actors impact application design?
One of the features of the actor model in Erlang is transparent distribution. Unless I'm misinterpreting, when you send messages between actors, you theoretically shouldn't assume that they are in ...
7
votes
2answers
210 views
why use akka eventhandler for logging
In the following document, event handlers are described as taking the place of logging
http://akka.io/docs/akka/1.2/general/event-handler.html
There is an Event Handler which takes the place of a ...
7
votes
2answers
303 views
Message delivery sequence in akka actors
I'm pretty new to Akka and couldn't find the answer in the reference manual.
Suppose we have remote actors distributed in the cluster of 3 machines (A, B, C), where one actor lives on each machine ...
7
votes
2answers
271 views
Type safe Scala actors
Is there any way to specify what type of message an actor can accept and give a compile error if anything tries to send it some other type?
7
votes
2answers
364 views
How to discover that a Scala remote actor is died?
In Scala, an actor can be notified when another (remote) actor terminates by setting the trapExit flag and invoking the link() method with the second actor as parameter. In this case when the remote ...
7
votes
1answer
394 views
Transition from thread model to actors
Trying to get a handle on how to think in terms of actors instead of threads. I'm a bit stumped on the following use case:
Consider a system that has a producer process that creates work (e.g. by ...
7
votes
5answers
453 views
Composing actors
I've implemented a Listenable/Listener trait that can be added to Actors. I'm wondering if it's possible to attach this style of trait to an actor without it having to explicitly call the ...
7
votes
3answers
1k views
How to limit concurrency when using actors in Scala?
I'm coming from Java, where I'd submit Runnables to an ExecutorService backed by a thread pool. It's very clear in Java how to set limits to the size of the thread pool.
I'm interested in using Scala ...
7
votes
2answers
886 views
Is it bad practice to send an actor a message from something which is not an actor?
Suppose I have some class which has a property actor_ of type Actor. Is there a problem with me doing
def someMethod() = {
actor_ ! "HELLO"
}
Or should sending a message always be done from ...