Re: [akka-user] Re: 2.3.12. Akka cluster init timeouts

2015-08-27 Thread Marek Żebrowski
Thanks a lot!!! W dniu czwartek, 27 sierpnia 2015 09:17:13 UTC+2 użytkownik Patrik Nordwall napisał: I was able to reproduce it with a sleep at a strategic location. I have created a pull request https://github.com/akka/akka/pull/18332 which makes it possible to start cluster with 1

Re: [akka-user] Re: 2.3.12. Akka cluster init timeouts

2015-08-27 Thread Marek Żebrowski
Probably you want to add a note to docs in http://doc.akka.io/docs/akka/2.3.12/scala/cluster-usage.html#Cluster_Dispatcher W dniu czwartek, 27 sierpnia 2015 09:41:41 UTC+2 użytkownik Marek Żebrowski napisał: Thanks a lot!!! W dniu czwartek, 27 sierpnia 2015 09:17:13 UTC+2 użytkownik

Re: [akka-user] Re: 2.3.12. Akka cluster init timeouts

2015-08-27 Thread Patrik Nordwall
I was able to reproduce it with a sleep at a strategic location. I have created a pull request https://github.com/akka/akka/pull/18332 which makes it possible to start cluster with 1 dispatcher thread, previously 5 threads were required to avoid the risk of deadlock. The immediate workaround for

Re: [akka-user] Re: 2.3.12. Akka cluster init timeouts

2015-08-27 Thread Patrik Nordwall
On Thu, Aug 27, 2015 at 9:45 AM, Marek Żebrowski marek.zebrow...@gmail.com wrote: Probably you want to add a note to docs in http://doc.akka.io/docs/akka/2.3.12/scala/cluster-usage.html#Cluster_Dispatcher that is on its way https://github.com/akka/akka/pull/18333 W dniu czwartek, 27

Re: [akka-user] Re: 2.3.12. Akka cluster init timeouts

2015-08-26 Thread Marek Żebrowski
Last guess about parall creation of extension does not make sense - it happens after initial failure. Maybe there is a way to cleanly re-create ActorSystem. I'm only worried about that NPE on cluster shutdown. it might not leave system in a stable state, as closeScheduler()will not be called W

Re: [akka-user] Re: 2.3.12. Akka cluster init timeouts

2015-08-26 Thread Patrik Nordwall
On Wed, Aug 26, 2015 at 3:50 PM, Marek Żebrowski marek.zebrow...@gmail.com wrote: Problem still persists. 1. I changed boot procedure to wait until cluster starts. it is done by: class ClusterWaiter(p: Promise[Boolean]) extends Actor { override def receive = { case _ =

Re: [akka-user] Re: 2.3.12. Akka cluster init timeouts

2015-08-06 Thread Marek Żebrowski
I did not change the default dispatcher. I hope that I have all heavy task run by other dispatchers - I'll double check it. W dniu środa, 5 sierpnia 2015 22:57:05 UTC+2 użytkownik Patrik Nordwall napisał: Have you changed the default configuration of the default-dispatcher, or do you do any

[akka-user] Re: 2.3.12. Akka cluster init timeouts

2015-08-03 Thread Marek Żebrowski
That failure leads to another failure: actor name not unique 08:11:39.893 [sgActors-akka.actor.default-dispatcher-17] ERROR a.c.ClusterCoreSupervisor: actor name [cluster] is not unique! akka.actor.InvalidActorNameException: actor name [cluster] is not unique! -- Read the docs: