-
Notifications
You must be signed in to change notification settings - Fork 469
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What happens if --join host goes down? #320
Comments
We should probably document some recommendations. For now, the only requirements are:
This means that the very first node is no longer special once another node has joined the cluster. |
@mberhault, since each new node stores the list of nodes already in the cluster, why is it ever necessary to pass more than one address in the |
We don't technically need to as long as the |
It's never necessary to give more than one |
Closing in favor of #3395. |
From Gitter:
Lorenzo Boccaccia @LorenzoBoccaccia 03:29
hi guys, I've some question about deployment and disaster recovery.. when you start instances you --join them to some host; what happen if that particular host goes down? and what happen if the instance are to be restarted, but the primary --join target is still down?
marc @mberhault 05:06
once a machine is connected to the gossip network (basically, once it has joined the cluster), it stores the addresses of other nodes seen, so you could restart without --join, and it would still be ok
Lorenzo Boccaccia @LorenzoBoccaccia 05:07
ah ok perfect. and when one cluster element dies, how does replication react? at which point the replica of the zone impacted are replicated toward different nodes form the available copies?
marc @mberhault 05:09
we consider a node to be dead if it's been unreachable for five minutes. At that point, we'll add another node as a replica and start copying data over
Lorenzo Boccaccia @LorenzoBoccaccia 05:11
wonderful, cheers!
The text was updated successfully, but these errors were encountered: