MAPREDUCE-3254. Fixed streaming to set the job.jar by using the right JobConf ctor.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1189587 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e51c3a18ec
commit
3e4efbb609
|
@ -1786,6 +1786,9 @@ Release 0.23.0 - Unreleased
|
||||||
MAPREDUCE-3250. When AM restarts, client keeps reconnecting to the new AM
|
MAPREDUCE-3250. When AM restarts, client keeps reconnecting to the new AM
|
||||||
and prints a lots of logs. (vinodkv via mahadev)
|
and prints a lots of logs. (vinodkv via mahadev)
|
||||||
|
|
||||||
|
MAPREDUCE-3254. Fixed streaming to set the job.jar by using the right
|
||||||
|
JobConf ctor. (acmurthy)
|
||||||
|
|
||||||
Release 0.22.0 - Unreleased
|
Release 0.22.0 - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -718,7 +718,7 @@ public class StreamJob implements Tool {
|
||||||
}
|
}
|
||||||
|
|
||||||
// general MapRed job properties
|
// general MapRed job properties
|
||||||
jobConf_ = new JobConf(config_);
|
jobConf_ = new JobConf(config_, StreamJob.class);
|
||||||
|
|
||||||
// All streaming jobs get the task timeout value
|
// All streaming jobs get the task timeout value
|
||||||
// from the configuration settings.
|
// from the configuration settings.
|
||||||
|
|
Loading…
Reference in New Issue