MAPREDUCE-6637. Testcase Failure : TestFileInputFormat.testSplitLocationInfo. Contributed by Brahma Reddy Battula.
(cherry picked from commit 37577852ba
)
This commit is contained in:
parent
e38c2ef6c5
commit
7f6737951a
|
@ -443,6 +443,9 @@ Release 2.7.3 - UNRELEASED
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
|
|
||||||
|
MAPREDUCE-6637. Testcase Failure : TestFileInputFormat.testSplitLocationInfo.
|
||||||
|
(Brahma Reddy Battula via wang)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
|
@ -243,7 +243,7 @@ public class TestFileInputFormat {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockLocation[] getFileBlockLocations(Path p, long start, long len)
|
public BlockLocation[] getFileBlockLocations(FileStatus file, long start, long len)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
return new BlockLocation[] {
|
return new BlockLocation[] {
|
||||||
new BlockLocation(new String[] { "localhost:50010", "otherhost:50010" },
|
new BlockLocation(new String[] { "localhost:50010", "otherhost:50010" },
|
||||||
|
|
|
@ -422,7 +422,7 @@ public class TestFileInputFormat {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockLocation[] getFileBlockLocations(Path p, long start, long len)
|
public BlockLocation[] getFileBlockLocations(FileStatus file, long start, long len)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
return new BlockLocation[] {
|
return new BlockLocation[] {
|
||||||
new BlockLocation(new String[] { "localhost:50010", "otherhost:50010" },
|
new BlockLocation(new String[] { "localhost:50010", "otherhost:50010" },
|
||||||
|
|
Loading…
Reference in New Issue