MAPREDUCE-6396. TestPipeApplication fails by NullPointerException. Contributed by Brahma Reddy Battula.
This commit is contained in:
parent
75a2560e51
commit
85cc644f92
@ -197,6 +197,9 @@ Trunk (Unreleased)
|
|||||||
MAPREDUCE-6343. JobConf.parseMaximumHeapSizeMB() fails to parse value
|
MAPREDUCE-6343. JobConf.parseMaximumHeapSizeMB() fails to parse value
|
||||||
greater than 2GB expressed in bytes. (Hao Xia via kasha)
|
greater than 2GB expressed in bytes. (Hao Xia via kasha)
|
||||||
|
|
||||||
|
MAPREDUCE-6396. TestPipeApplication fails by NullPointerException.
|
||||||
|
(Brahma Reddy Battula via aajisaka)
|
||||||
|
|
||||||
BREAKDOWN OF MAPREDUCE-2841 (NATIVE TASK) SUBTASKS
|
BREAKDOWN OF MAPREDUCE-2841 (NATIVE TASK) SUBTASKS
|
||||||
|
|
||||||
MAPREDUCE-5985. native-task: Fix build on macosx. Contributed by
|
MAPREDUCE-5985. native-task: Fix build on macosx. Contributed by
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
|
|
||||||
import org.apache.hadoop.fs.FileSystem;
|
import org.apache.hadoop.fs.FileSystem;
|
||||||
import org.apache.hadoop.fs.FileUtil;
|
import org.apache.hadoop.fs.FileUtil;
|
||||||
|
import org.apache.hadoop.fs.FsConstants;
|
||||||
import org.apache.hadoop.fs.Path;
|
import org.apache.hadoop.fs.Path;
|
||||||
import org.apache.hadoop.fs.RawLocalFileSystem;
|
import org.apache.hadoop.fs.RawLocalFileSystem;
|
||||||
import org.apache.hadoop.io.BooleanWritable;
|
import org.apache.hadoop.io.BooleanWritable;
|
||||||
@ -94,7 +95,7 @@ public void testRunner() throws Exception {
|
|||||||
CombineOutputCollector<IntWritable, Text> output = new CombineOutputCollector<IntWritable, Text>(
|
CombineOutputCollector<IntWritable, Text> output = new CombineOutputCollector<IntWritable, Text>(
|
||||||
new Counters.Counter(), new Progress());
|
new Counters.Counter(), new Progress());
|
||||||
FileSystem fs = new RawLocalFileSystem();
|
FileSystem fs = new RawLocalFileSystem();
|
||||||
fs.setConf(conf);
|
fs.initialize(FsConstants.LOCAL_FS_URI, conf);
|
||||||
Writer<IntWritable, Text> wr = new Writer<IntWritable, Text>(conf, fs.create(
|
Writer<IntWritable, Text> wr = new Writer<IntWritable, Text>(conf, fs.create(
|
||||||
new Path(workSpace + File.separator + "outfile")), IntWritable.class,
|
new Path(workSpace + File.separator + "outfile")), IntWritable.class,
|
||||||
Text.class, null, null, true);
|
Text.class, null, null, true);
|
||||||
@ -176,7 +177,7 @@ public void testApplication() throws Throwable {
|
|||||||
FakeCollector output = new FakeCollector(new Counters.Counter(),
|
FakeCollector output = new FakeCollector(new Counters.Counter(),
|
||||||
new Progress());
|
new Progress());
|
||||||
FileSystem fs = new RawLocalFileSystem();
|
FileSystem fs = new RawLocalFileSystem();
|
||||||
fs.setConf(conf);
|
fs.initialize(FsConstants.LOCAL_FS_URI, conf);
|
||||||
Writer<IntWritable, Text> wr = new Writer<IntWritable, Text>(conf, fs.create(
|
Writer<IntWritable, Text> wr = new Writer<IntWritable, Text>(conf, fs.create(
|
||||||
new Path(workSpace.getAbsolutePath() + File.separator + "outfile")),
|
new Path(workSpace.getAbsolutePath() + File.separator + "outfile")),
|
||||||
IntWritable.class, Text.class, null, null, true);
|
IntWritable.class, Text.class, null, null, true);
|
||||||
|
Loading…
Reference in New Issue
Block a user