com.yandex.ydb.core.grpc.BalancingPolicy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
JDBC client implementation over Table client, single jar
The newest version!
package com.yandex.ydb.core.grpc;
/**
* @author Nikolay Perfilov
*/
public enum BalancingPolicy {
/** Use all available cluster nodes regardless datacenter locality
*/
USE_ALL_NODES,
/** Use preferable location (data center),
* preferableLocation is a name of location (VLA, MYT, SAS, MAN).
* If preferableLocation is not set local datacenter is used (not recommended)
*/
USE_PREFERABLE_LOCATION
}