HBASE-16114 Get regionLocation of required regions only for MR jobs (Thiruvel Thirumoolan)
This commit is contained in:
parent
b2f9f131b2
commit
5bc0655529
|
@ -276,20 +276,6 @@ extends InputFormat<ImmutableBytesWritable, Result> {
|
||||||
if ( !includeRegionInSplit(keys.getFirst()[i], keys.getSecond()[i])) {
|
if ( !includeRegionInSplit(keys.getFirst()[i], keys.getSecond()[i])) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
HRegionLocation location = regionLocator.getRegionLocation(keys.getFirst()[i], false);
|
|
||||||
// The below InetSocketAddress creation does a name resolution.
|
|
||||||
InetSocketAddress isa = new InetSocketAddress(location.getHostname(), location.getPort());
|
|
||||||
if (isa.isUnresolved()) {
|
|
||||||
LOG.warn("Failed resolve " + isa);
|
|
||||||
}
|
|
||||||
InetAddress regionAddress = isa.getAddress();
|
|
||||||
String regionLocation;
|
|
||||||
try {
|
|
||||||
regionLocation = reverseDNS(regionAddress);
|
|
||||||
} catch (NamingException e) {
|
|
||||||
LOG.warn("Cannot resolve the host name for " + regionAddress + " because of " + e);
|
|
||||||
regionLocation = location.getHostname();
|
|
||||||
}
|
|
||||||
|
|
||||||
byte[] startRow = scan.getStartRow();
|
byte[] startRow = scan.getStartRow();
|
||||||
byte[] stopRow = scan.getStopRow();
|
byte[] stopRow = scan.getStopRow();
|
||||||
|
@ -306,6 +292,21 @@ extends InputFormat<ImmutableBytesWritable, Result> {
|
||||||
keys.getSecond()[i].length > 0 ?
|
keys.getSecond()[i].length > 0 ?
|
||||||
keys.getSecond()[i] : stopRow;
|
keys.getSecond()[i] : stopRow;
|
||||||
|
|
||||||
|
HRegionLocation location = regionLocator.getRegionLocation(keys.getFirst()[i], false);
|
||||||
|
// The below InetSocketAddress creation does a name resolution.
|
||||||
|
InetSocketAddress isa = new InetSocketAddress(location.getHostname(), location.getPort());
|
||||||
|
if (isa.isUnresolved()) {
|
||||||
|
LOG.warn("Failed resolve " + isa);
|
||||||
|
}
|
||||||
|
InetAddress regionAddress = isa.getAddress();
|
||||||
|
String regionLocation;
|
||||||
|
try {
|
||||||
|
regionLocation = reverseDNS(regionAddress);
|
||||||
|
} catch (NamingException e) {
|
||||||
|
LOG.warn("Cannot resolve the host name for " + regionAddress + " because of " + e);
|
||||||
|
regionLocation = location.getHostname();
|
||||||
|
}
|
||||||
|
|
||||||
byte[] regionName = location.getRegionInfo().getRegionName();
|
byte[] regionName = location.getRegionInfo().getRegionName();
|
||||||
String encodedRegionName = location.getRegionInfo().getEncodedName();
|
String encodedRegionName = location.getRegionInfo().getEncodedName();
|
||||||
long regionSize = sizeCalculator.getRegionSize(regionName);
|
long regionSize = sizeCalculator.getRegionSize(regionName);
|
||||||
|
|
Loading…
Reference in New Issue