gocql.TokenAwareHostPolicy(gocql.DCAwareRoundRobinPolicy("US Central"))
and let’s say, gocql driver found the tablet server(that owns the table partition) as down… What happens next? Because the replication of this tablet is in “US East 2”. Will the driver re route the request to "US East2"?Withgocql.TokenAwareHostPolicy(gocql.DCAwareRoundRobinPolicy("US Central"))
and let’s say, gocql driver found the tablet server(that owns the table partition) as down… What happens next? Because the replication of this tablet is in “US East 2”. Will the driver re route the request to "US East2"?
Also,The PoolConfig interface provides a way to configure the HostSelectionPolicy. How do I set up things like number of openConnections number of idleConnection and Connection timeout?
So without NonLocalReplicasFallback if the table is not found in both replicas in local DC and non-replicas in local DC.Will it continue searching for replicas and non replicas in Remote DC?