Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for 
change notification.

The "RandomPartitioner" page has been changed by SarahBaker:
http://wiki.apache.org/cassandra/RandomPartitioner?action=diff&rev1=1&rev2=2

  Describe RandomPartitioner here.
  
+ Random Partitioner (RP) is a scheme to organize how to place the keys in the 
cassandra cluster node ring.  This in turn impacts how information is spread 
across the cluster and impacts range query efficiency.  Random partitioning 
will spread keys fairly evenly across the cluster.
+ 
+ The scheme is to use a BigInteger token and MD5 hash to determine placement.
+ 
+ This is the default partitioner 
+ Partitioning cannot change without serious impact to data, and so it does not 
change after setting with the initial 
+ configuration.
+ 
+ There are other partitions schemes such as Order Preserving Partitioning 
(OPP), Collating Order Preserving Partitioning and Byte-Ordered Partitioning.
+ 

Reply via email to