I read about Java leader election implementation using Zookeeper. I am clear with the algorithm described here. But I have a subtle question to ask about the algorithm.
In the algorithm explained, nodes select all the child nodes of the "/election" node and select the smallest node as the leader.
In that case, how they decide the nodes which are in and which are not in. What I want to know is what condition decides to prevent a node which is late to create its child node and to participate in the leader election. Is it a timeout? If so, how and where it is counted?
how they decide the nodes which are in and which are not in?
Any server node which have create child znode under /election is able to be a leader, and the only way to prevent a server node to be in leader election is that do not create child znode for this server node.