0
votes
1answer
39 views

ActorSystem expenses in play application

I have a question , is it expansive for productivity, do ActorSystem system = ActorSystem.create("System"); many times, or I must do this once and use one reference ?
1
vote
2answers
44 views

Why spring integration doc for akka exists only for 1.3.1 but not for next versions

There is a link about the way to integrate AKKA and Spring. Or better say: "how to use Akka actors in spring environment". http://doc.akka.io/docs/akka-modules/1.3.1/modules/spring.html Actually ...
3
votes
1answer
148 views

Akka design for Authentication (Finite State Machine)

I am quite new to Akka and I'd love to have some support for a design decision for my application. I have a rather typical Client/Server application. At the start the client should be able to ...
1
vote
0answers
26 views

Cancelling Long Running Web-services in Play

I'm using Play2 (with Java) to write a webservice which runs a fairly computationally expensive operation. As per the documentation, I've broken up the process into a chain of promises resembling: ...
0
votes
2answers
78 views

play framework scheduler with Akka at server launch

Question 1: I have created a sample java application using play 2.1.1 with a scheduler to be kicked off when the application is started. I did a play compile and then play start, but i'm getting the ...
0
votes
1answer
89 views

How to test Akka Actor functionality by mocking one or more methods in it

I'm interested to know about how to test Akka Actor functionality, by mocking some methods (substitute real object's/actor's method implementation by mocked one) in Actor. I use ...
0
votes
0answers
36 views

Debugging akka actors

Is there any reason why IDE (IntelliJ IDEA) does not drop me to Actor's onReceive() method when I do remote-debugging? I call actor like this: try { WorkDoneMessage result = (WorkDoneMessage) ...
0
votes
1answer
52 views

Adding akka dependencies to osgi container

I use osgi container (virgo) [i'm not very good in that]. I added a dependency to my pom.xml <dependency> <groupId>com.typesafe.akka</groupId> ...
0
votes
2answers
52 views

Akka akka-testkit PowerMockito.spy does not work for underlying actor [closed]

I created new question And this one I'm going to delete. Because I believe I was not clear about what I wanted while asking. And because there are too many comments that stop people help me or stop ...
0
votes
2answers
45 views

Akka-testkit “future.isCompleted” check

In this example: http://doc.akka.io/docs/akka/snapshot/java/testing.html final Props props = Props.create(MyActor.class); final TestActorRef<MyActor> ref = TestActorRef.create(system, props, ...
0
votes
1answer
56 views

Handling Future onSuccess as response from an Akka actor

This is the code that works. It send a message to an Actor (Greeter) and wait for the answer back. But it blocks the current thread. public class Future1Blocking { public static void ...
0
votes
1answer
256 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 ...
2
votes
3answers
660 views

Akka or Reactor

I am in the process of starting a new project (java-based). I need to build it as a modular, distributed and resilient architecture. Therefore I would like to have the business processes to ...
2
votes
1answer
110 views

How to run akka actors in IntelliJ IDEA

From Akka' site docs: This main method will then create the infrastructure needed for running the actors, start the given main actor and arrange for the whole application to shut down once the ...
0
votes
2answers
87 views

Akka Remoting: Connection refused: no further information in “tell” method

I have the same problem you had sometime ago: "Getting errors with remote actor deployment in Akka 2.0 RC2" How did yousolve it? I'm using Akka 2.1.2, but I think my problem is the concept. I create ...
0
votes
2answers
79 views

Akka actors for java, maven dependency issue

In this official doc they use 2.2-SNAPSHOT version. http://doc.akka.io/docs/akka/snapshot/intro/getting-started.html If try to resolve it - it does not work. If try to add typesafe repo: ...
0
votes
1answer
143 views

How to change future timeout with play framework 2.1.0

i'm calling a webservice using play framework 2.1 which takes longer than 10s. because of that i always receive the following error: play.api.Application$$anon$1: Execution ...
0
votes
1answer
132 views

Akka. How to scale-up? [closed]

What things would need to be done to scale-up (scale horizontally) an application written using Akka? Roughly speaking, for adding a new node in cluster, do I only need to install a JRE on it and run ...
0
votes
1answer
113 views

Akka tutorial code does not run

The tutorial code from http://doc.akka.io/docs/akka/2.0.2/intro/getting-started-first-java.html Will not run. I have imported the required libraries but get the error: Exception in thread "main" ...
1
vote
1answer
80 views

Mixing with Akka Actor trait clashes with base class

I am using the Akka framework together with jMonkeyEngine (jME3) for my little scala/java game. By adapting some Akka dispatcher magic I managed to run a dedicated actor in the same thread as jME3's ...
1
vote
1answer
104 views

What is the right way to run background task in Play 2.1 (Java)?

In my app I need to process uploaded documents and put results of processing in DB. Documents are stored in file system and metadata is stored in DB. For each document it is needed to open and process ...
0
votes
1answer
36 views

Returning a Future from an akka Mapper

My problem is best described by the following (simplified) example: Given an asynchronous HTTP client which returns Future< JSON > on calls to its get-Method. Given a link to a resource which ...
0
votes
3answers
131 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
99 views

Akka Futures guidance

I'm trying to use Akka Futures to read several files and pass each line to a callable. My callables are parsers for a specific file. So people.txt might populate objects of type Person. Each line can ...
2
votes
1answer
152 views

What are the default Akka dispatcher configuration values?

In the Akka documentation it states that if a dispatcher is not configured a default dispatcher will be used. What are the properties of the default dispatcher i.e parallelism-min, parallelism-factor, ...
-1
votes
1answer
104 views

Akka Scheduler(Java) - millions of ticks [closed]

I was wondering what is the maximum number of scheduled ticks can we perform with scheduler if anyone have an idea, let's say I make a system with millions of future tasks all occurring in few ...
3
votes
1answer
91 views

Play/Akka integration with Java OutputStreams

I'm writing a Play! application which exposes a REST API allowing users to generate PDF reports. I'm constrained by the requirements to use a old Java API to do the actual report generation. That ...
0
votes
1answer
534 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 ...
2
votes
1answer
141 views

Akka BalancingDispatcher Config

I have created a file application.conf in src/main/resources that looks like this: balancing-dispatcher { type = BalancingDispatcher executor = "thread-pool-executor" } There is nothing else in ...
10
votes
1answer
191 views

Could AKKA remoted actors be a used in a p2p swarm context?

Most of the use cases I've seen for Akka actors are highly performing multicore servers or local clusters. I'm curious about it's applicability to more remote high latency and highly failing swarm ...
1
vote
1answer
69 views

How does Akka implement the JMM-like happens-before relationship?

In the official Akka doc, they disclaim: To prevent visibility and reordering problems on actors, Akka guarantees the following two "happens before" rules: The actor send rule: the send of ...
0
votes
0answers
111 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 ...
1
vote
1answer
87 views

Akka (java), non blocking broadcast to all children

Let's say I have a Region Actor, and each region has a certain number of people inside it. How do you broadcast a message to everyone, knowing that the list of people can change over time, broadcast ...
0
votes
1answer
191 views

new Akka I/O (Java) TCP data processing using ByteIterator need a java example if possible

I'm trying to implement a Tcp server using the new Akka I/O, unfortunately the documentation is not yet finished, and i'm having some issues implementing it in java :(. I managed to create a client ...
11
votes
2answers
471 views

How java thread are heavy weight than scala / akka actors

I was just comparing the performance of scala actors vs java threads. I was amazed to see the difference, I observed that with my system I was able to spawn maximum ~2000 threads (live at a time) ...
0
votes
1answer
150 views

Akka - restart of supervised actors

I am using Akka (Java) in my project for providing a retry scheme. So I have a supervisor actor, which on receiving a message delegates it to a supervised actor. I have a one-for-one strategy on the ...
0
votes
1answer
200 views

Akka Remote connection using Java

I am new to Akka and am not familiar with Scala at all. I am trying to use the Akka+Java for running a project on multiple machines. I was able to successfully run Akka Java examples locally but when ...
1
vote
1answer
85 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
413 views

Play! framework 2.1 - scheduling async tasks (Java)

I've just updated Play! framework to version 2.1 and scala to version 2.10... Now my Play! app is broken. It seems that the Akka API has changed. I can't find the Akka's version used now but I think ...
2
votes
1answer
199 views

What is the difference between actors (Akka) and agents (JADE) in distributed systems?

Is there any substantial difference in the concepts of Akka actors and Jade agents ? From what I know both implement system distribution by creating independent entities (with chunks of system ...
1
vote
1answer
298 views

JUnit testing Akka actors in play framework 2.0.4 - JAVA ClassNotFoundException on scala.concurrent.duration.Duration

I am trying to implement a JUnit test to test an actor. I have this ActorTest : import org.junit.Test; import play.libs.Akka; import playtests.PlayFrameworkTest; import akka.actor.Actor; import ...
4
votes
2answers
96 views

Java - block in a constructor method call

// allows passing in arguments to the MyActor constructor ActorRef myActor = system.actorOf(new Props(new UntypedActorFactory() { // public UntypedActor ...
1
vote
1answer
119 views

is creating too many actors in akka bad?

I am having a graph datastructure and i have vertices in graph.No of vertices are around 20K .Now I want to create a seperate actor for each node.this is because i want to perform some aggregations ...
1
vote
1answer
167 views

Akka batch processing/one-item processing

I am currently implementing a system that calls an API method for a message received in Akka. This is pretty straightforward and doesn't involve anything with a deep knowledge of Akka. The actual API ...
0
votes
1answer
130 views

AKKA: Actor routers message persistence

I'm writing a webspider and allocating it on Heroku and after the main actor (the one that allocates the router) reaches 512Mb it crashes. Basically every URL parsed is sent to the FetchRouter. The ...
2
votes
1answer
105 views

Can an Akka actor participate in an XA transaction?

Can an Akka actor participate in an XA transaction? For example, can an actor send a message to a remote actor within the same XA transaction as a database operation (assuming the JDBC driver is an ...
0
votes
3answers
190 views

Akka + Camel + FTP2 + localWorkingDirectory doesn't work reliably

I'm having an issue with the FTP2 component of Camel, with consumer actors living inside an Akka system. The basic idea is to monitor an FTP directory for files, then spawn a child actor to deal with ...
2
votes
2answers
393 views

How to handle Java futures with Akka actors

I have a layered architecture in a Java web application. The UI layer is just Java, services are typed Akka actors and external service calls (WS, DB etc.) are wrapped in Hystrix commands. THe UI ...
1
vote
1answer
446 views

How to schedule task daily + onStart() in Play 2.0.4?

I need to execute a piece of code 1 time everyday in playframework2.0.4 when I try to do with the class extends GlobalSettings it works. But it works for every instance requesting. I want it works ...
-1
votes
1answer
124 views

use become() from Java

I'm using Akka from Java. According to documentation, context.become() takes Procedure<Object> as a parameter. In fact, it expects PartialFunction<Object, BoxedUnit> which appears to be ...

1 2 3 4