MAPREDUCE-3215. Reneabled and fixed bugs in the failing test TestNoJobSetupCleanup. Contributed by Hitesh Shah.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1197101 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Vinod Kumar Vavilapalli 2011-11-03 13:19:29 +00:00
parent aa297b188e
commit dae055bb70
2 changed files with 9 additions and 7 deletions

View File

@ -69,6 +69,9 @@ Release 0.23.1 - Unreleased
MAPREDUCE-3221. Reneabled the previously ignored test in TestSubmitJob
and fixed bugs in it. (Devaraj K via vinodkv)
MAPREDUCE-3215. Reneabled and fixed bugs in the failing test
TestNoJobSetupCleanup. (Hitesh Shah via vinodkv)
Release 0.23.0 - 2011-11-01
INCOMPATIBLE CHANGES

View File

@ -56,16 +56,15 @@ private Job submitAndValidateJob(Configuration conf, int numMaps, int numReds)
FileSystem fs = FileSystem.get(conf);
assertTrue("Job output directory doesn't exit!", fs.exists(outDir));
// TODO
/*
// Disabling check for now to address builds until we fix underlying issue
// output still in temporary as job commit only seems
// to be called during job cleanup
FileStatus[] list = fs.listStatus(outDir, new OutputFilter());
// job commit done only in cleanup
// therefore output should still be in temp location
String tempWorkingPathStr = outDir + Path.SEPARATOR + "_temporary"
+ Path.SEPARATOR + "0";
Path tempWorkingPath = new Path(tempWorkingPathStr);
FileStatus[] list = fs.listStatus(tempWorkingPath, new OutputFilter());
int numPartFiles = numReds == 0 ? numMaps : numReds;
assertTrue("Number of part-files is " + list.length + " and not "
+ numPartFiles, list.length == numPartFiles);
*/
return job;
}