svn merge -c 1379584 FIXES: MAPREDUCE-4612. job summary file permissions not set when its created (tgraves via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1379585 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0856882d2a
commit
b2382b0cd4
|
@ -185,6 +185,9 @@ Release 2.1.0-alpha - Unreleased
|
|||
MAPREDUCE-4380. Empty Userlogs directory is getting created under logs
|
||||
directory (Devaraj K via bobby)
|
||||
|
||||
MAPREDUCE-4612. job summary file permissions not set when its created
|
||||
(tgraves via bobby)
|
||||
|
||||
Release 2.0.0-alpha - 05-23-2012
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -661,6 +661,8 @@ public class JobHistoryEventHandler extends AbstractService
|
|||
summaryFileOut = doneDirFS.create(qualifiedSummaryDoneFile, true);
|
||||
summaryFileOut.writeUTF(mi.getJobSummary().getJobSummaryString());
|
||||
summaryFileOut.close();
|
||||
doneDirFS.setPermission(qualifiedSummaryDoneFile, new FsPermission(
|
||||
JobHistoryUtils.HISTORY_INTERMEDIATE_FILE_PERMISSIONS));
|
||||
} catch (IOException e) {
|
||||
LOG.info("Unable to write out JobSummaryInfo to ["
|
||||
+ qualifiedSummaryDoneFile + "]", e);
|
||||
|
@ -894,7 +896,7 @@ public class JobHistoryEventHandler extends AbstractService
|
|||
|
||||
stagingDirFS.delete(fromPath, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
boolean pathExists(FileSystem fileSys, Path path) throws IOException {
|
||||
return fileSys.exists(path);
|
||||
|
|
Loading…
Reference in New Issue