@@ -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
@@ -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());