MAPREDUCE-5801. Uber mode's log message is missing a vcore reason (Steven Wong via aw)

This commit is contained in:
Allen Wittenauer 2015-07-21 10:58:52 -07:00
parent 3b7ffc4f3f
commit cf74772064
2 changed files with 5 additions and 0 deletions

View File

@ -270,6 +270,9 @@ Trunk (Unreleased)
MAPREDUCE-6078. native-task: fix gtest build on macosx (Binglin Chang)
MAPREDUCE-5801. Uber mode's log message is missing a vcore reason
(Steven Wong via aw)
Release 2.8.0 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -1289,6 +1289,8 @@ public class JobImpl implements org.apache.hadoop.mapreduce.v2.app.job.Job,
msg.append(" too much CPU;");
if (!smallMemory)
msg.append(" too much RAM;");
if (!smallCpu)
msg.append(" too much CPU;");
if (!notChainJob)
msg.append(" chainjob;");
LOG.info(msg.toString());