Hi,
When initialize a Cluster by using this constructor
Cluster(String nodes, IConnection.Config connectionConfig, boolean dynamicNodeDiscovery)
a list of nodes should be provided as parameter, and enable dynamicNodeDiscovery would ignore the nodes which does not exist in the cluster.
Is that possible to initialize a Cluster object which would ignore the nodes which are down but still in the cluster in order to avoid making connection to them?
I am considering using NodeFilter to filter our down node, is this the right way to do that?
Thanks