Hello,
I was going to enable periodic cluster topology refresh but just found that there is an option of enabling all adaptive refresh triggers just like the following code:
final ClusterTopologyRefreshOptions clusterTopologyRefreshOptions = ClusterTopologyRefreshOptions.builder()
.enablePeriodicRefresh(true)
.enablePeriodicRefresh(10, TimeUnit.MINUTES)
.enableAllAdaptiveRefreshTriggers()
.build();
I came to think that, if I enable all adaptive refresh triggers, do I still need periodic refresh? If I enable both of all adaptive and periodic refresh, then is the periodic refresh going to be supplementary in the sense that it will refresh the nodes that were not successful from the adaptive refresh?
Thank you in advance!
Kevin