MAPREDUCE-5484. YarnChild unnecessarily loads job conf twice (Sandy Ryza)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1518857 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eb484bb562
commit
2cc851a66e
|
@ -162,6 +162,8 @@ Release 2.3.0 - UNRELEASED
|
|||
|
||||
OPTIMIZATIONS
|
||||
|
||||
MAPREDUCE-5484. YarnChild unnecessarily loads job conf twice (Sandy Ryza)
|
||||
|
||||
BUG FIXES
|
||||
|
||||
MAPREDUCE-5316. job -list-attempt-ids command does not handle illegal
|
||||
|
|
|
@ -75,9 +75,9 @@ class YarnChild {
|
|||
Thread.setDefaultUncaughtExceptionHandler(new YarnUncaughtExceptionHandler());
|
||||
LOG.debug("Child starting");
|
||||
|
||||
final JobConf defaultConf = new JobConf();
|
||||
defaultConf.addResource(MRJobConfig.JOB_CONF_FILE);
|
||||
UserGroupInformation.setConfiguration(defaultConf);
|
||||
final JobConf job = new JobConf();
|
||||
job.addResource(MRJobConfig.JOB_CONF_FILE);
|
||||
UserGroupInformation.setConfiguration(job);
|
||||
|
||||
String host = args[0];
|
||||
int port = Integer.parseInt(args[1]);
|
||||
|
@ -111,7 +111,7 @@ class YarnChild {
|
|||
@Override
|
||||
public TaskUmbilicalProtocol run() throws Exception {
|
||||
return (TaskUmbilicalProtocol)RPC.getProxy(TaskUmbilicalProtocol.class,
|
||||
TaskUmbilicalProtocol.versionID, address, defaultConf);
|
||||
TaskUmbilicalProtocol.versionID, address, job);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -140,7 +140,7 @@ class YarnChild {
|
|||
YarnChild.taskid = task.getTaskID();
|
||||
|
||||
// Create the job-conf and set credentials
|
||||
final JobConf job = configureTask(task, credentials, jt);
|
||||
configureTask(job, task, credentials, jt);
|
||||
|
||||
// log the system properties
|
||||
String systemPropsToLog = MRApps.getSystemPropertiesToLog(job);
|
||||
|
@ -260,9 +260,8 @@ class YarnChild {
|
|||
job.set(MRJobConfig.JOB_LOCAL_DIR,workDir.toString());
|
||||
}
|
||||
|
||||
private static JobConf configureTask(Task task, Credentials credentials,
|
||||
Token<JobTokenIdentifier> jt) throws IOException {
|
||||
final JobConf job = new JobConf(MRJobConfig.JOB_CONF_FILE);
|
||||
private static void configureTask(JobConf job, Task task,
|
||||
Credentials credentials, Token<JobTokenIdentifier> jt) throws IOException {
|
||||
job.setCredentials(credentials);
|
||||
|
||||
ApplicationAttemptId appAttemptId =
|
||||
|
@ -306,7 +305,6 @@ class YarnChild {
|
|||
writeLocalJobFile(localTaskFile, job);
|
||||
task.setJobFile(localTaskFile.toString());
|
||||
task.setConf(job);
|
||||
return job;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue