Akka is a framework that provides Actor model concurrency to Java and an alternative Actor model implementation to Scala.
4
votes
0answers
339 views
akka amqp heartbeat option and fault tolerance
So I'm not seeing a way to easily tune the connection factory for the
AMQP module. It's embedded deep enough in a package private class
that short of explicit structural type casting, it doesn't ...
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 ...
3
votes
0answers
264 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, ...
3
votes
0answers
468 views
Akka zeromq actor seems to be slow for REP/REQ
I'm building a REQ/REP service with zeromq and the REP part is in Scala and using Akka actors.
Here is the actor
class ReplyActor extends Actor {
println("Listening..")
def receive = {
...
3
votes
0answers
268 views
Play 2.0 Attempting to obtain a connection from a pool that has already been shutdown
I have AKKA actors running in Play 2 application. There are a list of POJO objects retrieved from database and pass along in a message to actors. When an actor starts processing these objects, it will ...
3
votes
0answers
643 views
Getting errors with remote actor deployment in Akka 2.0 RC2
I'm trying to create an actor and deploy it to port 1997 of my machine as follows:
In application.conf:
akka {
version = "2.0-RC2"
event-handlers = ["akka.event.Logging$DefaultLogger"]
...
2
votes
0answers
54 views
Play 2 thread pools : default pool VS Akka Pool with Java
According to the documentation, the easier way to use an actor is :
Promise promiseOfInt = Akka.future( new Callable()
{
public Integer call() {
return ... ;
} } );
...
2
votes
0answers
125 views
Play 2.0 multiple Akka futures to modify same database record
I am using Play 2.0.4 Java. There are two apis, one is to remove member detail from a channel object and the other is to add. Both APIs are using Akka.future(). How can I avoid the ebean exception ...
2
votes
0answers
125 views
Scaling an Actor Application on Amazon Beanstalk
Beanstalk does the typical thing an autoscaling app would do: waits for demand (in the form of web requests) to spike, then it spawns new slaves for the cluster based on the registered AMI.
My ...
1
vote
0answers
15 views
Dynamically add/remove routees to a router actor
Would you know a nice way in Akka/Scala to add/remove routees to a Broadcaster router?
I have been looking at the Resizer - but does not meet my needs (I cannot see how to explicitly ask the resizer ...
1
vote
0answers
159 views
Play Framework with Akka and Websockets
I have a simple websocket connection setup through Play 2.1 that connects to a javascript frontend.
I have a random number generating loop on the server that generates a random number and sends out ...
1
vote
0answers
185 views
Play 2.1 two consecutive promises 2nd one failed to return
I put two promises in the following order and map promises to string result immediately after getting promises. The 2nd promise result will fail to return. The error happens only in 2nd promise ...
1
vote
0answers
153 views
Creating an Akka fat Jar
I need to create a Nutch plugin that communicate with some external applications using Akka. In order to do this, I need to package the plugin as a fat Jar - I am using sbt-assembly version 0.8.3.
...
1
vote
0answers
41 views
Advice on generating a sample graph representation (RDF or V-E-V tuples)
I want to generate a sample experimental graph data. I would like to be able to specify
number of edges, nodes and graph topology (DAG, polygraph, ...)
There may be a need to generate millions, likely ...
1
vote
0answers
84 views
Scala Akka AMQP, multiple routing keys
Right now you can create a queue consumer with
AMQP.ConsumerParameters(...routingKey="key"...)
Is there a way to specify multiple keys.
I know in the rabbitmq web interface I can specify multiple ...
1
vote
0answers
317 views
how to configure akka in play framework 2.1 rc1 to production?
I am using play framework 2.1 RC1 with web sockets.
Each request to the web socket i open up to 4 akka job on Akka.system ,
and i have load tester that open 1000 connections and send request that ...
1
vote
0answers
887 views
play framework 2 On application startup, Akka Scheduler doesn't run function repeatedly - it runs just once
At application startup, I want to schedule a task to run every 2 minutes (for example, it may be every 1 minute).
I've tried in 2 ways:
1. using Akka schedule method with Runnable
abstract def ...
1
vote
0answers
223 views
Brew installed Scala and Play with Akka throwing an exception
I'm getting a really awful error with my application.
I suspect it may be because the default play version, the default akka version and the default scala version are in conflict. There seem to be ...
1
vote
0answers
54 views
Can I access akka remote actors from a GlassFish v3.1.2 server based application?
Akka remoting uses netty for it's client server framework. Does anyone know if I can get one end of this (the client) running in GlassFish v3.1.2?
Note: I'm interested in Akka 2.0.3 at the moment; ...
1
vote
0answers
419 views
Socket connection and ActorSystem
I have an application, that uses akka and now I want to connect to it via a socket connection. Therefor I use a machanism similar to the one from the scala page.
But if I try to tell, while I have an ...
1
vote
0answers
316 views
Play 2.0 Akka system shutdown when multiple testcases present
I have two controllers that both use AKKA actors in Play 2.0. Accordingly, there are two test cases which test against these two APIs. However, when execute 'play test', only one of test cases will ...
1
vote
0answers
141 views
Play 2.0 Pipe promise to another actor
In Akka, you can pipe a future to an actor. How can be it be done under Play 2.0's promise?
...
1
vote
0answers
90 views
In Akka 2.0, can I restart an actor on a new remote node from a supervisor?
Assuming a supervisor that is supervising a remote actor. If the remote actor dies because its entire Akka node has been terminated, is it possible to resurrect the actor on a new Akka node, keeping ...
1
vote
0answers
99 views
In Akka 2.0, is it possible to have a clustered supervisor?
I know that proper clustering using Akka is the focus of Akka 2.1, however need to build something with what's available now.
I have a multi node Akka setup and want to gracefully handle remote ...
1
vote
0answers
318 views
Exception with using akka promise/future with playframework2.0
I am using play framework 2.0 for a simple application that returns a list of employees in json string from a MySQL Database. My controller is as follows
public class Application extends Controller ...
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 ...
1
vote
0answers
214 views
Akka disable logging to sysout
Our application uses akka actors (v. 1.1.2) that throw exception from time to time. We would like to have those exceptions logged and are using event-handlers = ["akka.event.slf4j.Slf4jEventHandler"] ...
1
vote
0answers
235 views
Akka Durable Mailboxes
What is the implication w.r.t. performance in using Akka durable mailboxes versus the default mailboxes? Do any benchmarks exist comparing the various backends in terms of time to reconstitute?
1
vote
0answers
146 views
How to unpublish an Akka Camel consumer?
My Camel consumer actor won't get unpublished after I sent a message to it. This prevents the application from shutting down. It works if I just start and stop the actor without sending any messages. ...
1
vote
0answers
156 views
Akka error post.request.getReader
I use akka-mist and protobuf. Language Scala.
Protobuf error
Test Sender:
val (post, writer) = RestPostMock(ProtoBufPack.toByteString)
actor ? post
RestPostMock:
object RestPostMock extends ...
0
votes
0answers
29 views
Example of integration Akka with existing java poject
If I already have existing java web application that uses spring and servlet container. What is the proper way to integrate Akka in it?
Like I'g going to have Actor1 and Actor2 that communicate with ...
0
votes
0answers
76 views
akka actor model vs java usage in following scenario
I want to know the applicability of the Akka Actor model.
I know it is useful in the case a huge number of Actor instances are created and destroyed. e.g. a call server, where every incoming call ...
0
votes
0answers
51 views
How to use akka dataflow in maven
I encountered a problem when using data flow . The maven can not compile if I enable the continuation in maven scala plugin config.
After I enable the continuation in maven, the compile starts to ...
0
votes
0answers
97 views
Simplest way to run spray.io spray-can on Heroku
I'm new in Scala and SBT. I want to run simple hello-world http server on Heroku with Spray and Akka. Spray-can's documentation at http://spray.io/documentation/spray-can/examples/ tells that simple ...
0
votes
0answers
86 views
How to get rid of akka AskTimeout Exception in play application while Performance test
I am running a web application on play 2.0.4 and now its in the performance testing phase.
Requirement is 1000 users/hr logged in the web app.
Currently i am facing issue with just 100 threads ...
0
votes
0answers
77 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
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
0answers
54 views
what is the default spring xml file and its location when i create akka camel context?
i want to configure a spring xml, camel-context.xml (to use spring transaction, activeMQ component,etc) for akka camel context. however, akka camel context does not load my spring xml even if i put ...
0
votes
0answers
83 views
ScalatraServlet with AkkaSupport with GZipSupport
I'm trying to use Scalatra with AkkaSupport and the newly introduced (2.2.0 RC2) GZipSupport. It fails and I'm trying to figure out if I'm doing something wrong, before I file a bug report. The code ...
0
votes
0answers
450 views
Akka actors and futures: Understanding by example
I'm trying to learn Akka actors and futures but after reading the docs at http://akka.io
and doing http://doc.akka.io/docs/akka/2.0.2/intro/getting-started-first-java.html
I'm still having some issues ...
0
votes
0answers
69 views
How to complete Play Action from another actor
Long ago I prototyped a server app using Akka 1.3 and Spray, and now I am resurrecting that and trying to port it to Play 2 and Akka 2. The Spray code which handles a REST request basically just ...
0
votes
0answers
36 views
ZK ajax Framework with Akka
I want to know whether is it possible to integrate Akka library with ZK framework.
Like for example the Play Framework comes with an Akka integration
that makes it possible to implement akka ...
0
votes
0answers
208 views
Akka with play framework and remote lookup
I am using play framework connected to a remote akka system for my project. the remote akka system is a java maven project with eclipse IDE. There are two data wrapper classes that are provided as ...
0
votes
0answers
77 views
logging handle for turning off and on
I have a package pack6 and i have many actors and standalone classes inside that package(pack6).
I am extending logging instance in the package object
package logging.changes
package object ...
0
votes
0answers
140 views
Problems with referencing a remote actor
I have a play framework that uses the play actor integration to reference and communicate with a remote akka system. Looks like I am not getting the remote referencing right. First the remote akka ...
0
votes
0answers
146 views
Akka to process multiple video streams
I'm looking at options for processing multiple real-time video steams from mobile devices in parallel using OpenCV. I was wondering if Akka and ZeroMQ are good fit for this use case.
Also, if anyone ...
0
votes
0answers
89 views
akka remoting in router : target - nodes
Akka Routers with Remote Destinations
akka {
actor {
deployment {
/serviceA/aggregation {
router = "round-robin"
...
0
votes
0answers
299 views
Akka configuration for ActorSystem, Router, remote & supervisorActor
I want to use akka for below mentioned requirement -
User request will come to my server, when user request received, based on user profile, no. of vendor API will be called. Let say for this user, 6 ...
0
votes
0answers
119 views
config promise.akka.actor.typed.timeout=10s is not working
How to set 'promise.akka.actor.typed.timeout' to make it work? After I set this value 'promise.akka.actor.typed.timeout=10s', the promise still times out in 5s.
2012-08-30T04:00:37+00:00 app[web.1]: ...
0
votes
0answers
255 views
Akka messaging within spring transactions
We would like to use Akka messaging and database operations within a single Spring transaction. Will the actors take part in the transaction (without needing an XA coordinator)? If so, do they do so ...