Akka is a framework that provides Actor model concurrency to Java and an alternative Actor model implementation to Scala.
161
votes
10answers
32k views
Good use case for Akka
I have heard lots of raving about Akka framework (Java/Scala service platform), but so far have not seen many actual examples of use cases it would be good for. So I would be interested in hearing ...
37
votes
3answers
3k views
What's the difference between the different Actors implementation in Scala?
With the release of Scala 2.9.0, it was also announced the Typesafe Stack, which combines the Scala language with the Akka framework. Now, though Scala has actors in its standard library, Akka uses ...
39
votes
5answers
6k views
Different Scala Actor Implementations Overview
I'm trying to find the 'right' actor implementation. I realized there is a bunch of them and it's a bit confusing to pick one. Personally I'm especially interested in remote actors, but I guess a ...
15
votes
2answers
2k views
Why are messages to akka actors untyped?
In akka, is there a way to restrict messages to actors to be of specific static type other than using the "Typed Actor" APIs that use an RPC style programming model?
Can I use the message passing ...
9
votes
7answers
832 views
Threads configuration based on no. of CPU-cores
Scenario : I have a sample application and I have 3 different system configuration -
- 2 core processor, 2 GB RAM, 60 GB HHD,
- 4 core processor, 4 GB RAM, 80 GB HHD,
- 8 core processor, 8 GB RAM, ...
7
votes
2answers
2k views
play framework 2.1 - scheduling async tasks
In play's 2.0.x doc you can see how to schedule asynchronous tasks:
http://www.playframework.org/documentation/2.0.4/ScalaAkka
Akka.system.scheduler.schedule(0 seconds, 30 minutes, testActor, ...
3
votes
1answer
1k views
Play Framework 2.0 schedules an Akka Actor at server launch
I have an Akka actor that validates random data and makes some changes to it based on that data's show time and updates it. Currently what I'm doing is using this code inside a controller:
static ...
1
vote
2answers
593 views
Akka - StackOverflowError during object serialization
I'm with a problem that extends for more than 2 days. When I'm exchanging messages between actors, is accusing the JVM stack overflow.
My message is an object with many links (10000+ child objects ...
2
votes
1answer
404 views
akka actor testing using play
I want to test my akka actor.
Is it possible to test every case of receive function?
def receive = {
case msg: String =>
println("SUCCESS" + msg)
case user: VerifyIfUserExistActor =>
...
1
vote
2answers
826 views
Akka control threadpool threads
Potentially a very silly question--
Is it possible to customize Akka/Scala actors such that you control the threads that are used by the actors? e.g. can you initialize your own set of threads to be ...
0
votes
0answers
67 views
Akka Actor Testing using Play framework in scala [duplicate]
Possible Duplicate:
akka actor testing using play
I am newbie in using Scala Akka and Play framework,
I just want to ask some help on how to test my code.
I am using ...
30
votes
5answers
6k views
How does akka compare to Erlang? [closed]
I've been looking at akka recently and it's pretty impressive. It looks like it has most of the killer features of erlang - location transparency, supervision hierarchies, and more. Are there any ...
8
votes
2answers
3k views
Akka Actors: Need an example to understand some basics
I'm tinkering with Akka and need some advice how to implement something specific i have in mind. I want to have an actor which i can send a DownloadFile(URI, File) message and downloads it. Since this ...
7
votes
1answer
362 views
Akka and Java libraries that use ThreadLocals
What has kept me from using Akka regularly (in Java) is a concern I have with libraries that use ThreadLocals.
That is I think some Akka Dispatchers may cause ThreadLocal variables to be left ...
8
votes
5answers
5k views
How to implement a REST Web Service using Akka?
I intend to implement a pure Akka powered REST based Web API. I am not sure about using spray. I would consider using Scalatra if it is any good. Basically I am interested in using the concurrency ...
8
votes
4answers
1k views
Which ThreadPool in Java should I use?
There are a huge amount of tasks.
Each task is belong to a single group. The requirement is each group of tasks should executed serially just like executed in a single thread and the throughput should ...
6
votes
2answers
507 views
Porting python-twisted based code to scala: framework advice needed
I am trying to port a significant amount of code written in python with twisted to scala, and I'm looking for opinions on what framework combination to choose.
The thing is essentially an RPC (custom ...
10
votes
1answer
399 views
Is Akka suitable for systems with transient network coverage?
Is Akka suitable to use in a system where nodes are expected to be moving in and out of wifi coverage? What aspects have to be considered (e.g. what transport protocols are preferred)?
6
votes
1answer
3k views
How to add sbteclipse plugin to SBT 0.10.x
I want to view the source code of akka, and it seems using the 0.7.x version of sbt. I transform the project configuration to the 0.10.x version. When i add sbteclipse in the libraray-dependencies and ...
5
votes
1answer
685 views
IntelliJ, Akka and Configuration files
When using akka, I place akka.conf in src/main/resources. When I run through sbt, the akka.conf is correctly recognized. But not when I run through IntelliJ (even after a gen-idea). What is the ...
8
votes
2answers
1k views
akka jvm threads vs os threads when performing io
I've searched the site a bit for help understanding this, but haven't found anything super clear, so I thought I'd post my use case and see if anybody could shed some light.
I have a question about ...
6
votes
2answers
713 views
Why is my Dispatching on Actors scaled down in Akka?
I have an actor pool of 100 running Actors which share a work stealing dispatcher with its CorePoolSize set to 100. But now when sending 19 messages to one of the Actors the 19 messages aren't ...
6
votes
1answer
954 views
In AKKA does calling shutdown on a supervisor stop all the actors it's supervising?
Let's say I have a supervisor that has linked 2 actors. When my app shutsdown I want to shutdown those actors gracefully. Does calling supervisor.shutdown() stop all the actors or do I still need to ...
4
votes
1answer
341 views
logger names for configuring akka logger using the event-handler
So, I am using Slf4jEventHandler and logback-classic. How do I configure the log levels for different actors separately? [I am using Akka 2.0_M2]
I tried doing something like
<configuration ...
3
votes
1answer
154 views
Using OpenGL with Akka Actors: guaranteeing a single thread is used for a specific actor
I have a Scala/Java OpenGL application in which I use the Akka framework. At the moment, my OpenGL thread is independent from the actor system so I can guarantee calls to OpenGL functions always come ...
3
votes
1answer
251 views
How to hide Akka remote actors from lookup?
I am running the Akka 2.0.2 microkernel and want to implement an authentication scheme for untrusted remote actors.
The first thing that comes to mind is to set up an authentication actor which ...
3
votes
3answers
3k views
Whats the equivalent of Akka
Righ now im looking at the play framework, like it a lot. One of the parts heavy advertized with it is akka, to help me better understand what akka is, how to use it, can you tell me what are some ...
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 ...
2
votes
1answer
223 views
Reply is not transmitted back to the 'client'-actor
I've an unexpected behavior when using remote actors. I've a server and a 'client'. The client sends a message to the server actor and the server replies. When I use the '?' operator everything works ...
2
votes
2answers
617 views
How to Cancel an Akka actor?
I have an akka actor(worker) that receives a request and replies to it. The request processing can take 3-60 minutes. Caller(also an actor) is currently using !!! and waiting on future.get, however ...
2
votes
1answer
975 views
Akka supervisor managing supervisors
I reckon there might be a broader question of application design using Akka hidden in here but I'll ask how does one set up a supervision tree where a "kernel" or "top" supervisor might supervise ...
2
votes
1answer
603 views
How can I use a TypedActor in a Java application?
I try to implement a TypedActor in Java following the examples on Typed Actors (Java). But I'm struggling. I have added akka-actor-1.1-M1.jar, akka-typed-actor-1.1-M1.jar, scala-library.jar but it ...
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 ...
5
votes
1answer
982 views
Using Akka to make Web service calls from Play app
I am fairly new to programming with the Play framework as well as Akka, although I've been reading about them for a while. I am now starting a proof-of-concept application on the default/basic Play ...
4
votes
3answers
202 views
How do I get the absolute remote actor url from inside the actor?
I want to do do something like this .
Actor A :
actorB ! "info"
def receive()={
case _ => {
println("Remote address is "+ _)
}
}
Actor B : (this deployed ...
4
votes
2answers
1k views
How do I wrap a java.util.concurrent.Future in an Akka Future?
In a Play Framework 2.0.1 (Scala) application, we are using a web service client library which returns java.util.concurrent.Future as responses.
Instead of blocking the Play app on the get() call, ...
4
votes
2answers
382 views
AKKA: Painless Actor Error Notifications
Beautiful People Lifestyle
A component BEAUTIFUL is using her internal akka.actor.Actor to do certain things.. ( such as "acting up" for example )
There are other MAN components that would really ...
4
votes
1answer
290 views
Scala variable binding when used with Actors
I am fairly new to Scala.
I am trying to understand how/if scala does dynamic binding when a closure is passed as part of a message to an Actor.
I am using Akka 1.2 with Scala 2.9.
I have the ...
3
votes
1answer
348 views
Protocol Buffer Messages via Akka IO and Sockets
I came across this blog post, which I found awesome and enlightening, showing how to do fixed-length framing of string messages sent to an Akka IO socket server. I have been working with an open ...
3
votes
2answers
692 views
Setting up Akka with Eclipse
I am trying to get a simple Akka program building with Eclipse and Scala. I used g8 to create the sbt project with Akka(g8 typesafehub/akka-scala-sbt) and then sbteclispe to create the Eclipse ...
3
votes
2answers
2k views
Akka Actor “ask” and “Await” with TimeoutException
I'm modeling a simple P2P with Scala and Akka:
class Node() extends Peer with Actor {
var peers: List[ActorRef] = List()
def receive = {
case _register(peer: ActorRef, p: Option[Int]) => ...
3
votes
0answers
642 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"]
...
3
votes
1answer
1k views
Akka Actors fails, VerifyError: Inconsistent stackmap frames at branch target
I have a Java application where I use Akka Typed Actors. The code has no errors in Eclipse, but when I start my application it crashes and prints this error:
Exception in thread "main" ...
3
votes
1answer
998 views
Set logging level in Akka
I have developed a financial data distribution server with Akka, and I want to set logging level for the application. The documentation at akka.io is sketchy at the best; they say there is no more ...
3
votes
2answers
941 views
Sending outbound HTTP request from Akka / Scala
I know how to handle incoming http requests in Akka, but I want my Akka-based web app also to communicate with Facebook and CouchDB through HTTP APIs by sending outbound calls. Is there any good ...
2
votes
1answer
72 views
how many times does Akka persist a message when using reliable proxy pattern to do guaranteed message delievery?
the Akka 2.1 document suggests using the reliable proxy pattern (http://doc.akka.io/docs/akka/snapshot/contrib/reliable-proxy.html) to do guaranteed message delievery, i.e a message is delivery once ...
2
votes
2answers
137 views
Store a sequence of specific class types in Scala?
Trying to find a valid and flexible way to store a sequence of class types in Scala that I can later use to spin up new instances of that type:
class Event(
val name: String,
val channels: ...
2
votes
2answers
548 views
Where can i find akka.cloud package?
Can someone point me to the Akka version that has the package akka.cloud.cluster? I am currently using Akka 1.2-RC6. google searches on this topic result in broken links about Cloudy Akka...
2
votes
4answers
5k views
How can I use Akka Actors in a Java application?
I would like to use Akka actors in Java.
I downloaded the akka-1.0.zip and added akka-actor-1.0.jar to my "Build Path" in Eclipse.
Then I wrote this Actor class:
package com.example;
import ...
1
vote
1answer
179 views
Akka and Typesafe config versions issue
I tried to use akka 2.1.0 on a Tomcat server. But I got an error asking me to put the config library on the classpath too.
Well that's not the issue. I put the config library of Typesafe, version ...

