* Sets the number of replicas per region.
* @param regionReplication the replication factor per region
*/
public HTableDescriptor setRegionReplication(int regionReplication) {
setValue(REGION_REPLICATION_KEY,
new Bytes(Bytes.toBytes(Integer.toString(regionReplication))));
return this;
}