Tagged Questions
1
vote
2answers
84 views
Can it be safe to share a var?
My application has a class ApplicationUsers that has no mutable members. Upon creation of instances, it reads the entire user database (relatively small) into an immutable collection. It has a number ...
0
votes
2answers
70 views
scala+jdbc+case class+actors design confusion
I am writing an exporter that will take results from the database and take every individual records and write it to a comma separated file. Different queries will have different worker created for it ...
1
vote
3answers
45 views
Does the child actor know that he is being resumed?
Imagine a straight-forward supervision hierarchy. The child dies. The father decides to Restart the child. When Restarted, the postRestart and friends are called, but what if the father had decided to ...
0
votes
3answers
68 views
Get existing or create new akka actor
I'm trying to get an existing ActorRef with ActorFor or create a new one if it does not exists. I have the following code but it doesn't seem to work as expected. .isTerminated() is always true.
...
2
votes
1answer
61 views
Does akka support higher-order actors?
I would like to pass a serialized Actor together with its state to another Actor (so it can be migrated across the network). Is there any API for that or should one be implemented from scratch?
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
47 views
How does akka know which specific message reply is associated with the correct future?
Lets say I ask (?) the same actor for two responses.
It stores the sender for later.
Later, it gets messages back to go to the senders. We get the right sender (the one hashed to the message) but how ...
0
votes
1answer
317 views
Akka actor tutorial in Scala to multithreading in Java
I tried to convert the Getting-started Akka tutorial from Scala to Java and replace actors with threads.
The tutorial can be found here ...
0
votes
1answer
92 views
Confusion over Akka Actors vs Java Objects
I'm trying to familiarize myself with Akka and Actors in general, but I think I'm missing a point. My receive loops are becoming overly large. For example:
class Node extends Actor {
def receive {
...
2
votes
2answers
97 views
Passing request context implicitly in an actor system
I would like to propagate a request context implicitly in a system of collaborating actors.
To simplify and present the situation, my system has multiple actors and the messages passed to these ...
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
3answers
125 views
Add routes/special messages to akka router
In my application I have to send subscription messages to actors, which may or may not be routers. If they are routers, the messages have to be send to all routees. Broadcast is not applicable here, ...
2
votes
1answer
131 views
Akka actors concurrency issue
Suppose I have three Actors communicate with each other: ActorControl, ActorA, ActorB.
ActorA and ActorB communicate with ActorControl. The messages they receive are mostly different but they also ...
1
vote
1answer
68 views
Actors responsible for persisting the data they will use?
I am creating a distributed system with many actors using akka/scala. Most of the "worker" actors will be performing essentially the same operation on a different subset of a large set of data. ...
0
votes
0answers
122 views
akka sending a closure to remote actor
Background
i want to send a closure to a remote actor. remote actor should run the closure on its data and send back the result. May be it is not advisable, but for curiosity's sake that's i want to ...
0
votes
2answers
150 views
Akka BindException when trying to connect to remote actor: Address already in use
I am experimenting with Akka remote actors, trying to establish a simple 2 player game over the network. This answer to an earlier question gave me a really good starting point but now I'm having a ...
1
vote
4answers
106 views
Akka - Getting info from terminated actor
I'm using Akka actors in Scala for parallel processing of queue items. I have a MasterActor with 10 reusable child ProcessorActors.
Items being processed can be of different types, e.g. red, blue ...
3
votes
0answers
115 views
Scala actors & Ambient Reference
In Phillip Haller's PhD thesis he mentioned in section (5.1 Future Work) that one of the interesting areas of research would be to extend the framework with ambient references and he cited Van ...
1
vote
1answer
73 views
akka (java) sender() method behaves strangely
Any known cases where TypedActor.getContext().sender() does not behave as expected?
I know that in fire-and-forget mode, it defaults to deadLetters, however I am running into something different:
// ...
1
vote
1answer
170 views
akka actor post a message to head of the MailBox
Can a Producer actor post a message to another actor for immediate processing? i.e. post a message to the head of the Consumer MailBox instead of the tail of the Consumer MailBox?
I know that akka ...
2
votes
1answer
166 views
Is the Akka Actors library installed with the Scala IDE for Scala 2.10?
I have recently begun exploring Scala, and have started by installing the Scala IDE in my copy of Eclipse (Indigo). I initially installed the Scala IDE for Scala 2.9, but then noticed that there was a ...
1
vote
1answer
130 views
Deadlocks using Akka actors as a mailbox only
I want to use Akka actors as a mailbox only, i.e. I want to create n threads, which each create 1 remote actor.
Each thread obtains a reference to all the remote actors of the other threads, such ...
5
votes
1answer
169 views
Can Akka actor drop messages from it's mailbox if needed?
For example, if I want to remove redundant messages from the queue - so that when actor recieves Connect message, it should inspect it's mailbox and remove other Connect messages, in order to do only ...
5
votes
1answer
92 views
Hard restart directive in Akka?
Is there an elegant way of doing a hard restart of an actor - i.e. clearing out the mailbox along with internal state?
I know it can be done by calling context.stop and reinitializing upon the ...
0
votes
2answers
124 views
Autonomous AKKA actor calling receive actively
I want to implement advanced communication patterns with akka 2.1.
However, akka seems to differ from Scala's actors in a key aspect. Where scala's actors allow me to actively call "receive" and ...
1
vote
1answer
153 views
Wait for akka actor system to become available
I am using AKKA 2.1 with Scala 2.10.
I need multiple machines to start actor systems and instantiate some number of actors. After this, each system needs to access all other systems and collect ...
1
vote
2answers
805 views
Akka 2.1 minimal remote actor example
EDIT Notice, I needed to make the reverse changes of this https://github.com/akka/akka/commit/ce014ece3568938b2036c4ccfd21b92faba69607#L13L6 to make the accepted answer work with AKKA 2.1 which is the ...
5
votes
1answer
699 views
Relation between Akka and scala.actors in 2.10
The Scala 2.10 release notes says this: "Akka Actors now part of the distribution. The original Scala actors are now deprecated."
The latest Akka library ("Akka 2.1.0 for Scala 2.10") mentions the ...
0
votes
2answers
271 views
Akka 2.1 exception handling (Scala)
I have a supervising Akka actor which uses a router to forward messages to worker actors.
I have a class which wraps the supervisor and when I call a method on that class it "asks" the supervisor to ...
1
vote
2answers
171 views
How to manage actor shutdown in a singleton ActorSystem
I have a singleton actor system in my application, and this works perfectly fine except that when the same application is loaded and unloaded inside the same JVM for testing, I have an error because I ...
2
votes
2answers
177 views
Akka 2.1 Remote: sharing actor across systems
I'm learnin about remote actors in Akka 2.1 and I tried to adapt the counter example provided by Typesafe.
I implemented a quick'n'dirty UI from the console to send ticks. And to quit with asking(and ...
1
vote
1answer
192 views
Simple explanation of Akka Actors
Is the following statement correct, otherwise how can it be improved?
When an Akka actor is sent a message, a job is submitted to the executor.
When there is a free thread, it calls the job ...
2
votes
1answer
183 views
Create akka system where all actors have references to each other [closed]
I want to create a program that starts multiple process on multiple machines in a homogenous environment on a cluster computer.
I want to use Akka 2.1 which ships with Scala 2.10.
What would be the ...
3
votes
1answer
295 views
Akka remote actors cannot communicate between Play! applications
I am testing usage of Akka remote actors between two Play! v2.1-RC4 applications.
Here is my code from App1
override def onStart( app: Application ) {
val system = ActorSystem("App1System", ...
0
votes
1answer
26 views
what is the difference between producer and regular actor?
akka doc (http://doc.akka.io/docs/akka/2.1.0/scala/camel.html) shows that camel procedure is an actor:
class Orders extends Actor with Producer with Oneway {
def endpointUri = "jms:queue:Orders"
...
0
votes
1answer
49 views
what is difference between regular Akka actor and Camel consumer actor?
A regular Akka actor is associated with a mailbox and dispather(thread pool), which can be set by configuration or programmatically. you can look up regular actor through path.
regular actor dequeue ...
1
vote
1answer
131 views
how to tell akka actor sends message to other actor's mailbox successfully? [closed]
here is the scenario in my mission critical application:
Actor A does some resource intense work, then sends a message to actor B on another physical unix box. B is accessing external network elements ...
4
votes
2answers
376 views
why is scala actors deprecated in 2.10?
I was just comparing different scala actor implementations and now I'm wondering what could have been the motivation to deprecate the existing scala actor implementation in 2.10 and replace the ...
4
votes
2answers
208 views
Pausing an actor in Akka
I have an actor in Akka that will process messages to create certain entities. Some fields on these entities are computed based on the state of other entities in the database at the moment of ...
3
votes
5answers
243 views
In which way is akka real-time?
At a couple of places there is state that akka is somehow "real-time". E.g.:
http://doc.akka.io/docs/akka/2.0/intro/what-is-akka.html
Unfortunately I was not able to find a deeper explanation in ...
3
votes
0answers
262 views
Akka Socket per actor
Using Scala with Akka IO is there a way to have an Actor strictly for listening and then when a connection is established create a new actor that will then be responsible for that Socket (Reading, ...
2
votes
1answer
94 views
How does Akka handle message versions?
How does Akka handle the serialization of different versions of messages of the same type, but different versions? For example, can an Actor X that expects version 1 of message A receive and process ...
2
votes
3answers
133 views
Testing Outgoing Akka Actor Messages
Let's say I have an actor like this (Using Akka 2.1 with Scala 2.10):
class ClientActor extends Actor with ActorLogging {
val configurationManager = context.actorOf(Props[ConfigurationManager], ...
1
vote
3answers
252 views
Manually creating actor hierarchy in akka
My application needs to be able to create a tree structure of actors. The standard way to do this I imagine would be to put the instantiation code inside the actors so they can instantiate their ...
2
votes
2answers
86 views
Getting instance of class used to create an actor in Akka in test
How do I get instance of class I passed to Props when creating an actor with ActorSystem.actorOf? I need that for unit tests to get reference to some properties of the actor, so the actor is local in ...
2
votes
1answer
77 views
How to avoid dropping message due to lock timeout in akka actor?
Bellow is a row from following build log: https://travis-ci.org/plokhotnyuk/actors/jobs/4088637/#L630
[WARN] [01/11/2013 12:26:04.908] [Thread-47] [akka://system/user/$t] dropping message of ...
1
vote
2answers
163 views
Extending a partially implemented partial function in scala
I'm using the Akka actors library here. The actors library defines a partial function "receive" which an actor that extends "actor" must implement to deal with various messages. I am creating a trait ...
5
votes
1answer
399 views
Trying to make use of Akka future and play promises in my Play2 application
When reading up on the play2 documentation I found this:
Because of the way Play 2.0 works, action code must be as fast as
possible (i.e. non blocking). So what should we return as result if we
...
1
vote
2answers
177 views
akka split task into smaller and fold results
The question is about Akka actors library. A want to split one big task into smaller tasks and then fold the result of them into one 'big' result. This will give me faster computation profit. Smaller ...


