MAPREDUCE-5544. JobClient#getJob loads job conf twice. (Sandy Ryza)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1528196 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ae05623a75
commit
cc8a0cab59
|
@ -253,6 +253,8 @@ Release 2.1.2 - UNRELEASED
|
|||
SequenceFileAsBinaryOutputFormat.WritableValueBytes by re-introducing
|
||||
missing constructors. (Zhijie Shen via acmurthy)
|
||||
|
||||
MAPREDUCE-5544. JobClient#getJob loads job conf twice. (Sandy Ryza)
|
||||
|
||||
Release 2.1.1-beta - 2013-09-23
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -173,7 +173,12 @@ public class JobClient extends CLI {
|
|||
* job completes.)
|
||||
*/
|
||||
public NetworkedJob(JobStatus status, Cluster cluster) throws IOException {
|
||||
job = Job.getInstance(cluster, status, new JobConf(status.getJobFile()));
|
||||
this(status, cluster, new JobConf(status.getJobFile()));
|
||||
}
|
||||
|
||||
private NetworkedJob(JobStatus status, Cluster cluster, JobConf conf)
|
||||
throws IOException {
|
||||
this(Job.getInstance(cluster, status, conf));
|
||||
}
|
||||
|
||||
public NetworkedJob(Job job) throws IOException {
|
||||
|
@ -592,7 +597,8 @@ public class JobClient extends CLI {
|
|||
if (job != null) {
|
||||
JobStatus status = JobStatus.downgrade(job.getStatus());
|
||||
if (status != null) {
|
||||
return new NetworkedJob(status, cluster);
|
||||
return new NetworkedJob(status, cluster,
|
||||
new JobConf(job.getConfiguration()));
|
||||
}
|
||||
}
|
||||
} catch (InterruptedException ie) {
|
||||
|
|
Loading…
Reference in New Issue