Akka is a framework that provides Actor model concurrency to Java and an alternative Actor model implementation to Scala.
0
votes
1answer
33 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
83 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.
...
-1
votes
2answers
178 views
Akka Event Bus Tutorial [closed]
Are there any good tutorials/explanations on how to use the the event bus in akka?
I've read through the Akka doc but I find it difficult to understand how to use the event bus
4
votes
3answers
98 views
Actor selection
Why when I select an absolute path with ActorContext it doesn't works (the actor isn't correctly selected and doesn't receive the HelloResponse message) ?
//From Actor2:
//This doesn't work (Message ...
2
votes
1answer
63 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
106 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
93 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 ...
2
votes
1answer
65 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 ...
4
votes
3answers
160 views
How to use Typesafe's Config in Scala with encrypted passwords
I would like to use Typesafe's Config in my project but I don't want any passwords in clear text in any file on the file system of any integration or production server. Also, I do not want to use ...
0
votes
2answers
60 views
Akka migration from 2.0 to 2.1
I have started working with Actors, and was following a simple example as mention in the Getting Started Guide.
Specs:
Scala Version: 2.9.2
Akka Version: 2.0
I ran the example and it ran well. Then ...
3
votes
1answer
43 views
How to send objects to remote akka actors in an asymmetric system
In Programming Erlang by Joe Armstrong, section 16.1, the author describes a method for hot code swapping with Erlang's OTP framework. I'd like to be able to do this with Akka.
Given an asymmetric ...
0
votes
1answer
48 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
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
1answer
53 views
Akka timeouts starting event handlers
When I run my app using akka, it fails with the following exception:
Event Handler specified in config can't be loaded [com.despegar.hasp.impl.DummyLogEventHandler] due to ...
2
votes
1answer
87 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, ...
0
votes
0answers
111 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 ...
1
vote
1answer
110 views
Compilation error when testing non blocking Redis client (Fyrie) on Play Framework 2.1
when I try to compile the following code
import play.api._
import play.api.mvc._
import scala.collection.mutable.StringBuilder
import net.fyrie.redis.RedisClient
import ...
1
vote
1answer
139 views
Setting up Akka project in Eclispe
I am trying to create a new Akka project in Eclipse. I followed the steps here
But I am receiving errors about Akka dependencies not being found.
Would appreciate your help. This is the output.
...
1
vote
1answer
132 views
Play 2.1.1 not loading custom Akka dispatcher
I'm using Play 2.1.1 and in application.conf I add the following custom dispatcher:
# Dispatcher for round-robin actors
play {
akka {
actor {
rr-dispatcher = {
...
-1
votes
1answer
83 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
119 views
How to “ask” an ActorSelection
How do I "ask" an actor that should be provided by its path?
ask(context.actorSelection("../foo"), GetInfoMessage)
…results in an ActorSelection but only ActorRefs can be "asked".
Alternatively, ...
2
votes
1answer
148 views
Akka Futures Exceptions
What happens when an actor of a future throws an exception?
According to the Akka documentation at http://doc.akka.io/docs/akka/snapshot/scala/futures.html:
It doesn't matter if an Actor or the ...
1
vote
1answer
102 views
Does Akka Remoting support one-way only connections?
I have an Akka system running on an Android device, which talks to an Akka system on a server via Akka Remoting.
The Android device may get any IP address, the IP may change while the application ...
3
votes
1answer
76 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 ...
1
vote
0answers
175 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
1answer
107 views
Make Akka aware of Play's logback configuration
How do I make Akka aware of Play's logback config (application-logger.xml)?
In my case it is completely ignored:
The log is ONLY printed to stdout. I expect it to be logged to the File-Appender ...
0
votes
1answer
362 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 ...
1
vote
1answer
80 views
Failed A akka dataflow sample
I am tring a simple akka data-flow sample, just like following:
import akka.dataflow._ //to get the flow method and implicit conversions
object FlowTestApp extends App {
import ...
1
vote
1answer
72 views
Play! dist throws Exception
I m trying to create a standalone version of my Play! application , when I do play run it works fine , but after doing play dist
I get following error when I run the start command
I m using play2.1 ...
3
votes
3answers
170 views
Cancellation with Future and Promise in Scala
This is a followup to my previous question.
Suppose I have a task, which executes an interruptible blocking call. I would like to run it as a Future and cancel it with failure method of Promise.
I ...
1
vote
1answer
112 views
How do I throttle messages in Akka (2.1.2)?
Could you guys please show example of throttling messages in Akka ?
Here is my code
object Program {
def main(args: Array[String]) {
val system = ActorSystem()
val actor: ActorRef = ...
0
votes
1answer
113 views
Resoving scheduled Akka actors in Play 2.1.1 just gives me RepointableActorRef
I have a recurring Akka job that reads quotes from an external url that I start in my Global.scala. Like this:
object Global extends GlobalSettings {
override def onStart(app: Application) {
...
0
votes
1answer
76 views
Akka and cake pattern
I'm confused how to ensure that my Actors have the appropriate dependencies using the cake pattern. I'm still getting to grips with this, and I can't find any examples anywhere. I'm basically just ...
2
votes
1answer
99 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 ...
1
vote
1answer
76 views
Akka, Scalatra and Web state questions
This is a two part question, firstly more of a design question than how to implement it, and secondly some implementation concerns with Akka.
I'm using Scalatra to build a REST service end point ...
1
vote
2answers
187 views
How to repeat request in Play! framework 2.1?
Is there any simple way to repeat request until getting success result in Play2.1 (scala)? And how to limit the number of attempts?
I want to do something like this:
WS.url("some.url").get().map{ ...
0
votes
2answers
34 views
Akka logging resets during shutdown
Under Akka 2.10 my logging configuration is being reset during shutdown... resulting in potentially-important messages being written to standard output rather than the logging mechanism.
For ...
1
vote
1answer
37 views
Handling exception in blocking library code in Akka
I have a pool of DB Worker actors behind a router that does blocking DB operations, via a
Dao. Inserting ("putting") foo objects into the Dao throws DuplicateKeyException if you
try to insert the same ...
10
votes
1answer
178 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 ...
0
votes
1answer
101 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 {
...
1
vote
1answer
71 views
Akka2.1/Scala - Nodes created in actor do not show up in context.children?
I have an abstract class that is an actor and it has a method like this
def getNewConnection(id: String): ActorRef
A class that subclasses it defines the method.
override def getNewConnection(id: ...
0
votes
1answer
59 views
Compiler error when specifying main class in Akka microkernel?
Here's my project definition in my Build.scala. When I go to run sbt run or sbt dist I get the same compiler error of not found: value distMainClass. It's quite annoying since I checked the ...
2
votes
2answers
195 views
Get command line arguments when running an Akka Microkernel?
I have the Akka microkernel below:
class ServiceKernel extends Bootable {
val system = ActorSystem("service-kernel")
def startup = {
system.actorOf(Props(new Boot(false))) ! Start
}
...
0
votes
0answers
92 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 ...
2
votes
2answers
104 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 ...
1
vote
1answer
64 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
2answers
101 views
Solve n-queens puzzle with akka
I am relatively new to programming with scala and akka and I tried to write a solution for the n-queens problem using akka actors.
Unfortunately my idea didn't work well: It took way longer to compute ...
0
votes
1answer
230 views
Akka scalability and performance benchmark testcases
I have been looking for a testcase which can showcase the "SCALABILITY" of Scala/Akka.
i referred to the akka-actor-test/akka.performance.trading test case, but it seems like a Unit Test case rather ...
0
votes
1answer
36 views
akka github source contains unprintable characters
i downloaded akka source from github. i find that many files have these junk characters in them.
=> converts to ⇒
<- converts to �
trait OnlyCauseStackTrace { self: Throwable ⇒
override ...
1
vote
2answers
171 views
How to use Akka project under Android
I'm a little bit desperate at the moment. I'm trying to use an Akka project (written in scala) under Android (in Eclipse), but whatever I try, I can't make it work.
For simplicity I created two ...