[akka-user] Re: Dedicated seed nodes for akka cluster

2016-04-06 Thread Paul Cleary
This looks interesting, has any work been done to use consul kv by any chance? Does this solution avoid the split brain? On Thursday, March 17, 2016 at 8:32:50 PM UTC-4, Rafał Krzewski wrote: > > There are ways to boot up Akka cluster without dedicated seed node: > whichever node comes up

Re: [akka-user] Re: Dedicated seed nodes for akka cluster

2016-04-06 Thread Paul Cleary
Is there a recommendation (beyond using the split brain resolver which looks like you need a subscription?) for manual downing or managing split brain? On Saturday, April 2, 2016 at 9:45:10 AM UTC-4, Patrik Nordwall wrote: > > If you use auto-downing and that triggers because of a network

Re: [akka-user] Re: Dedicated seed nodes for akka cluster

2016-04-02 Thread Patrik Nordwall
If you use auto-downing and that triggers because of a network partition there will be two separate clusters and they will not recombine automatically. That's why we recommend against using auto-downing and instead recommend something like the Split Brain Resolver

[akka-user] Re: Dedicated seed nodes for akka cluster

2016-03-19 Thread Rafał Krzewski
There are ways to boot up Akka cluster without dedicated seed node: whichever node comes up first becomes the seed of the cluster and lets in the other nodes. An external KV is used to perform the initial coordination. Take a look at: https://github.com/hseeberger/constructr and

[akka-user] Re: Dedicated seed nodes for akka cluster

2016-03-19 Thread 'Christian Hoffmeister' via Akka User List
So basically the known seed nodes are replaces with a known etcd cluster for the information sharing, if I understand this right? Somewhat like this? * A joins, no one is there, so it puts inself into etcd and starts a single node cluster * B joins, finds A in etcd and joins A * C joins, finds