public class PoolingOptions extends Object
ProtocolVersion#V2
or below, there are at most 128 simultaneous
requests per connection, so the pool defaults to a variable size. You will
typically raise the maximum capacity by adding more connections with
setMaxConnectionsPerHost(HostDistance, int)
.
With ProtocolVersion#V3
or above, there are up to 32768 requests per
connection, and the pool defaults to a fixed size of 1. You will typically
raise the maximum capacity by allowing more simultaneous requests per connection
(setMaxRequestsPerConnection(HostDistance, int)
).
All parameters can be separately set for LOCAL
and
REMOTE
hosts (HostDistance
). For IGNORED
hosts,
no connections are created so these settings cannot be changed.Modifier and Type | Field and Description |
---|---|
static String |
CORE_POOL_LOCAL_KEY |
static String |
CORE_POOL_REMOTE_KEY |
static int |
DEFAULT_HEARTBEAT_INTERVAL_SECONDS
The default value for
getHeartbeatIntervalSeconds() (30). |
static int |
DEFAULT_IDLE_TIMEOUT_SECONDS
The default value for
getIdleTimeoutSeconds() (120). |
static int |
DEFAULT_POOL_TIMEOUT_MILLIS
The default value for
getPoolTimeoutMillis() (5000). |
static Map<ProtocolVersion,Map<String,Integer>> |
DEFAULTS
The default values for connection options, that depend on the native protocol version.
|
static String |
MAX_POOL_LOCAL_KEY |
static String |
MAX_POOL_REMOTE_KEY |
static String |
MAX_REQUESTS_PER_CONNECTION_LOCAL_KEY |
static String |
MAX_REQUESTS_PER_CONNECTION_REMOTE_KEY |
static String |
NEW_CONNECTION_THRESHOLD_LOCAL_KEY |
static String |
NEW_CONNECTION_THRESHOLD_REMOTE_KEY |
static int |
UNSET
The value returned for connection options when they have not been set by the client, and the protocol version
is not known yet.
|
Constructor and Description |
---|
PoolingOptions() |
Modifier and Type | Method and Description |
---|---|
int |
getCoreConnectionsPerHost(HostDistance distance)
Returns the core number of connections per host.
|
int |
getHeartbeatIntervalSeconds()
Returns the heart beat interval, after which a message is sent on an idle connection to make sure it's still alive.
|
int |
getIdleTimeoutSeconds()
Returns the timeout before an idle connection is removed.
|
Executor |
getInitializationExecutor()
Returns the executor to use for connection initialization.
|
int |
getMaxConnectionsPerHost(HostDistance distance)
Returns the maximum number of connections per host.
|
int |
getMaxRequestsPerConnection(HostDistance distance)
Returns the maximum number of requests per connection.
|
int |
getNewConnectionThreshold(HostDistance distance)
Returns the threshold that triggers the creation of a new connection to a host.
|
int |
getPoolTimeoutMillis()
Returns the timeout when trying to acquire a connection from a host's pool.
|
void |
refreshConnectedHost(Host host)
Requests the driver to re-evaluate the
HostDistance for a given node. |
void |
refreshConnectedHosts()
Requests the driver to re-evaluate the
HostDistance (through the configured
LoadBalancingPolicy.distance(com.datastax.driver.core.Host) ) for every known
hosts and to drop/add connections to each hosts according to the computed distance. |
PoolingOptions |
setConnectionsPerHost(HostDistance distance,
int core,
int max)
Sets the core and maximum number of connections per host in one call.
|
PoolingOptions |
setCoreConnectionsPerHost(HostDistance distance,
int newCoreConnections)
Sets the core number of connections per host.
|
PoolingOptions |
setHeartbeatIntervalSeconds(int heartbeatIntervalSeconds)
Sets the heart beat interval, after which a message is sent on an idle connection to make sure it's still alive.
|
PoolingOptions |
setIdleTimeoutSeconds(int idleTimeoutSeconds)
Sets the timeout before an idle connection is removed.
|
PoolingOptions |
setInitializationExecutor(Executor initializationExecutor)
Sets the executor to use for connection initialization.
|
PoolingOptions |
setMaxConnectionsPerHost(HostDistance distance,
int newMaxConnections)
Sets the maximum number of connections per host.
|
PoolingOptions |
setMaxRequestsPerConnection(HostDistance distance,
int newMaxRequests)
Sets the maximum number of requests per connection.
|
PoolingOptions |
setNewConnectionThreshold(HostDistance distance,
int newValue)
Sets the threshold that triggers the creation of a new connection to a host.
|
PoolingOptions |
setPoolTimeoutMillis(int poolTimeoutMillis)
Sets the timeout when trying to acquire a connection from a host's pool.
|
public static final int UNSET
PoolingOptions
object is associated to a Cluster
and that cluster initializes, the
protocol version will be detected, and connection options will take their default values for that protocol
version.
The methods that may return this value are:
getCoreConnectionsPerHost(HostDistance)
,
getMaxConnectionsPerHost(HostDistance)
,
getNewConnectionThreshold(HostDistance)
,
getMaxRequestsPerConnection(HostDistance)
.public static final String CORE_POOL_LOCAL_KEY
public static final String MAX_POOL_LOCAL_KEY
public static final String CORE_POOL_REMOTE_KEY
public static final String MAX_POOL_REMOTE_KEY
public static final String NEW_CONNECTION_THRESHOLD_LOCAL_KEY
public static final String NEW_CONNECTION_THRESHOLD_REMOTE_KEY
public static final String MAX_REQUESTS_PER_CONNECTION_LOCAL_KEY
public static final String MAX_REQUESTS_PER_CONNECTION_REMOTE_KEY
public static final Map<ProtocolVersion,Map<String,Integer>> DEFAULTS
ProtocolVersion referenceVersion = null;
for (ProtocolVersion key : DEFAULTS.keySet()) {
if (key.compareTo(actualVersion) > 0)
break;
else
referenceVersion = key;
}
Map<String, Integer> defaults = DEFAULTS.get(referenceVersion);
Once you've extracted the underlying map, use the keys CORE_POOL_LOCAL_KEY
,
MAX_POOL_LOCAL_KEY
, CORE_POOL_REMOTE_KEY
, MAX_POOL_REMOTE_KEY
,
NEW_CONNECTION_THRESHOLD_LOCAL_KEY
, NEW_CONNECTION_THRESHOLD_REMOTE_KEY
,
MAX_REQUESTS_PER_CONNECTION_LOCAL_KEY
and MAX_REQUESTS_PER_CONNECTION_REMOTE_KEY
.UNSET
public static final int DEFAULT_IDLE_TIMEOUT_SECONDS
getIdleTimeoutSeconds()
(120).public static final int DEFAULT_POOL_TIMEOUT_MILLIS
getPoolTimeoutMillis()
(5000).public static final int DEFAULT_HEARTBEAT_INTERVAL_SECONDS
getHeartbeatIntervalSeconds()
(30).public int getCoreConnectionsPerHost(HostDistance distance)
distance
- the HostDistance
for which to return this threshold.distance
.public PoolingOptions setCoreConnectionsPerHost(HostDistance distance, int newCoreConnections)
distance
, this corresponds to the number of
connections initially created and kept open to each host of that
distance.
The default value is:
ProtocolVersion#V2
or below: 2 for LOCAL
hosts and 1 for REMOTE
hosts.ProtocolVersion#V3
or above: 1 for all hosts.distance
- the HostDistance
for which to set this threshold.newCoreConnections
- the value to setPoolingOptions
.IllegalArgumentException
- if distance == HostDistance.IGNORED
,
or if newCoreConnections
is greater than the maximum value for this distance.setConnectionsPerHost(HostDistance, int, int)
public int getMaxConnectionsPerHost(HostDistance distance)
distance
- the HostDistance
for which to return this threshold.distance
.public PoolingOptions setMaxConnectionsPerHost(HostDistance distance, int newMaxConnections)
distance
, this corresponds to the maximum
number of connections that can be created per host at that distance.
The default value is:
ProtocolVersion#V2
or below: 8 for LOCAL
hosts and 2 for REMOTE
hosts.ProtocolVersion#V3
or above: 1 for all hosts.distance
- the HostDistance
for which to set this threshold.newMaxConnections
- the value to setPoolingOptions
.IllegalArgumentException
- if distance == HostDistance.IGNORED
,
or if newMaxConnections
is less than the core value for this distance.setConnectionsPerHost(HostDistance, int, int)
public PoolingOptions setConnectionsPerHost(HostDistance distance, int core, int max)
setCoreConnectionsPerHost(HostDistance, int)
and setMaxConnectionsPerHost(HostDistance, int)
.distance
- the HostDistance
for which to set these threshold.core
- the core number of connections.max
- the max number of connections.PoolingOptions
.IllegalArgumentException
- if distance == HostDistance.IGNORED
,
or if core
> max
.public int getNewConnectionThreshold(HostDistance distance)
distance
- the HostDistance
for which to return this threshold.setNewConnectionThreshold(HostDistance, int)
public PoolingOptions setNewConnectionThreshold(HostDistance distance, int newValue)
getMaxConnectionsPerHost(HostDistance)
getMaxRequestsPerConnection(HostDistance)
+ getNewConnectionThreshold(HostDistance)
ProtocolVersion#V2
or below: 100 for all hosts.ProtocolVersion#V3
or above: 800 for LOCAL
hosts and 200 for REMOTE
hosts.distance
- the HostDistance
for which to configure this threshold.newValue
- the value to set (between 0 and 128).PoolingOptions
.IllegalArgumentException
- if distance == HostDistance.IGNORED
, or if maxSimultaneousRequests
is not in range, or if newValue
is less than the minimum value for this distance.public int getMaxRequestsPerConnection(HostDistance distance)
distance
- the HostDistance
for which to return this threshold.distance
.setMaxRequestsPerConnection(HostDistance, int)
public PoolingOptions setMaxRequestsPerConnection(HostDistance distance, int newMaxRequests)
ProtocolVersion#V2
or below: 128 for all hosts (there should not be any reason to change this).ProtocolVersion#V3
or above: 1024 for LOCAL
hosts and 256 for REMOTE
hosts.
These values were chosen so that the default V2 and V3 configuration generate the same load on a Cassandra cluster.
Protocol V3 can go much higher (up to 32768), so if your number of clients is low, don't hesitate to experiment with
higher values. If you have more than one connection per host, consider also adjusting
setNewConnectionThreshold(HostDistance, int)
.
distance
- the HostDistance
for which to set this threshold.newMaxRequests
- the value to set.PoolingOptions
.IllegalArgumentException
- if distance == HostDistance.IGNORED
,
or if newMaxConnections
is not within the allowed range.public int getIdleTimeoutSeconds()
public PoolingOptions setIdleTimeoutSeconds(int idleTimeoutSeconds)
idleTimeoutSeconds
- the new timeout in seconds.PoolingOptions
.IllegalArgumentException
- if the timeout is negative.public int getPoolTimeoutMillis()
public PoolingOptions setPoolTimeoutMillis(int poolTimeoutMillis)
poolTimeoutMillis
- the new value in milliseconds.PoolingOptions
IllegalArgumentException
- if the timeout is negative.public int getHeartbeatIntervalSeconds()
public PoolingOptions setHeartbeatIntervalSeconds(int heartbeatIntervalSeconds)
SocketOptions.getReadTimeoutMillis()
.
The default value for this option is 30 seconds.heartbeatIntervalSeconds
- the new value in seconds. If set to 0, it will disable the feature.PoolingOptions
IllegalArgumentException
- if the interval is negative.public Executor getInitializationExecutor()
setInitializationExecutor(java.util.concurrent.Executor)
public PoolingOptions setInitializationExecutor(Executor initializationExecutor)
MoreExecutors.sameThreadExecutor()
, which results in running the transformations
on the network I/O threads; this is fine if the transformations are fast and not I/O bound
(which is the case by default).
One reason why you might want to provide a custom executor is if you use authentication with
a custom Authenticator
implementation that performs blocking
calls.initializationExecutor
- the executor to usePoolingOptions
NullPointerException
- if the executor is nullpublic void refreshConnectedHosts()
HostDistance
(through the configured
LoadBalancingPolicy.distance(com.datastax.driver.core.Host)
) for every known
hosts and to drop/add connections to each hosts according to the computed distance.
Note that, due to backward compatibility issues, this method is not interruptible. If the
caller thread gets interrupted, the method will complete and only then re-interrupt the
thread (which you can check with Thread.currentThread().isInterrupted()
).public void refreshConnectedHost(Host host)
HostDistance
for a given node.host
- the host to refresh.refreshConnectedHosts()