Tagged Questions
0
votes
2answers
54 views
Modeling synchronization using actors
I'm trying to understand how to solve the dining philosophers problem using actors. In case you don't know, the crux of the problem is that a thread needs to obtain two locks before it can ...
2
votes
2answers
104 views
How to guarantee response time of Actor?
This is a follow-up to my previous question:
Suppose I have an actor, which handles X requests per second. However sometimes there are bursts and clients send Y > X requests per seconds. Now I ...
2
votes
1answer
92 views
How to handle bursts with Actors?
Suppose I have an actor, which handles X requests per second. It is ok in average but sometimes there are bursts and clients send Y > X requests per second. Suppose also that all requests have ...
0
votes
1answer
27 views
How to limit rate of Actor executions within Actor-model?
There is a whole bucket of Actor model frameworks that focus on maximizing throughput of programmatically-defined.. erm.. actions (or should I say acts).
What implementations allow me to put a limit ...
2
votes
2answers
109 views
Concurrent tasks with Actors and Futures in Scala
Suppose I need to run a few concurrent tasks. I can wrap each task in Future and wait for their completion. Alternatively I can create an Actor for each task. Each Actor executes its task (upon ...
0
votes
0answers
13 views
What about reuse of active behavior (e.g. actors)? Is it useful? How is that issue tackled by practitioners?
In my Bachelor's Degree thesis ("Reuse Mechanisms and Concurrency: From Actors to Agent-Oriented Programming") I considered how reuse happens in concurrency.
Typically, reuse is done by extending ...
0
votes
1answer
35 views
What is considered “best practice” to test semantic race conditions in akka?
Consider the following actor:
class Stateful(worker: ActorRef) extends Actor {
val queue = // immutable queue with details
def receive = {
case NewJob(details) => worker ! details
...
-1
votes
1answer
95 views
JVM high performance concurrency [closed]
Looking for a high performance framework that runs on the JVM and is able to scale-up massively.
I know that several Actor frameworks exist on the JVM and are able to scale-up and provide the ...
1
vote
3answers
206 views
Scala's actor, what is the java equivelent? tradeoffs?
I am reading about scala's actors, so say we have someting like:
object Worker extends Actor {
def act() {
while(true) {
receive {
case "exit" => {
...
1
vote
2answers
907 views
How to get a Promise (or Future) by asking an Akka Actor considering that the result is NOT available as a response from the same message
I have followed this tutorial: http://doc.akka.io/docs/akka/2.0/intro/getting-started-first-scala.html
Basically there is a Master actor which responds to these two messages:
def receive = {
...
1
vote
1answer
108 views
Do I need to take care of producer-consumer rate-matching when using Akka 1.3's actors?
When using Akka 1.3, do I need to worry about what happens when the actors producing messages are producing them faster than than the actors consuming them can process?
Without any mechanism, in a ...
2
votes
1answer
150 views
Performance orientated message callback solution in c++
I am trying to develop a p2p distributed concurrent programming solution in C++. For higher throughput I have observed that "to and fro" concurrent and scalable network solution is required as in ...
0
votes
2answers
175 views
Blocking in scala future?
I have a very long sequence of strings which individually need to be processed by some processing function and then collected as another sequence object. The problem seems to be ideally suited to a ...
1
vote
3answers
268 views
Create 10k+ agents in clojure
As I tested, a separate thread is used for each new agent, when I create them.
Could several agents be run in one thread?
My idea is to create 10K+ light-weight agents (like actors in erlang), so is ...
7
votes
1answer
162 views
Are there any good resources for the Actor Model in Common Lisp, and good documents on the Actor Model in general?
Are there any good implementations, documents, etc. of Actor-esque concurrency libraries in Common Lisp? CLiki is rather vague on this subject.
And no, I'm not using Clojure and I won't use it for ...
2
votes
1answer
229 views
scala actor blocking current thread
I tried to implement a timer based on Scala's actors API with, the current Thread actor (Actor.self) as the timer and an anonymous Actor which does the work that needs to be completed in time.
I have ...
0
votes
1answer
39 views
Does GPars actors model uses user thread or native OS threads
I know when there is no message to process an actor does not consume thread and attaches itself to a thread only when message arrives. However my question is when an actors is attached to a thread ...
0
votes
0answers
256 views
Akka dispatchers waiting for ever
Recently, I've been developing different examples using Akka; for instance a playtool P2P model. For the evaluation, benchmarking, and understanding better, I tried to run the example using different ...
1
vote
0answers
222 views
Is an FSM the right solution for my asynchronous, Akka Actor based calculation engine
I am writing a calculation engine (implemented as an Akka Actors) that will use a few asynchronous and concurrent actors to perform some data retrieval as well as some parts of the calculation.
When ...
4
votes
1answer
234 views
Akka context watch/unwatch happens-before relationship
I have the following sequential actions on two actors, a parent P and a child C:
P watches C (context watch c)
P unwatches C (context unwatch c)
P stops C gracefully (c ! PoisonPill)
What I want ...
0
votes
1answer
202 views
Akka become() and getSender() incompatible
I have a question related to Akka 2.0.1 in the Java API. I have the following situation:
Actor A:
Receives a request from the UI. It will then do the following.
Wait for message from UI
Send msg to ...
0
votes
0answers
100 views
What is the best way how to collect data from many actors in one actor?
What is the best way how to collect data from many actors in one actor and after processing send them to the another actor?
I have may own realization:
import scala.actors._
abstract class Message
...
4
votes
3answers
263 views
what would be the parallel java “actor” code to replace standard synchronization with threads code
If i have this synchronized code which i want to replace with actors with no synchronization, how?
public synchronized int incrementAndGet() {
i = i + 1;
return i;
}
and i have a bunch of users ...
0
votes
1answer
197 views
Concatenative languages and concurrency - is there a difficulty in principle?
is there a principle issue with concurrency in concatenative ( http://concatenative.org/wiki/view/Concatenative%20language ) languages, or is it simply just missing?
Or, of course, am I just missing ...
0
votes
1answer
125 views
Actors pattern and counter in a cluster how do they go along?
I have a cluster of 20 servers.
I want them to send 200 emails (for example).
Now each node decides in its own based on some rules to send an email. HOw can I make them altogether not to send more ...
2
votes
3answers
368 views
Scala: Do you know any advanced Actors docs / tutorials?
i've been working with Scala for some time and i've started to take a deeper look into concurrency. With my knowldege of Java concurrency i've achieved the simple things I had to do, but i'm trying to ...
15
votes
2answers
988 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 ...
-1
votes
1answer
101 views
Is a cross-language actor middleware useful? [closed]
I would like to know your thoughts about the usefulness of a cross-language actor middleware, like something that enables us to write a system in erlang that could interact with actors in scala, for ...
2
votes
2answers
282 views
Scala actors left hanging
I am spawning a small number of actors to fetch, process and save RSS feed items to a database. This is done through a main method of an object running on cron. I create these actors and dole out jobs ...
0
votes
1answer
225 views
Use Post or PostAndAsyncReply with F#'s MailboxProcessor?
I've seen different snippets demonstrating a Put message that returns unit with F#'s MailboxProcessor. In some, only the Post method is used while others use PostAndAsyncReply, with the reply channel ...
2
votes
1answer
152 views
Handling application level concurrency - what's my options?
We have a thin web layer (Scalatra) that translates incoming HTTP requests into events (case classes) that are sent to a thread-bound event processing actor. Some of the events contains the id of an ...
13
votes
2answers
477 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 ...
4
votes
1answer
288 views
Are seda and the actor model essentially equivalent?
SEDA is essentially a set of independent "services" that communicate with each other via queues, which could further be abstracted as message passing.
The actor model is a set of independent ...
40
votes
5answers
2k 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 ...
1
vote
2answers
212 views
Is there a way to deactivate the debugging output of Akka?
While working with Akka, I have implemented a simple command line app.
But Akka also prints statements to the command line like:
[GENERIC] [27.10.11 22:57] ...
3
votes
2answers
259 views
Scala actor: receiveWithin() doesn't receive messages
I'm building an actor-based service in Scala where consumers can query whether clients are authorized and can also authorize clients.
If a consumer queries the authorization state of a client and ...
5
votes
2answers
1k views
Scala final vs val for concurrency visibility
In Java, when using an object across multiple threads (and in general), it is good practice to make fields final. For example,
public class ShareMe {
private final MyObject obj;
public ...
1
vote
1answer
262 views
Ruby concurrency, Revactor vs Process Forking
I am contemplating two different methods of introducing concurrency to a Ruby program. I am currently forking the process, and having the forks communicate via the database.
I have recently found ...
1
vote
2answers
261 views
Scala-Actors, is it good practice to avoid memory leaks?
All started with question "Scala, Actors, what happens to unread inbox messages?". I was thinking how to avoid such problems in large system with many actors.
I found myself writing something like ...
2
votes
1answer
547 views
Actors implementation built on C++0x thread standard
I'm a little disappointed to find that the C++0x concurrency standard doesn't seem to have any native support for a message-passing Actors model.
Is there any support for this that I am missing? ...
2
votes
1answer
272 views
Does Producer/Consumer model equal Actor?
So lately I've been reading a lot of article about how concurrent programming is hard, and how concurrent programming with shared state is near impossible. So languages like Erlang (I think this is ...
5
votes
3answers
301 views
Sending messages to functions in Scala
I'm working my way through Bruce Tate's Seven Languages in Seven Weeks and am having a hard time understanding his implementation of sizer.scala (Scala: Day 3). In particular, consider the following ...
81
votes
3answers
22k views
How does LMAX's disruptor pattern work?
http://code.google.com/p/disruptor/
I am trying to understand the disruptor pattern. I have watched the infoq video and tried to read their paper. I understand there is a ring buffer involved, that ...
6
votes
2answers
508 views
Executing CPU-bound tasks with Scala actors?
Suppose I have to ехеcute several CPU-bound tasks. If I have 4 CPUs, for example, I would probably create a fixed-size thread pool of 4-5 worker threads waiting on a queue and put the tasks in the ...
1
vote
1answer
289 views
Scala Actor subclass can't access mailboxSize?
I have some code like this:
package something
import scala.actors.Actor
import scala.actors.Actor._
class Foo extends Actor {
private val random = new Random()
def doWork() {
if ...
5
votes
5answers
984 views
How do I get hold of exceptions thrown in a Scala Future?
I've been working up my answer to Is there a standard Scala function for running a block with a timeout?, and have run into a problem if an exception is thrown in a Future.
def ...
3
votes
2answers
387 views
scala actors: drop messages if queue is too long?
I would like to drop messages from an actor's mailbox if it becomes too full. For example, if the queue size reaches 1000 messages, the oldest one should be deleted.
6
votes
3answers
576 views
How do we test Actors in Java?
The only thing I've seen so far is someone posting an example of testing a TypedActor. I take it there's no way of testing an UntypedActor through say Junit? Akka docs are getting better by the day, ...
2
votes
1answer
404 views
Why does the Scala Actor implementation involve synchronized code?
My understanding is that the queue based approach to concurrency can be implemented without locking. But I see lots of synchronized keywords in the Actor.scala file (looking at 2.8.1). Is it ...
7
votes
4answers
479 views
Why are messages received by an actor unordered?
I've been studying the actor model (specifically the implementation in Scala) but I can't understand why there's a requirement that messages arrive in no particular order.
It seems like there are at ...

