Re: [akka-user] Coordinated Shutdown

2017-12-19 Thread Heiko Seeberger
That’s not the issue, shutdown progresses without noticeable delay (much less than a second). I’ll investigate further … -- Heiko Seeberger Home: heikoseeberger.de Twitter: @hseeberger Public key: keybase.io/hseeberger > Am 19.12.2017 um 10:32 schrieb Patrik Nordwall : > > Sounds strange. Fo

Re: [akka-user] Coordinated Shutdown

2017-12-19 Thread Patrik Nordwall
Sounds strange. For how long do you sleep in the PhaseServiceUnbind task? Note that there is a default timeout of 5 seconds for a phase, otherwise it will continue with next phase. https://github.com/akka/akka/blob/master/akka-actor/src/main/resources/reference.conf#L1044 If that is not the issue

[akka-user] Coordinated Shutdown

2017-12-18 Thread Heiko Seeberger
Hi, I’m playing with coordinated shutdown and things are not working as expected. I have a taks registered for PhaseServiceUnbind. When I kill (SIGTERM) the running system, I can see (logging) that the task gets evaluated, but it seems that the shutdown process doesn’t wait for its result, i.e.

Re: [akka-user] coordinated shutdown of member with ShardCoordinator

2017-08-10 Thread Patrik Nordwall
Yes, that is the phase that performs http://doc.akka.io/docs/akka/current/java/cluster-sharding.html#graceful-shutdown The coordinator is still alive during that phase. The coordinator is a singleton so it will stop in later phase and hand over to new coordinator. On Wed, Aug 9, 2017 at 10:57 PM,

[akka-user] coordinated shutdown of member with ShardCoordinator

2017-08-09 Thread Andres March
The section below appears to be the phase where the shard gives up entities it owns. I was wondering about this process when the member is the ShardCoordinator. Is the shard coordinator still running until the shards are all rebalanced? I'm interested when the shard coordinator and other sin