HBASE-20214 Review of RegionLocationFinder Class

This commit is contained in:
BELUGA BEHR 2018-03-16 16:09:40 -07:00 committed by tedyu
parent bedf849d83
commit 104f58701e
1 changed files with 32 additions and 55 deletions

View File

@ -21,12 +21,18 @@ import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;
import java.util.Collections;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable; import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutionException;
import java.util.concurrent.Executors; import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.collections4.MultiValuedMap;
import org.apache.commons.collections4.multimap.ArrayListValuedHashMap;
import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.ClusterMetrics; import org.apache.hadoop.hbase.ClusterMetrics;
import org.apache.hadoop.hbase.HDFSBlocksDistribution; import org.apache.hadoop.hbase.HDFSBlocksDistribution;
@ -41,10 +47,10 @@ import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
import org.apache.yetus.audience.InterfaceAudience; import org.apache.yetus.audience.InterfaceAudience;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.apache.hbase.thirdparty.com.google.common.cache.CacheBuilder; import org.apache.hbase.thirdparty.com.google.common.cache.CacheBuilder;
import org.apache.hbase.thirdparty.com.google.common.cache.CacheLoader; import org.apache.hbase.thirdparty.com.google.common.cache.CacheLoader;
import org.apache.hbase.thirdparty.com.google.common.cache.LoadingCache; import org.apache.hbase.thirdparty.com.google.common.cache.LoadingCache;
import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.Futures; import org.apache.hbase.thirdparty.com.google.common.util.concurrent.Futures;
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ListenableFuture; import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ListenableFuture;
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ListeningExecutorService; import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ListeningExecutorService;
@ -132,7 +138,6 @@ class RegionLocationFinder {
// Only count the refresh if it includes user tables ( eg more than meta and namespace ). // Only count the refresh if it includes user tables ( eg more than meta and namespace ).
lastFullRefresh = scheduleFullRefresh()?currentTime:lastFullRefresh; lastFullRefresh = scheduleFullRefresh()?currentTime:lastFullRefresh;
} }
} }
/** /**
@ -171,14 +176,10 @@ class RegionLocationFinder {
*/ */
protected List<ServerName> getTopBlockLocations(RegionInfo region, String currentHost) { protected List<ServerName> getTopBlockLocations(RegionInfo region, String currentHost) {
HDFSBlocksDistribution blocksDistribution = getBlockDistribution(region); HDFSBlocksDistribution blocksDistribution = getBlockDistribution(region);
List<String> topHosts = new ArrayList<>(); List<String> topHosts = blocksDistribution.getTopHosts();
for (String host : blocksDistribution.getTopHosts()) { int toIndex = topHosts.indexOf(currentHost);
if (host.equals(currentHost)) { List<String> subTopHosts = (toIndex < 0) ? topHosts : topHosts.subList(0, toIndex);
break; return mapHostNameToServerName(subTopHosts);
}
topHosts.add(host);
}
return mapHostNameToServerName(topHosts);
} }
/** /**
@ -211,7 +212,7 @@ class RegionLocationFinder {
* *
* @param tableName the table name * @param tableName the table name
* @return TableDescriptor * @return TableDescriptor
* @throws IOException * @throws IOException if table descriptor cannot be loaded
*/ */
protected TableDescriptor getTableDescriptor(TableName tableName) throws IOException { protected TableDescriptor getTableDescriptor(TableName tableName) throws IOException {
TableDescriptor tableDescriptor = null; TableDescriptor tableDescriptor = null;
@ -220,8 +221,8 @@ class RegionLocationFinder {
tableDescriptor = this.services.getTableDescriptors().get(tableName); tableDescriptor = this.services.getTableDescriptors().get(tableName);
} }
} catch (FileNotFoundException fnfe) { } catch (FileNotFoundException fnfe) {
LOG.debug("FileNotFoundException during getTableDescriptors." + " Current table name = " LOG.debug("FileNotFoundException during getTableDescriptors. Current table name = {}",
+ tableName, fnfe); tableName, fnfe);
} }
return tableDescriptor; return tableDescriptor;
@ -235,60 +236,36 @@ class RegionLocationFinder {
* @return ServerName list * @return ServerName list
*/ */
protected List<ServerName> mapHostNameToServerName(List<String> hosts) { protected List<ServerName> mapHostNameToServerName(List<String> hosts) {
if (hosts == null || status == null) {
if (hosts == null) { if (hosts == null) {
LOG.warn("RegionLocationFinder top hosts is null"); LOG.warn("RegionLocationFinder top hosts is null");
return Collections.emptyList();
} }
return Lists.newArrayList(); if (status == null) {
return Collections.emptyList();
} }
List<ServerName> topServerNames = new ArrayList<>(); List<ServerName> topServerNames = new ArrayList<>();
Collection<ServerName> regionServers = status.getLiveServerMetrics().keySet(); Collection<ServerName> regionServers = status.getLiveServerMetrics().keySet();
// create a mapping from hostname to ServerName for fast lookup // create a mapping from hostname to ServerName for fast lookup
HashMap<String, List<ServerName>> hostToServerName = new HashMap<>(); MultiValuedMap<String, ServerName> hostToServerName = new ArrayListValuedHashMap<>();
for (ServerName sn : regionServers) { for (ServerName sn : regionServers) {
String host = sn.getHostname(); String hostName = sn.getHostname();
if (!hostToServerName.containsKey(host)) { hostToServerName.put(hostName, sn);
hostToServerName.put(host, new ArrayList<>());
}
hostToServerName.get(host).add(sn);
} }
for (String host : hosts) { for (String host : hosts) {
if (!hostToServerName.containsKey(host)) {
continue;
}
for (ServerName sn : hostToServerName.get(host)) { for (ServerName sn : hostToServerName.get(host)) {
// it is possible that HDFS is up ( thus host is valid ), // it is possible that HDFS is up ( thus host is valid ),
// but RS is down ( thus sn is null ) // but RS is down ( thus sn is null )
if (sn != null) { CollectionUtils.addIgnoreNull(topServerNames, sn);
topServerNames.add(sn);
}
} }
} }
return topServerNames; return topServerNames;
} }
public HDFSBlocksDistribution getBlockDistribution(RegionInfo hri) { public HDFSBlocksDistribution getBlockDistribution(RegionInfo hri) {
HDFSBlocksDistribution blockDistbn = null; return cache.getUnchecked(hri);
try {
if (cache.asMap().containsKey(hri)) {
blockDistbn = cache.get(hri);
return blockDistbn;
} else {
LOG.debug("HDFSBlocksDistribution not found in cache for region "
+ hri.getRegionNameAsString());
blockDistbn = internalGetTopBlockLocation(hri);
cache.put(hri, blockDistbn);
return blockDistbn;
}
} catch (ExecutionException e) {
LOG.warn("Error while fetching cache entry ", e);
blockDistbn = internalGetTopBlockLocation(hri);
cache.put(hri, blockDistbn);
return blockDistbn;
}
} }
private ListenableFuture<HDFSBlocksDistribution> asyncGetBlockDistribution( private ListenableFuture<HDFSBlocksDistribution> asyncGetBlockDistribution(
@ -301,24 +278,24 @@ class RegionLocationFinder {
} }
public void refreshAndWait(Collection<RegionInfo> hris) { public void refreshAndWait(Collection<RegionInfo> hris) {
ArrayList<ListenableFuture<HDFSBlocksDistribution>> regionLocationFutures = new ArrayList<>(hris.size()); Map<RegionInfo, ListenableFuture<HDFSBlocksDistribution>> regionLocationFutures =
new HashMap<>(hris.size() * 2);
for (RegionInfo hregionInfo : hris) { for (RegionInfo hregionInfo : hris) {
regionLocationFutures.add(asyncGetBlockDistribution(hregionInfo)); regionLocationFutures.put(hregionInfo, asyncGetBlockDistribution(hregionInfo));
} }
int index = 0;
for (RegionInfo hregionInfo : hris) { for (RegionInfo hregionInfo : hris) {
ListenableFuture<HDFSBlocksDistribution> future = regionLocationFutures ListenableFuture<HDFSBlocksDistribution> future = regionLocationFutures
.get(index); .get(hregionInfo);
try { try {
cache.put(hregionInfo, future.get()); cache.put(hregionInfo, future.get());
} catch (InterruptedException ite) { } catch (InterruptedException ite) {
Thread.currentThread().interrupt(); Thread.currentThread().interrupt();
} catch (ExecutionException ee) { } catch (ExecutionException ee) {
LOG.debug( LOG.debug(
"ExecutionException during HDFSBlocksDistribution computation. for region = " "ExecutionException during HDFSBlocksDistribution computation. for region = {}",
+ hregionInfo.getEncodedName(), ee); hregionInfo.getEncodedName(), ee);
} }
index++;
} }
} }