Tagged Questions
1
vote
1answer
55 views
How to use futures with Akka for asynchronous results
I am trying to write to multiple files concurrently using the Akka framework, First I created a class called MyWriter that writes to a file, then using futures I call the object twice hopping that 2 ...
0
votes
1answer
37 views
creating Akka actor hierarchies lazily
I want to create actors that can serve resources from the file system. Ideally [1] I'd like to have one actor for each directory and each file. But I don't want to create the whole actor tree ...
0
votes
2answers
48 views
AKKA receive reference to message
In Java the declaration of onReceive includes a reference to the message as an object.
public void onReceive( Object message )
{
if( message instanceof MyClass )
{
In Scala however no such ...
2
votes
1answer
59 views
akka performance on linux with compilation on windows
I have Scala IDE setup in my windows machine. when i run my test program on the same machine i get some performance figures.
In order to run the same program on Linux machine, which is an 8 core 32 ...
0
votes
1answer
115 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 ...
2
votes
1answer
127 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 ?
0
votes
1answer
59 views
What is the correct way to configure actors in Play 2.x?
I noticed a slight difference between the documentation for 2.1 and 2.0:
2.0
akka.default-dispatcher.core-pool-size-max = 64
akka.debug.receive = on
2.1
...
1
vote
1answer
58 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
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
71 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 ...
0
votes
0answers
74 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 ...
1
vote
1answer
51 views
Benchmarking Akka with the Matrix Vector example
I have tried to benchmark the Akka Framework with a matrix vector multiplication. For this very data intensive problem I measured absolute runtimes for different number of workers on a 16 core ...
0
votes
2answers
61 views
Akka: Send a future message to an Actor
I have the following code inside an Actor
def receive = {
case All() => {
val collection: BSONCollection = db("ping")
val future:Future[List[Ping]] = ...
3
votes
3answers
134 views
Future[Option[Future[Option[Boolean]] Simplifying Futures and Options?
I've been trying to simplify the way I do futures in Scala. I got at one point a Future[Option[Future[Option[Boolean]] but I've simplified it further below. Is there a better way to simplify this?
...
-1
votes
2answers
164 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
88 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
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 ...
4
votes
3answers
156 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
57 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
41 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
0answers
50 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
47 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
82 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
96 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
105 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
122 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
116 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 = {
...
3
votes
1answer
110 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
143 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 ...
3
votes
1answer
72 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
322 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
78 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
68 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
167 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
106 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
104 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) {
...
2
votes
1answer
95 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
70 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
179 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{ ...
10
votes
1answer
174 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
70 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
57 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
185 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
}
...
2
votes
2answers
98 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
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
210 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 ...
1
vote
2answers
163 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 ...
1
vote
1answer
52 views
How to avoid `missing type` error while chaining partial functions
I'm currently studying Scala & Akka and developing test application for it. In this application almost all actors log unhandled messages for ease of debug:
import akka.actor._
class TestActor ...