public class HostFilterPolicy extends Object implements ChainableLoadBalancingPolicy, CloseableLoadBalancingPolicy
IGNORED
and thus will not be connected to.Constructor and Description |
---|
HostFilterPolicy(LoadBalancingPolicy childPolicy,
Predicate<Host> predicate)
Create a new policy that wraps the provided child policy but only "allows" hosts
matching the predicate.
|
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.
|
static HostFilterPolicy |
fromDCBlackList(LoadBalancingPolicy childPolicy,
Iterable<String> dcs)
Create a new policy that wraps the provided child policy but only "forbids" hosts
whose DC belongs to the provided list.
|
static HostFilterPolicy |
fromDCWhiteList(LoadBalancingPolicy childPolicy,
Iterable<String> dcs)
Create a new policy that wraps the provided child policy but only "allows" hosts
whose DC belongs to the provided list.
|
LoadBalancingPolicy |
getChildPolicy()
Returns the child policy.
|
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 |
onSuspected(Host host) |
void |
onUp(Host host)
Called when a node is determined to be up.
|
public HostFilterPolicy(LoadBalancingPolicy childPolicy, Predicate<Host> predicate)
childPolicy
- the wrapped policy.predicate
- the host predicate. Only hosts matching this predicate may get connected
to (whether they will get connected to or not depends on the child policy).public LoadBalancingPolicy getChildPolicy()
ChainableLoadBalancingPolicy
getChildPolicy
in interface ChainableLoadBalancingPolicy
public void init(Cluster cluster, Collection<Host> hosts)
init
in interface LoadBalancingPolicy
cluster
- the Cluster
instance for which the policy is created.hosts
- the initial hosts to use.IllegalArgumentException
- if none of the host in hosts
(which will correspond to the contact points) matches the predicate.public 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.distance
in interface LoadBalancingPolicy
host
- the host of which to return the distance of.HostDistance.IGNORED
if host
is not matching the predicate, the HostDistance
as returned by the wrapped policy otherwise.public Iterator<Host> newQueryPlan(String loggedKeyspace, Statement statement)
Iterator
are down, the query
will fail.
It is guaranteed that only hosts matching the predicate will be returned.newQueryPlan
in interface LoadBalancingPolicy
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.public void onUp(Host host)
Host.StateListener
onUp
in interface Host.StateListener
host
- the host that has been detected up.public void onSuspected(Host host)
onSuspected
in interface Host.StateListener
public void onDown(Host host)
Host.StateListener
onDown
in interface Host.StateListener
host
- the host that has been detected down.public void onAdd(Host host)
Host.StateListener
onAdd
in interface Host.StateListener
host
- the host that has been newly added.public void onRemove(Host host)
Host.StateListener
onRemove
in interface Host.StateListener
host
- the removed host.public void close()
CloseableLoadBalancingPolicy
close
in interface CloseableLoadBalancingPolicy
public static HostFilterPolicy fromDCWhiteList(LoadBalancingPolicy childPolicy, Iterable<String> dcs)
childPolicy
- the wrapped policy.dcs
- the DCs.public static HostFilterPolicy fromDCBlackList(LoadBalancingPolicy childPolicy, Iterable<String> dcs)
childPolicy
- the wrapped policy.dcs
- the DCs.