MAPREDUCE-4380. Empty Userlogs directory is getting created under logs directory (Devaraj K via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1362612 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8e576570a9
commit
603418c173
|
@ -254,6 +254,9 @@ Release 2.1.0-alpha - Unreleased
|
||||||
MAPREDUCE-4395. Possible NPE at ClientDistributedCacheManager
|
MAPREDUCE-4395. Possible NPE at ClientDistributedCacheManager
|
||||||
#determineTimestamps (Bhallamudi via bobby)
|
#determineTimestamps (Bhallamudi via bobby)
|
||||||
|
|
||||||
|
MAPREDUCE-4380. Empty Userlogs directory is getting created under logs
|
||||||
|
directory (Devaraj K via bobby)
|
||||||
|
|
||||||
Release 2.0.0-alpha - 05-23-2012
|
Release 2.0.0-alpha - 05-23-2012
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -66,14 +66,6 @@ public class TaskLog {
|
||||||
|
|
||||||
// localFS is set in (and used by) writeToIndexFile()
|
// localFS is set in (and used by) writeToIndexFile()
|
||||||
static LocalFileSystem localFS = null;
|
static LocalFileSystem localFS = null;
|
||||||
static {
|
|
||||||
if (!LOG_DIR.exists()) {
|
|
||||||
boolean b = LOG_DIR.mkdirs();
|
|
||||||
if (!b) {
|
|
||||||
LOG.debug("mkdirs failed. Ignoring.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getMRv2LogDir() {
|
public static String getMRv2LogDir() {
|
||||||
return System.getProperty(MRJobConfig.TASK_LOG_DIR);
|
return System.getProperty(MRJobConfig.TASK_LOG_DIR);
|
||||||
|
@ -638,6 +630,12 @@ public class TaskLog {
|
||||||
* @return base log directory
|
* @return base log directory
|
||||||
*/
|
*/
|
||||||
static File getUserLogDir() {
|
static File getUserLogDir() {
|
||||||
|
if (!LOG_DIR.exists()) {
|
||||||
|
boolean b = LOG_DIR.mkdirs();
|
||||||
|
if (!b) {
|
||||||
|
LOG.debug("mkdirs failed. Ignoring.");
|
||||||
|
}
|
||||||
|
}
|
||||||
return LOG_DIR;
|
return LOG_DIR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue