Re: [akka-user] Akka 2.3.2 Released

2014-04-22 Thread Patrik Nordwall
On Mon, Apr 21, 2014 at 9:31 PM, Erik van Oosten e.vanoos...@grons.nlwrote: Hello, Thanks for the new release. I am missing akka-testkit 2.3.2 for Scala 2.11 from maven central. Is this still forthcoming, or is akka-testkit replaced by some other module? It will be published soonish. I

Re: [akka-user] Akka Persistence - Views with multiple processors

2014-04-22 Thread Olger Warnier
On Monday, April 21, 2014 9:07:03 AM UTC+2, Patrik Nordwall wrote: On Sun, Apr 20, 2014 at 6:05 PM, Olger Warnier ol...@spectare.nljavascript: wrote: On Sunday, April 20, 2014 4:59:22 PM UTC+2, Patrik Nordwall wrote: On Sun, Apr 20, 2014 at 2:47 PM, Olger Warnier ol...@spectare.nlwrote:

Re: [akka-user] SmallestMailboxPool vs BalancingPool

2014-04-22 Thread Patrik Nordwall
Hi Rob, On Fri, Apr 18, 2014 at 10:12 AM, Rob Bakker d...@rj-bakker-1.speedlinq.nlwrote: Hi I'm looking at the different routers and was wandering why would I use the *SmallestMailboxPool*, now that the *BalancingPool *is introduced? I can't think of any situation that the

Re: [akka-user] BalancingDispatcher Broadcast message bug.

2014-04-22 Thread Patrik Nordwall
On Thu, Apr 17, 2014 at 7:47 AM, Roland Kuhn goo...@rkuhn.info wrote: 16 apr 2014 kl. 23:26 skrev √iktor Ҡlang viktor.kl...@gmail.com: Hi Vitaly, On Wed, Apr 16, 2014 at 11:24 PM, vitaly tamazyan vit@gmail.com wrote: Good point, thanks! I think this corner case should be noted in

Re: [akka-user] akka streams infinite data source example

2014-04-22 Thread Patrik Nordwall
On Mon, Apr 21, 2014 at 3:59 PM, Sam Halliday sam.halli...@gmail.comwrote: On Monday, 21 April 2014 12:32:57 UTC+1, Patrik Nordwall wrote: I intend to read the documentation fully, but I was a little disappointed that the activator examples did not have a simple example with an (effectively)

Re: [akka-user] GSoC project mentoring

2014-04-22 Thread Patrik Nordwall
Hi Szymon, Thanks for your request. Unfortunately the Akka team is unable to mentor any GSoC at the moment. Regards, Patrik On Thu, Apr 17, 2014 at 9:35 AM, Szymon Matejczyk smatejc...@gmail.comwrote: Hi guys, I want to take part in Google Summer of Code(https://www.google-

Re: [akka-user] Strange behavior with Akka Tcp

2014-04-22 Thread Patrik Nordwall
On Fri, Apr 11, 2014 at 8:32 PM, Chris Baxter cbax...@gmail.com wrote: I'm using the latest release of Akka (2.3.2) and I've been playing around with the Tcp Api a bit, trying to get familiar with how it works. In doing so, I've been writing a little Memcached binary client. This usage of

[akka-user] Is there a way to restart an actor?

2014-04-22 Thread Chanan Braunstein
Not even sure this make sense, but I am trying to work around a bug (I think) I found in play, see here: https://groups.google.com/forum/#!topic/play-framework/8eyfIVKvW3o To me that seems to be a bug, but in mean time I am trying to force that actor to restart. I tried sending it a stop

[akka-user] Will 'Cluster Singleton' always take maxHandOverRetries*retryInterval to initialise?

2014-04-22 Thread Lawrence Wagerfield
My question is the same as 'Cluster Singleton Nightmarehttps://www.mail-archive.com/akka-user@googlegroups.com/msg00513.html' - I just really want to clarify how this thread was left... Is it true that the singleton manager always takes `maxHandOverRetries*retryInterval` (seconds) before it

Re: [akka-user] Is there a way to restart an actor?

2014-04-22 Thread Heiko Seeberger
On Tue, Apr 22, 2014 at 5:32 PM, Chanan Braunstein chanan.braunst...@pearson.com wrote: I am stopping it with Akka.system().stop(actorRef); Then you are stopping it. This won't restart the actor. I cannot use a supervisor here since it is right /user - if i were to add a supervisor above

Re: [akka-user] Akka 2.3.2 Released

2014-04-22 Thread Erik van Oosten
Thanks! That worked. Kind regards, Erik. Patrik Nordwall schreef op 22-04-14 09:36: On Mon, Apr 21, 2014 at 9:31 PM, Erik van Oosten e.vanoos...@grons.nl mailto:e.vanoos...@grons.nl wrote: Hello, Thanks for the new release. I am missing akka-testkit 2.3.2 for Scala

Re: [akka-user] Is there a way to restart an actor?

2014-04-22 Thread Chanan Braunstein
On Tuesday, April 22, 2014 12:00:12 PM UTC-4, Heiko Seeberger wrote: On Tue, Apr 22, 2014 at 5:32 PM, Chanan Braunstein chanan.b...@pearson.com javascript: wrote: I am stopping it with Akka.system().stop(actorRef); Then you are stopping it. This won't restart the actor. Right. After

Re: [akka-user] Will 'Cluster Singleton' always take maxHandOverRetries*retryInterval to initialise?

2014-04-22 Thread Patrik Nordwall
On Tue, Apr 22, 2014 at 5:53 PM, Lawrence Wagerfield lawre...@dmz.wagerfield.com wrote: My question is the same as 'Cluster Singleton Nightmarehttps://www.mail-archive.com/akka-user@googlegroups.com/msg00513.html' - I just really want to clarify how this thread was left... Is it true that

Re: [akka-user] Reactive / Akka streams of ByteStrings

2014-04-22 Thread Daniel Armak
On Tue, Apr 22, 2014 at 1:42 PM, Patrik Nordwall patrik.nordw...@gmail.comwrote: Yes, uncompressing processor must be able to buffer and send smaller chunks downstream. If it has a compression ratio of 10:1, and it gets demand from downstream of 1000 chunks it should request 100 chunks from

Re: [akka-user] akka streams infinite data source example

2014-04-22 Thread Sam Halliday
Thanks Patrik, Well it sounds like everything is heading in the right direction, if it is not already there yet. I'm very excited to see what will be in the next milestone :-D On 22 April 2014 12:08, Patrik Nordwall patrik.nordw...@gmail.com wrote: On Mon, Apr 21, 2014 at 3:59 PM, Sam

Re: [akka-user] Will 'Cluster Singleton' always take maxHandOverRetries*retryInterval to initialise?

2014-04-22 Thread Lawrence Wagerfield
Thanks for clarifying Patrik, and thanks for pointing out the ticket (and also for implementing this feature !) :) On Tuesday, April 22, 2014 6:43:27 PM UTC+1, Patrik Nordwall wrote: On Tue, Apr 22, 2014 at 5:53 PM, Lawrence Wagerfield lawr...@dmz.wagerfield.com javascript: wrote: My

Re: [akka-user] Akka Persistence - Views with multiple processors

2014-04-22 Thread Olger Warnier
Based on all your remarks, I found the way to get this organised using the Views for scanning changes and thereafter starting an actor with the specific actorpath of the sharded eventsourced instance in order to process all changes (the meta-data option as you called it). As said, that solves

Re: [akka-user] Akka 2.3.2 Released

2014-04-22 Thread Ngoc Dao
I am missing akka-testkit 2.3.2 for Scala 2.11 from maven central. Hi, can you release akka-cluster for Scala 2.11 too? -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html Search the archives:

[akka-user] Akka Clustering (2.2.3) on AWS

2014-04-22 Thread tigerfoot
Hello, We're running a distributed app on AWS using an Akka cluster v2.2.3. A typical config for one of the nodes is below: akka { loglevel = WARNING stdout-loglevel = WARNING loggers = [akka.event.slf4j.Slf4jLogger] actor { provider = akka.cluster.ClusterActorRefProvider } cluster { seed-nodes