com.datastax.driver.core.policies
Class RoundRobinPolicy

java.lang.Object
  extended by com.datastax.driver.core.policies.RoundRobinPolicy
All Implemented Interfaces:
Host.StateListener, LoadBalancingPolicy

public class RoundRobinPolicy
extends Object
implements LoadBalancingPolicy

A Round-robin load balancing policy.

This policy queries nodes in a round-robin fashion. For a given query, if an host fail, the next one (following the round-robin order) is tried, until all hosts have been tried.

This policy is not datacenter aware and will include every known Cassandra host in its round robin algorithm. If you use multiple datacenter this will be inefficient and you will want to use the DCAwareRoundRobinPolicy load balancing policy instead.


Constructor Summary
RoundRobinPolicy()
          Creates a load balancing policy that picks host to query in a round robin fashion (on all the hosts of the Cassandra cluster).
 
Method Summary
 HostDistance distance(Host host)
          Return the HostDistance for the provided host.
 void init(Cluster cluster, Collection<Host> hosts)
          Initialize this load balancing policy.
 Iterator<Host> newQueryPlan(Query query)
          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 detected down.
 void onRemove(Host host)
          Called when a node is removed from the cluster.
 void onUp(Host host)
          Called when a node is detected up.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RoundRobinPolicy

public RoundRobinPolicy()
Creates a load balancing policy that picks host to query in a round robin fashion (on all the hosts of the Cassandra cluster).

Method Detail

init

public void init(Cluster cluster,
                 Collection<Host> hosts)
Description copied from interface: LoadBalancingPolicy
Initialize this load balancing policy.

Note that the driver guarantees that it will call this method exactly once per policy object and will do so before any call to another of the methods of the policy.

Specified by:
init in interface LoadBalancingPolicy
Parameters:
cluster - the Cluster instance for which the policy is created.
hosts - the initial hosts to use.

distance

public HostDistance distance(Host host)
Return the HostDistance for the provided host.

This policy consider all nodes as local. This is generally the right thing to do in a single datacenter deployment. If you use multiple datacenter, see DCAwareRoundRobinPolicy instead.

Specified by:
distance in interface LoadBalancingPolicy
Parameters:
host - the host of which to return the distance of.
Returns:
the HostDistance to host.

newQueryPlan

public Iterator<Host> newQueryPlan(Query query)
Returns the hosts to use for a new query.

The returned plan will try each known host of the cluster. Upon each call to this method, the ith host of the plans returned will cycle over all the hosts of the cluster in a round-robin fashion.

Specified by:
newQueryPlan in interface LoadBalancingPolicy
Parameters:
query - the query for which to build the plan.
Returns:
a new query plan, i.e. an iterator indicating which host to try first for querying, which one to use as failover, etc...

onUp

public void onUp(Host host)
Description copied from interface: Host.StateListener
Called when a node is detected up.

Specified by:
onUp in interface Host.StateListener
Parameters:
host - the host that has been detected up.

onDown

public void onDown(Host host)
Description copied from interface: Host.StateListener
Called when a node is detected down.

Specified by:
onDown in interface Host.StateListener
Parameters:
host - the host that has been detected down.

onAdd

public void onAdd(Host host)
Description copied from interface: Host.StateListener
Called when a new node is added to the cluster. The newly added node should be considered up.

Specified by:
onAdd in interface Host.StateListener
Parameters:
host - the host that has been newly added.

onRemove

public void onRemove(Host host)
Description copied from interface: Host.StateListener
Called when a node is removed from the cluster.

Specified by:
onRemove in interface Host.StateListener
Parameters:
host - the removed host.


Copyright © 2013. All Rights Reserved.