kevin wrote
> Hi,
> 
> I'm trying to find out that these are for? I couldn't find much
> documentation about how they can be used.
> As far as I understand, the addresses are only used when a node starts up
> initially to find other nodes in the cluster. Once it has joined the
> cluster, why does it matter that the ip finder is shared or not? Or what
> would registering/unregistering an address do?
> 
> I'm trying to figure out if I can unregister a node from the cluster, and
> restart that node so that it starts a new cluster, and that the old
> cluster can't discover it. I'm wondering if these settings in
> TcpDiscoveryIpFinder will help.
> 
> Thanks

Any shared IP finder uses some kind of shared storage (S3, shared FS, etc.)
to store coordinates of alive nodes. These coordinates are then used by
nodes that are trying to join topology. So when a node joins, it reads
available IPs from this storage, uses one of them to connect to topology and
writes its own IP and port to the storage. When a node leaves, it removes
its record.

In your scenario you will have to start the node with different
configuration (different S3 bucket, different shared FS folder, etc.,
depending on what type of IP finder you're using).

Makes sense?

-Val



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/TcpDiscoveryIpFinder-shared-register-unregister-addresses-tp1275p1299.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to