Home
last modified time | relevance | path

Searched refs:otherRegionCount (Results 1 – 1 of 1) sorted by relevance

/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/
H A DStochasticLoadBalancer.java497 int otherRegionCount = cluster.getNumRegions(otherServer); in pickRandomRegions() local
500 double thisChance = (thisRegionCount > otherRegionCount) ? 0 : 0.5; in pickRandomRegions()
501 double otherChance = (thisRegionCount <= otherRegionCount) ? 0 : 0.5; in pickRandomRegions()