[
https://issues.apache.org/jira/browse/HBASE-11335?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14048330#comment-14048330
]
Hudson commented on HBASE-11335:
--------------------------------
FAILURE: Integrated in hbase-0.96-hadoop2 #280 (See
[https://builds.apache.org/job/hbase-0.96-hadoop2/280/])
HBASE-11335 Fix the TABLE_DIR param in TableSnapshotInputFormat (deepankar)
(enis: rev c6abf4f0a93a447bc8d0b4c926f7bba523069cad)
*
hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableSnapshotInputFormat.java
> Fix the TABLE_DIR param in TableSnapshotInputFormat
> ---------------------------------------------------
>
> Key: HBASE-11335
> URL: https://issues.apache.org/jira/browse/HBASE-11335
> Project: HBase
> Issue Type: Bug
> Components: mapreduce, snapshots
> Affects Versions: 0.96.2, 0.98.3
> Reporter: deepankar
> Fix For: 0.99.0, 0.96.3, 0.98.4
>
> Attachments: HBASE_11335-0.96-v1.patch, HBASE_11335-trunk-v1.patch
>
>
> In class *TableSnapshotInputFormat* or *TableSnapshotInputFormatImpl*
> in the function
> {code}
> public static void setInput(Job job, String snapshotName, Path restoreDir)
> throws IOException {
> {code}
> we are setting restoreDir (temporary root) to tableDir
> {code}
> conf.set(TABLE_DIR_KEY, restoreDir.toString());
> {code}
> The above parameter is used to get the InputSplits, especially for
> calculating favorable hosts in the function
> {code}
> Path tableDir = new Path(conf.get(TABLE_DIR_KEY));
> List<String> hosts = getBestLocations(conf,
> HRegion.computeHDFSBlocksDistribution(conf, htd, hri, tableDir));
> {code}
> This will lead to returning a empty *HDFSBlocksDistribution*, as there is
> will be no directory with name as the region name from hri in the restored
> root directory, which will lead to scheduling of non local tasks.
> The change is simple in the sense, is to call the
> {code}FSUtils.getTableDir(rootDir, tableDesc.getTableName()) {code}
> in the getSplits function
> more discussion in the comments below
> https://issues.apache.org/jira/browse/HBASE-8369?focusedCommentId=14012085&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-14012085
--
This message was sent by Atlassian JIRA
(v6.2#6252)