Reputation: 2168
I would like to know how the Hazelcast autodiscovery works. How do nodes find other nodes in the network? And how do they know when a node is dead?
Upvotes: 6
Views: 2534
Reputation: 11317
There are 3 different forms of discovery:
So this is in short how auto discovery works.
Detection node failure is done based on heart beats. So every x seconds we send a message to a all members in the clusters, the ones that can't reply, are eventually declared dead.
Upvotes: 12