2
votes
1answer
132 views

Standard lib or Akka for Scala.2.10.1?

I am going to use Futures and Promises from scala.concurrent package in Scala 2.10.1. Should I use Akka instead ?
2
votes
2answers
105 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
0answers
79 views

Remove AKKA actor from actor system and create another actor with same path name

I have Poll Event which has id, startDate, endDate, status and etc.. startDate and endDate are future dates in long (milli seconds) value for status can be one of the Strings "active", "inactive" and ...
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 ...
0
votes
1answer
132 views

Java STM: Questions on Multiverse STM

I am performing some research into STM technologies on the JVM. Having read some documents, I am a little confused about Multiverse's implementation. According to the Multiverse FAQ, Multiverse does ...
1
vote
2answers
922 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 = { ...
2
votes
1answer
113 views

Achieve S3 concurrency in scala by splitting send and receive into promise and future without blocking

What is a suitable scala library for performing massively concurrent S3 calls, and where can I find sample code showing how the library is used? I have been searching and experimenting for days ...
1
vote
1answer
109 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 ...
0
votes
1answer
329 views

In Scala, does Futures.awaitAll terminate the thread on timeout?

So I'm writing a mini timeout library in scala, it looks very similar to the code here: How do I get hold of exceptions thrown in a Scala Future? The function I execute is either going to complete ...
0
votes
0answers
258 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 ...
0
votes
1answer
153 views

More parallel actors in scala

(sort of followup to How to make a code thread safe in scala? ) I have a scala class that can inherently be called only from one thread (let's call it class ThreadUnsafeProducer); it is, however, ...
1
vote
0answers
223 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 ...
4
votes
3answers
264 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
299 views

What are some opportunities improve performance / concurrency in the following Scala + Akka code?

I am looking for opportunities to increase concurrency and performance in my Scala 2.9 / Akka 2.0 RC2 code. Given the following code: import akka.actor._ case class DataDelivery(data:Double) class ...
2
votes
3answers
370 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 ...
1
vote
2answers
134 views

Sending + processing multiple messages with Actors

When working with Actors, if an Actor needs to co-operate with multiple other Actors to fulfil a request then what's the recommended approach here? To be more precise, if Actor A (through processing ...
-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 ...
5
votes
1answer
216 views

TransactionalMap vs SynchronizedMap

When should one prefer Akka TransactionalMap over regular immutable map mixed in with SynchronizedMap and vice versa? (Or am I comparing apples to oranges here?)
1
vote
2answers
213 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] ...
2
votes
2answers
264 views

Testing concurrent/parallel execution

I'm currently writing a small framework for demand-driven workflows. The API is now stable and I am working on improving tests. It's easy to show that computations are correct (which is a good start), ...
7
votes
1answer
461 views

Does Akka have a react as well like Scala? or is it handled by dispatchers?

According to my understanding, it does not, there are 2 ways to create an actor which is by either extending the Actor class and implementing receive or by creating an anonymous Actor using one of the ...
3
votes
2answers
167 views

How to Implement Retry on Transient Actor Failure?

I'm in a typical situation where I have a group of worker actors that are being fed jobs from a queue. Worker failures can be either transient and due to the environment, or permanent and due to an ...
3
votes
1answer
2k views

Using Akka with Scalatra

My target is building a highly concurrent backend for my widgets. I'm currently exposing the backend as a web service, which receives requests to run a specific widget (using Scalatra), fetches ...
4
votes
1answer
270 views

BoundedBlockingQueue Java

I am looking for a BoundedBlockingQueue that can take any other Queue and make it bounded and blocking. I found akka.util.BoundedBlockingQueue which can do that, but the source code has some fixmes ...
7
votes
3answers
1k views

What is the best way to implement a request/response protocol using akka and scala?

I've been studying about how I could develop a distributed architecture that implements the protocol request/response using the concept of concurrency through actors. I concluded that the best way to ...
6
votes
3answers
579 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, ...
4
votes
1answer
991 views

Equivalent of Akka but for .NET (Concurrency Framework)

Is there something equivalent of Akka but for .NET? http://doc.akka.io/use-cases
3
votes
2answers
2k views

Akka as the concurrency model for Clojure

Looks there is a lot of cool things about Akka framework (I don't really understand the framework, hope to dig into it soon). Is it encouraged to use Akka in Clojure? does it make sense to use Akka as ...
8
votes
2answers
3k views

Akka Actors: Need an example to understand some basics

I'm tinkering with Akka and need some advice how to implement something specific i have in mind. I want to have an actor which i can send a DownloadFile(URI, File) message and downloads it. Since this ...