MAPREDUCE-6052. Supported overriding the default container-log4j.properties file per job. Contributed by Junping Du.
This commit is contained in:
parent
260ab6d5f4
commit
ed63b11646
|
@ -283,6 +283,9 @@ Release 2.6.0 - UNRELEASED
|
||||||
MAPREDUCE-6018. Added an MR specific config to enable emitting job history
|
MAPREDUCE-6018. Added an MR specific config to enable emitting job history
|
||||||
data to the timeline server. (Robert Kanter via zjshen)
|
data to the timeline server. (Robert Kanter via zjshen)
|
||||||
|
|
||||||
|
MAPREDUCE-6052. Supported overriding the default container-log4j.properties
|
||||||
|
file per job. (Junping Du via zjshen)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
|
@ -25,6 +25,7 @@ import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
||||||
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.fs.Path;
|
import org.apache.hadoop.fs.Path;
|
||||||
import org.apache.hadoop.mapred.TaskLog.LogName;
|
import org.apache.hadoop.mapred.TaskLog.LogName;
|
||||||
import org.apache.hadoop.mapreduce.ID;
|
import org.apache.hadoop.mapreduce.ID;
|
||||||
|
@ -148,11 +149,11 @@ public class MapReduceChildJVM {
|
||||||
|
|
||||||
private static void setupLog4jProperties(Task task,
|
private static void setupLog4jProperties(Task task,
|
||||||
Vector<String> vargs,
|
Vector<String> vargs,
|
||||||
long logSize) {
|
long logSize, Configuration conf) {
|
||||||
String logLevel = getChildLogLevel(task.conf, task.isMapTask());
|
String logLevel = getChildLogLevel(task.conf, task.isMapTask());
|
||||||
int numBackups = task.conf.getInt(MRJobConfig.TASK_LOG_BACKUPS,
|
int numBackups = task.conf.getInt(MRJobConfig.TASK_LOG_BACKUPS,
|
||||||
MRJobConfig.DEFAULT_TASK_LOG_BACKUPS);
|
MRJobConfig.DEFAULT_TASK_LOG_BACKUPS);
|
||||||
MRApps.addLog4jSystemProperties(logLevel, logSize, numBackups, vargs);
|
MRApps.addLog4jSystemProperties(logLevel, logSize, numBackups, vargs, conf);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static List<String> getVMCommand(
|
public static List<String> getVMCommand(
|
||||||
|
@ -208,7 +209,7 @@ public class MapReduceChildJVM {
|
||||||
|
|
||||||
// Setup the log4j prop
|
// Setup the log4j prop
|
||||||
long logSize = TaskLog.getTaskLogLength(conf);
|
long logSize = TaskLog.getTaskLogLength(conf);
|
||||||
setupLog4jProperties(task, vargs, logSize);
|
setupLog4jProperties(task, vargs, logSize, conf);
|
||||||
|
|
||||||
if (conf.getProfileEnabled()) {
|
if (conf.getProfileEnabled()) {
|
||||||
if (conf.getProfileTaskRange(task.isMapTask()
|
if (conf.getProfileTaskRange(task.isMapTask()
|
||||||
|
|
|
@ -78,6 +78,36 @@ public class TestMapReduceChildJVM {
|
||||||
Assert.assertEquals("", app.cmdEnvironment.get("HADOOP_CLIENT_OPTS"));
|
Assert.assertEquals("", app.cmdEnvironment.get("HADOOP_CLIENT_OPTS"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test (timeout = 30000)
|
||||||
|
public void testCommandLineWithLog4JConifg() throws Exception {
|
||||||
|
|
||||||
|
MyMRApp app = new MyMRApp(1, 0, true, this.getClass().getName(), true);
|
||||||
|
Configuration conf = new Configuration();
|
||||||
|
conf.setBoolean(MRConfig.MAPREDUCE_APP_SUBMISSION_CROSS_PLATFORM, true);
|
||||||
|
String testLogPropertieFile = "test-log4j.properties";
|
||||||
|
String testLogPropertiePath = "../"+"test-log4j.properties";
|
||||||
|
conf.set(MRJobConfig.MAPREDUCE_JOB_LOG4J_PROPERTIES_FILE, testLogPropertiePath);
|
||||||
|
Job job = app.submit(conf);
|
||||||
|
app.waitForState(job, JobState.SUCCEEDED);
|
||||||
|
app.verifyCompleted();
|
||||||
|
|
||||||
|
Assert.assertEquals(
|
||||||
|
"[" + MRApps.crossPlatformify("JAVA_HOME") + "/bin/java" +
|
||||||
|
" -Djava.net.preferIPv4Stack=true" +
|
||||||
|
" -Dhadoop.metrics.log.level=WARN" +
|
||||||
|
" -Xmx200m -Djava.io.tmpdir=" + MRApps.crossPlatformify("PWD") + "/tmp" +
|
||||||
|
" -Dlog4j.configuration=" + testLogPropertieFile +
|
||||||
|
" -Dyarn.app.container.log.dir=<LOG_DIR>" +
|
||||||
|
" -Dyarn.app.container.log.filesize=0" +
|
||||||
|
" -Dhadoop.root.logger=INFO,CLA" +
|
||||||
|
" org.apache.hadoop.mapred.YarnChild 127.0.0.1" +
|
||||||
|
" 54321" +
|
||||||
|
" attempt_0_0000_m_000000_0" +
|
||||||
|
" 0" +
|
||||||
|
" 1><LOG_DIR>/stdout" +
|
||||||
|
" 2><LOG_DIR>/stderr ]", app.myCommandLine);
|
||||||
|
}
|
||||||
|
|
||||||
private static final class MyMRApp extends MRApp {
|
private static final class MyMRApp extends MRApp {
|
||||||
|
|
||||||
private String myCommandLine;
|
private String myCommandLine;
|
||||||
|
|
|
@ -599,10 +599,26 @@ public class MRApps extends Apps {
|
||||||
* @param logSize See {@link ContainerLogAppender#setTotalLogFileSize(long)}
|
* @param logSize See {@link ContainerLogAppender#setTotalLogFileSize(long)}
|
||||||
* @param numBackups See {@link RollingFileAppender#setMaxBackupIndex(int)}
|
* @param numBackups See {@link RollingFileAppender#setMaxBackupIndex(int)}
|
||||||
* @param vargs the argument list to append to
|
* @param vargs the argument list to append to
|
||||||
|
* @param conf configuration of MR job
|
||||||
*/
|
*/
|
||||||
public static void addLog4jSystemProperties(
|
public static void addLog4jSystemProperties(
|
||||||
String logLevel, long logSize, int numBackups, List<String> vargs) {
|
String logLevel, long logSize, int numBackups, List<String> vargs,
|
||||||
|
Configuration conf) {
|
||||||
|
String log4jPropertyFile =
|
||||||
|
conf.get(MRJobConfig.MAPREDUCE_JOB_LOG4J_PROPERTIES_FILE, "");
|
||||||
|
if (log4jPropertyFile.isEmpty()) {
|
||||||
vargs.add("-Dlog4j.configuration=container-log4j.properties");
|
vargs.add("-Dlog4j.configuration=container-log4j.properties");
|
||||||
|
} else {
|
||||||
|
URI log4jURI = null;
|
||||||
|
try {
|
||||||
|
log4jURI = new URI(log4jPropertyFile);
|
||||||
|
} catch (URISyntaxException e) {
|
||||||
|
throw new IllegalArgumentException(e);
|
||||||
|
}
|
||||||
|
Path log4jPath = new Path(log4jURI);
|
||||||
|
vargs.add("-Dlog4j.configuration="+log4jPath.getName());
|
||||||
|
}
|
||||||
|
|
||||||
vargs.add("-D" + YarnConfiguration.YARN_APP_CONTAINER_LOG_DIR + "=" +
|
vargs.add("-D" + YarnConfiguration.YARN_APP_CONTAINER_LOG_DIR + "=" +
|
||||||
ApplicationConstants.LOG_DIR_EXPANSION_VAR);
|
ApplicationConstants.LOG_DIR_EXPANSION_VAR);
|
||||||
vargs.add(
|
vargs.add(
|
||||||
|
|
|
@ -75,6 +75,14 @@ public class JobSubmissionFiles {
|
||||||
public static Path getJobDistCacheFiles(Path jobSubmitDir) {
|
public static Path getJobDistCacheFiles(Path jobSubmitDir) {
|
||||||
return new Path(jobSubmitDir, "files");
|
return new Path(jobSubmitDir, "files");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the job distributed cache path for log4j properties.
|
||||||
|
* @param jobSubmitDir
|
||||||
|
*/
|
||||||
|
public static Path getJobLog4jFile(Path jobSubmitDir) {
|
||||||
|
return new Path(jobSubmitDir, "log4j");
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Get the job distributed cache archives path.
|
* Get the job distributed cache archives path.
|
||||||
* @param jobSubmitDir
|
* @param jobSubmitDir
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
package org.apache.hadoop.mapreduce;
|
package org.apache.hadoop.mapreduce;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
@ -263,14 +264,101 @@ class JobSubmitter {
|
||||||
"See Job or Job#setJar(String).");
|
"See Job or Job#setJar(String).");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
addLog4jToDistributedCache(job, submitJobDir);
|
||||||
|
|
||||||
// set the timestamps of the archives and files
|
// set the timestamps of the archives and files
|
||||||
// set the public/private visibility of the archives and files
|
// set the public/private visibility of the archives and files
|
||||||
ClientDistributedCacheManager.determineTimestampsAndCacheVisibilities(conf);
|
ClientDistributedCacheManager.determineTimestampsAndCacheVisibilities(conf);
|
||||||
// get DelegationToken for each cached file
|
// get DelegationToken for cached file
|
||||||
ClientDistributedCacheManager.getDelegationTokens(conf, job
|
ClientDistributedCacheManager.getDelegationTokens(conf, job
|
||||||
.getCredentials());
|
.getCredentials());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// copy user specified log4j.property file in local
|
||||||
|
// to HDFS with putting on distributed cache and adding its parent directory
|
||||||
|
// to classpath.
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
|
private void copyLog4jPropertyFile(Job job, Path submitJobDir,
|
||||||
|
short replication) throws IOException {
|
||||||
|
Configuration conf = job.getConfiguration();
|
||||||
|
|
||||||
|
String file = validateFilePath(
|
||||||
|
conf.get(MRJobConfig.MAPREDUCE_JOB_LOG4J_PROPERTIES_FILE), conf);
|
||||||
|
LOG.debug("default FileSystem: " + jtFs.getUri());
|
||||||
|
FsPermission mapredSysPerms =
|
||||||
|
new FsPermission(JobSubmissionFiles.JOB_DIR_PERMISSION);
|
||||||
|
if (!jtFs.exists(submitJobDir)) {
|
||||||
|
throw new IOException("Cannot find job submission directory! "
|
||||||
|
+ "It should just be created, so something wrong here.");
|
||||||
|
}
|
||||||
|
|
||||||
|
Path fileDir = JobSubmissionFiles.getJobLog4jFile(submitJobDir);
|
||||||
|
|
||||||
|
// first copy local log4j.properties file to HDFS under submitJobDir
|
||||||
|
if (file != null) {
|
||||||
|
FileSystem.mkdirs(jtFs, fileDir, mapredSysPerms);
|
||||||
|
URI tmpURI = null;
|
||||||
|
try {
|
||||||
|
tmpURI = new URI(file);
|
||||||
|
} catch (URISyntaxException e) {
|
||||||
|
throw new IllegalArgumentException(e);
|
||||||
|
}
|
||||||
|
Path tmp = new Path(tmpURI);
|
||||||
|
Path newPath = copyRemoteFiles(fileDir, tmp, conf, replication);
|
||||||
|
DistributedCache.addFileToClassPath(new Path(newPath.toUri().getPath()), conf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* takes input as a path string for file and verifies if it exist.
|
||||||
|
* It defaults for file:/// if the files specified do not have a scheme.
|
||||||
|
* it returns the paths uri converted defaulting to file:///.
|
||||||
|
* So an input of /home/user/file1 would return file:///home/user/file1
|
||||||
|
* @param file
|
||||||
|
* @param conf
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private String validateFilePath(String file, Configuration conf)
|
||||||
|
throws IOException {
|
||||||
|
if (file == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
if (file.isEmpty()) {
|
||||||
|
throw new IllegalArgumentException("File name can't be empty string");
|
||||||
|
}
|
||||||
|
String finalPath;
|
||||||
|
URI pathURI;
|
||||||
|
try {
|
||||||
|
pathURI = new URI(file);
|
||||||
|
} catch (URISyntaxException e) {
|
||||||
|
throw new IllegalArgumentException(e);
|
||||||
|
}
|
||||||
|
Path path = new Path(pathURI);
|
||||||
|
FileSystem localFs = FileSystem.getLocal(conf);
|
||||||
|
if (pathURI.getScheme() == null) {
|
||||||
|
//default to the local file system
|
||||||
|
//check if the file exists or not first
|
||||||
|
if (!localFs.exists(path)) {
|
||||||
|
throw new FileNotFoundException("File " + file + " does not exist.");
|
||||||
|
}
|
||||||
|
finalPath = path.makeQualified(localFs.getUri(),
|
||||||
|
localFs.getWorkingDirectory()).toString();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// check if the file exists in this file system
|
||||||
|
// we need to recreate this filesystem object to copy
|
||||||
|
// these files to the file system ResourceManager is running
|
||||||
|
// on.
|
||||||
|
FileSystem fs = path.getFileSystem(conf);
|
||||||
|
if (!fs.exists(path)) {
|
||||||
|
throw new FileNotFoundException("File " + file + " does not exist.");
|
||||||
|
}
|
||||||
|
finalPath = path.makeQualified(fs.getUri(),
|
||||||
|
fs.getWorkingDirectory()).toString();
|
||||||
|
}
|
||||||
|
return finalPath;
|
||||||
|
}
|
||||||
|
|
||||||
private URI getPathURI(Path destPath, String fragment)
|
private URI getPathURI(Path destPath, String fragment)
|
||||||
throws URISyntaxException {
|
throws URISyntaxException {
|
||||||
URI pathURI = destPath.toUri();
|
URI pathURI = destPath.toUri();
|
||||||
|
@ -395,6 +483,10 @@ class JobSubmitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
copyAndConfigureFiles(job, submitJobDir);
|
copyAndConfigureFiles(job, submitJobDir);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Path submitJobFile = JobSubmissionFiles.getJobConfPath(submitJobDir);
|
Path submitJobFile = JobSubmissionFiles.getJobConfPath(submitJobDir);
|
||||||
|
|
||||||
// Create the splits for the job
|
// Create the splits for the job
|
||||||
|
@ -673,4 +765,20 @@ class JobSubmitter {
|
||||||
DistributedCache.addCacheArchive(uri, conf);
|
DistributedCache.addCacheArchive(uri, conf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void addLog4jToDistributedCache(Job job,
|
||||||
|
Path jobSubmitDir) throws IOException {
|
||||||
|
Configuration conf = job.getConfiguration();
|
||||||
|
String log4jPropertyFile =
|
||||||
|
conf.get(MRJobConfig.MAPREDUCE_JOB_LOG4J_PROPERTIES_FILE, "");
|
||||||
|
if (!log4jPropertyFile.isEmpty()) {
|
||||||
|
short replication = (short)conf.getInt(Job.SUBMIT_REPLICATION, 10);
|
||||||
|
copyLog4jPropertyFile(job, jobSubmitDir, replication);
|
||||||
|
|
||||||
|
// Set the working directory
|
||||||
|
if (job.getWorkingDirectory() == null) {
|
||||||
|
job.setWorkingDirectory(jtFs.getWorkingDirectory());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -731,6 +731,9 @@ public interface MRJobConfig {
|
||||||
public static final String MAPREDUCE_APPLICATION_CLASSPATH =
|
public static final String MAPREDUCE_APPLICATION_CLASSPATH =
|
||||||
"mapreduce.application.classpath";
|
"mapreduce.application.classpath";
|
||||||
|
|
||||||
|
public static final String MAPREDUCE_JOB_LOG4J_PROPERTIES_FILE =
|
||||||
|
"mapreduce.job.log4j-properties-file";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Path to MapReduce framework archive
|
* Path to MapReduce framework archive
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -398,7 +398,7 @@ public class YARNRunner implements ClientProtocol {
|
||||||
MRJobConfig.MR_AM_LOG_LEVEL, MRJobConfig.DEFAULT_MR_AM_LOG_LEVEL);
|
MRJobConfig.MR_AM_LOG_LEVEL, MRJobConfig.DEFAULT_MR_AM_LOG_LEVEL);
|
||||||
int numBackups = jobConf.getInt(MRJobConfig.MR_AM_LOG_BACKUPS,
|
int numBackups = jobConf.getInt(MRJobConfig.MR_AM_LOG_BACKUPS,
|
||||||
MRJobConfig.DEFAULT_MR_AM_LOG_BACKUPS);
|
MRJobConfig.DEFAULT_MR_AM_LOG_BACKUPS);
|
||||||
MRApps.addLog4jSystemProperties(logLevel, logSize, numBackups, vargs);
|
MRApps.addLog4jSystemProperties(logLevel, logSize, numBackups, vargs, conf);
|
||||||
|
|
||||||
// Check for Java Lib Path usage in MAP and REDUCE configs
|
// Check for Java Lib Path usage in MAP and REDUCE configs
|
||||||
warnForJavaLibPath(conf.get(MRJobConfig.MAP_JAVA_OPTS,""), "map",
|
warnForJavaLibPath(conf.get(MRJobConfig.MAP_JAVA_OPTS,""), "map",
|
||||||
|
|
Loading…
Reference in New Issue