You cannot post messages because only members can post, and you are not currently a member.
Description:
User mailing list for the Akka Project.
Akka: Simpler Scalability, Fault-Tolerance, Concurrency & Remoting through Actors
|
|
|
Actors instantiation strategy
|
| |
Hi! I would like to know if there is a best practice in actors instanciation : we have a dozen of different actors, each performing a particular operation and and giving the result of this operation to the next actor. Our first idea was to create a master actor which would institate all actors then starting the process by sending a message to the first actor in... more »
|
|
singleton actors
|
| |
It looks like singleton-actors[1] can cause strange bad things to happen.
Having stumbled upon this personally i now find a stackoverflow thread[2],
but still don't see anything in the documentation. Should there be
something in the docs warning against using singleton objects so others
don't have to stumble upon this?... more »
|
|
Typed actor supervisor hierarchies (in Java)
|
| |
Is it possible to create a supervisor hierarchy consisting of typed actors in Java? The docs imply that it is possible: [link] "Since you can obtain a contextual Typed Actor Extension by passing in an ActorContext you can create child Typed Actors by invoking typedActorOf(..) on... more »
|
|
Epic Logback Failure
|
| |
I'm using Logback with a groovy config file, and recently migrated to
use ActorLogging.
The same project starts just fine under sbt/jetty on my macbook, yet fails
under Tomcat on a small (single core) amazon instance.
For the most part, I'm completely stumped; but suspect that thread
starvation is occurring, given the difference in core count between the... more »
|
|
gossip failed
|
| |
Hi guys,
i am playing with a cluster junit test. i start a cluster with 4 nodes
Node0, Node1, Node2, Node3. Each register a MembershipChangeListener,
and after all converged i stop node0 and ... gossip failed to elect a
new leader.
Regards
Bruno
if it may help here is the java code :... more »
|
|
FSM Usage pattern
|
| |
Dear all,
I have an Actor which might be in two states.Idle or Processing.When
in Idle, if a message is received,it directly moves to Processing,
where it starts a long procedure. At the end
At the end of the procedure, the actor should
- Go back to Idle if no message is received during the Processing... more »
|
|
2.0(.1) feedback requested
|
| |
Dear hAkkers,
Now it's almost been 3 months since we released Akka 2.0, and we, the
committers would really appreciate
getting some feedback on what your experiences have been during the past
months.
If you cannot share this publically, please feel free to send the feedback
to me personally and I'll keep it confidential.... more »
|
|
Process only last message pattern
|
| |
Dear users,
I have to implement a system where a given number of event might occur in a
certain lifetime and I want to process in batch. Namely each event should
trigger the recomputation of the same object, let's say for example the
value of the dow Jones index.
At each time I need to compute it I should read from my data layer all the... more »
|
|
best way to ask a million actors?
|
| |
Hey All, What's the best way to ? a million actors? I've tried using Future.fold, but that seems to try to have a thread for each actor that it's waiting on. Or perhaps I'm mistaken? Thanks, Ben
|
|
|