public interface LoadBalancingPolicy
distance(com.datastax.driver.core.Host)
: returns the "distance" of an
host for that balancing policy. newQueryPlan(java.lang.String, com.datastax.driver.core.Statement)
: it is used for each query to
find which host to query first, and which hosts to use as failover.LoadBalancingPolicy
is informed of hosts up/down events. For efficiency
purposes, the policy is expected to exclude down hosts from query plans.Modifier and Type | Method and Description |
---|---|
void |
close()
Gets invoked at cluster shutdown.
|
HostDistance |
distance(Host host)
Returns the distance assigned by this policy to the provided host.
|
void |
init(Cluster cluster,
Collection<Host> hosts)
Initialize this load balancing policy.
|
Iterator<Host> |
newQueryPlan(String loggedKeyspace,
Statement statement)
Returns the hosts to use for a new query.
|
void |
onAdd(Host host)
Called when a new node is added to the cluster.
|
void |
onDown(Host host)
Called when a node is determined to be down.
|
void |
onRemove(Host host)
Called when a node is removed from the cluster.
|
void |
onUp(Host host)
Called when a node is determined to be up.
|
void init(Cluster cluster, Collection<Host> hosts)
cluster
- the Cluster
instance for which the policy is created.hosts
- the initial hosts to use.HostDistance distance(Host host)
HostDistance
). A policy should assign a LOCAL
distance to nodes that are susceptible to be returned first by
newQueryPlan
and it is useless for newQueryPlan
to
return hosts to which it assigns an IGNORED
distance.
The host distance is primarily used to prevent keeping too many
connections to host in remote datacenters when the policy itself always
picks host in the local datacenter first.host
- the host of which to return the distance of.host
.Iterator<Host> newQueryPlan(String loggedKeyspace, Statement statement)
Iterator
are down, the query
will fail.loggedKeyspace
- the currently logged keyspace (the one set through either
Cluster.connect(String)
or by manually doing a USE
query) for
the session on which this plan need to be built. This can be null
if
the corresponding session has no keyspace logged in.statement
- the query for which to build a plan.void onAdd(Host host)
host
- the host that has been newly added.void onUp(Host host)
host
- the host that has been detected up.void onDown(Host host)
host
- the host that has been detected down.void onRemove(Host host)
host
- the removed host.void close()
Copyright © 2012–2017. All rights reserved.