Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 1.2.1, 2.4.0
    • 2.6.0
    • test
    • None
    • Reviewed

    Description

      This is a minor issue per se. I had a typo in my script specifying a negative number of reducers for the SleepJob. It results in the exception that is far from the root cause, and appeared as a serious issue with the map-side sort.

      2014-06-17 21:42:48,072 INFO [main] org.apache.hadoop.mapred.MapTask: Ignoring exception during close for org.apache.hadoop.mapred.MapTask$NewOutputCollector@972141f
      java.lang.NullPointerException
      	at org.apache.hadoop.mapred.MapTask$MapOutputBuffer.flush(MapTask.java:1447)
      	at org.apache.hadoop.mapred.MapTask$NewOutputCollector.close(MapTask.java:700)
      	at org.apache.hadoop.mapred.MapTask.closeQuietly(MapTask.java:1990)
      	at org.apache.hadoop.mapred.MapTask.runNewMapper(MapTask.java:774)
      	at org.apache.hadoop.mapred.MapTask.run(MapTask.java:340)
      	at org.apache.hadoop.mapred.YarnChild$2.run(YarnChild.java:173)
      	at java.security.AccessController.doPrivileged(Native Method)
      	at javax.security.auth.Subject.doAs(Subject.java:415)
      	at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1626)
      	at org.apache.hadoop.mapred.YarnChild.main(YarnChild.java:168)
      2014-06-17 21:42:48,075 WARN [main] org.apache.hadoop.mapred.YarnChild: Exception running child : java.lang.IllegalArgumentException
      	at java.nio.ByteBuffer.allocate(ByteBuffer.java:330)
      	at org.apache.hadoop.mapred.SpillRecord.<init>(SpillRecord.java:51)
      	at org.apache.hadoop.mapred.MapTask$MapOutputBuffer.mergeParts(MapTask.java:1824)
      	at org.apache.hadoop.mapred.MapTask$MapOutputBuffer.flush(MapTask.java:1484)
      	at org.apache.hadoop.mapred.MapTask$NewOutputCollector.close(MapTask.java:700)
      	at org.apache.hadoop.mapred.MapTask.runNewMapper(MapTask.java:770)
      	at org.apache.hadoop.mapred.MapTask.run(MapTask.java:340)
      	at org.apache.hadoop.mapred.YarnChild$2.run(YarnChild.java:173)
      	at java.security.AccessController.doPrivileged(Native Method)
      	at javax.security.auth.Subject.doAs(Subject.java:415)
      	at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1626)
      	at org.apache.hadoop.mapred.YarnChild.main(YarnChild.java:168)
      

      Attachments

        1. MAPREDUCE-5931.v01.patch
          2 kB
          Gera Shegalov
        2. MAPREDUCE-5931.v02.patch
          3 kB
          Gera Shegalov
        3. MAPREDUCE-5931.v03.patch
          18 kB
          Gera Shegalov
        4. MAPREDUCE-5931.v04.patch
          18 kB
          Gera Shegalov

        Activity

          hadoopqa Hadoop QA added a comment -

          -1 overall. Here are the results of testing the latest attachment
          http://issues.apache.org/jira/secure/attachment/12650969/MAPREDUCE-5931.v01.patch
          against trunk revision .

          +1 @author. The patch does not contain any @author tags.

          +1 tests included. The patch appears to include 1 new or modified test files.

          +1 javac. The applied patch does not increase the total number of javac compiler warnings.

          +1 javadoc. There were no new javadoc warning messages.

          +1 eclipse:eclipse. The patch built with eclipse:eclipse.

          +1 findbugs. The patch does not introduce any new Findbugs (version 1.3.9) warnings.

          +1 release audit. The applied patch does not increase the total number of release audit warnings.

          -1 core tests. The following test timeouts occurred in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient:

          org.apache.hadoop.mapred.pipes.TestPipeApplication

          +1 contrib tests. The patch passed contrib unit tests.

          Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4669//testReport/
          Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4669//console

          This message is automatically generated.

          hadoopqa Hadoop QA added a comment - -1 overall . Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12650969/MAPREDUCE-5931.v01.patch against trunk revision . +1 @author . The patch does not contain any @author tags. +1 tests included . The patch appears to include 1 new or modified test files. +1 javac . The applied patch does not increase the total number of javac compiler warnings. +1 javadoc . There were no new javadoc warning messages. +1 eclipse:eclipse . The patch built with eclipse:eclipse. +1 findbugs . The patch does not introduce any new Findbugs (version 1.3.9) warnings. +1 release audit . The applied patch does not increase the total number of release audit warnings. -1 core tests . The following test timeouts occurred in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient: org.apache.hadoop.mapred.pipes.TestPipeApplication +1 contrib tests . The patch passed contrib unit tests. Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4669//testReport/ Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4669//console This message is automatically generated.

          Thanks for the patch, Gera. SleepJob is currently a "test" job, but I'd rather not cement it further into the test-only area by having it explicitly pull in junit.Assert for this. SleepJob is so useful outside of unit tests that arguably it should be in mapreduce examples or something rather than isolated to jobclient tests, but that's for another JIRA.

          As such I'd rather see this error handled more like a "regular" job handles it, like the usage error earlier in the code where it prints to stderr and returns a non-zero exit code. This is another instance of a usage error, and it would be nice to be consistent in how they are handled.

          jlowe Jason Darrell Lowe added a comment - Thanks for the patch, Gera. SleepJob is currently a "test" job, but I'd rather not cement it further into the test-only area by having it explicitly pull in junit.Assert for this. SleepJob is so useful outside of unit tests that arguably it should be in mapreduce examples or something rather than isolated to jobclient tests, but that's for another JIRA. As such I'd rather see this error handled more like a "regular" job handles it, like the usage error earlier in the code where it prints to stderr and returns a non-zero exit code. This is another instance of a usage error, and it would be nice to be consistent in how they are handled.
          jira.shegalov Gera Shegalov added a comment -

          Thanks for review jlowe. v02 is attached.

          jira.shegalov Gera Shegalov added a comment - Thanks for review jlowe . v02 is attached.
          hadoopqa Hadoop QA added a comment -

          -1 overall. Here are the results of testing the latest attachment
          http://issues.apache.org/jira/secure/attachment/12653362/MAPREDUCE-5931.v02.patch
          against trunk revision .

          +1 @author. The patch does not contain any @author tags.

          +1 tests included. The patch appears to include 1 new or modified test files.

          +1 javac. The applied patch does not increase the total number of javac compiler warnings.

          +1 javadoc. There were no new javadoc warning messages.

          +1 eclipse:eclipse. The patch built with eclipse:eclipse.

          +1 findbugs. The patch does not introduce any new Findbugs (version 1.3.9) warnings.

          +1 release audit. The applied patch does not increase the total number of release audit warnings.

          -1 core tests. The patch failed these unit tests in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient:

          org.apache.hadoop.mapreduce.security.TestBinaryTokenFile

          The following test timeouts occurred in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient:

          org.apache.hadoop.mapred.pipes.TestPipeApplication

          +1 contrib tests. The patch passed contrib unit tests.

          Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4700//testReport/
          Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4700//console

          This message is automatically generated.

          hadoopqa Hadoop QA added a comment - -1 overall . Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12653362/MAPREDUCE-5931.v02.patch against trunk revision . +1 @author . The patch does not contain any @author tags. +1 tests included . The patch appears to include 1 new or modified test files. +1 javac . The applied patch does not increase the total number of javac compiler warnings. +1 javadoc . There were no new javadoc warning messages. +1 eclipse:eclipse . The patch built with eclipse:eclipse. +1 findbugs . The patch does not introduce any new Findbugs (version 1.3.9) warnings. +1 release audit . The applied patch does not increase the total number of release audit warnings. -1 core tests . The patch failed these unit tests in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient: org.apache.hadoop.mapreduce.security.TestBinaryTokenFile The following test timeouts occurred in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient: org.apache.hadoop.mapred.pipes.TestPipeApplication +1 contrib tests . The patch passed contrib unit tests. Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4700//testReport/ Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4700//console This message is automatically generated.
          jira.shegalov Gera Shegalov added a comment -

          v02 is an invalid patch as I forgot to add actual checks. Furthermore, I noticed that we have two identical implementations for SleepJob in org.apache.hadoop and org.apache.hadoop.mapreduce packages. I am deleting the former in favor of the latter. Please review v03.

          jira.shegalov Gera Shegalov added a comment - v02 is an invalid patch as I forgot to add actual checks. Furthermore, I noticed that we have two identical implementations for SleepJob in org.apache.hadoop and org.apache.hadoop.mapreduce packages. I am deleting the former in favor of the latter. Please review v03.
          hadoopqa Hadoop QA added a comment -

          -1 overall. Here are the results of testing the latest attachment
          http://issues.apache.org/jira/secure/attachment/12653527/MAPREDUCE-5931.v03.patch
          against trunk revision .

          +1 @author. The patch does not contain any @author tags.

          +1 tests included. The patch appears to include 5 new or modified test files.

          +1 javac. The applied patch does not increase the total number of javac compiler warnings.

          +1 javadoc. There were no new javadoc warning messages.

          +1 eclipse:eclipse. The patch built with eclipse:eclipse.

          +1 findbugs. The patch does not introduce any new Findbugs (version 1.3.9) warnings.

          +1 release audit. The applied patch does not increase the total number of release audit warnings.

          -1 core tests. The following test timeouts occurred in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient:

          org.apache.hadoop.mapred.pipes.TestPipeApplication

          +1 contrib tests. The patch passed contrib unit tests.

          Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4702//testReport/
          Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4702//console

          This message is automatically generated.

          hadoopqa Hadoop QA added a comment - -1 overall . Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12653527/MAPREDUCE-5931.v03.patch against trunk revision . +1 @author . The patch does not contain any @author tags. +1 tests included . The patch appears to include 5 new or modified test files. +1 javac . The applied patch does not increase the total number of javac compiler warnings. +1 javadoc . There were no new javadoc warning messages. +1 eclipse:eclipse . The patch built with eclipse:eclipse. +1 findbugs . The patch does not introduce any new Findbugs (version 1.3.9) warnings. +1 release audit . The applied patch does not increase the total number of release audit warnings. -1 core tests . The following test timeouts occurred in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient: org.apache.hadoop.mapred.pipes.TestPipeApplication +1 contrib tests . The patch passed contrib unit tests. Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4702//testReport/ Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4702//console This message is automatically generated.

          Thanks for updating the patch, Gera! Apologies for the delay in re-reviewing. Patch looks good overall, just some minor nits.

          Most programs use a predefined exit code (often 2) for all usage errors, so it's interesting to see different ones being used. Also it's a bit odd to see a function like printUsage requiring an argument whose only purpose is to be the value the function will return. I'm guessing this is for brevity on the caller side, but the appearance is a bit odd. We could solve both of these by simply having printUsage() always return 2 and drop the exitCode arg. Is it important to return different exit codes for these usage errors?

          One very minor nit is that the usage error message for recordSleepTime uses a comma while all the others use a colon.

          jlowe Jason Darrell Lowe added a comment - Thanks for updating the patch, Gera! Apologies for the delay in re-reviewing. Patch looks good overall, just some minor nits. Most programs use a predefined exit code (often 2) for all usage errors, so it's interesting to see different ones being used. Also it's a bit odd to see a function like printUsage requiring an argument whose only purpose is to be the value the function will return. I'm guessing this is for brevity on the caller side, but the appearance is a bit odd. We could solve both of these by simply having printUsage() always return 2 and drop the exitCode arg. Is it important to return different exit codes for these usage errors? One very minor nit is that the usage error message for recordSleepTime uses a comma while all the others use a colon.
          jira.shegalov Gera Shegalov added a comment -

          Thanks for feedback, jlowe! In this case it might not be as important but yes I usually like to have interpretable exit codes. I'll update the patch

          jira.shegalov Gera Shegalov added a comment - Thanks for feedback, jlowe ! In this case it might not be as important but yes I usually like to have interpretable exit codes. I'll update the patch
          jira.shegalov Gera Shegalov added a comment -

          Added v04!

          jira.shegalov Gera Shegalov added a comment - Added v04!
          hadoopqa Hadoop QA added a comment -

          -1 overall. Here are the results of testing the latest attachment
          http://issues.apache.org/jira/secure/attachment/12665134/MAPREDUCE-5931.v04.patch
          against trunk revision d9a7404.

          +1 @author. The patch does not contain any @author tags.

          +1 tests included. The patch appears to include 5 new or modified test files.

          +1 javac. The applied patch does not increase the total number of javac compiler warnings.

          +1 javadoc. There were no new javadoc warning messages.

          +1 eclipse:eclipse. The patch built with eclipse:eclipse.

          +1 findbugs. The patch does not introduce any new Findbugs (version 2.0.3) warnings.

          +1 release audit. The applied patch does not increase the total number of release audit warnings.

          -1 core tests. The test build failed in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient

          +1 contrib tests. The patch passed contrib unit tests.

          Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4834//testReport/
          Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4834//console

          This message is automatically generated.

          hadoopqa Hadoop QA added a comment - -1 overall . Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12665134/MAPREDUCE-5931.v04.patch against trunk revision d9a7404. +1 @author . The patch does not contain any @author tags. +1 tests included . The patch appears to include 5 new or modified test files. +1 javac . The applied patch does not increase the total number of javac compiler warnings. +1 javadoc . There were no new javadoc warning messages. +1 eclipse:eclipse . The patch built with eclipse:eclipse. +1 findbugs . The patch does not introduce any new Findbugs (version 2.0.3) warnings. +1 release audit . The applied patch does not increase the total number of release audit warnings. -1 core tests . The test build failed in hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient +1 contrib tests . The patch passed contrib unit tests. Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4834//testReport/ Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4834//console This message is automatically generated.
          hadoopqa Hadoop QA added a comment -

          -1 overall. Here are the results of testing the latest attachment
          http://issues.apache.org/jira/secure/attachment/12665134/MAPREDUCE-5931.v04.patch
          against trunk revision 4bd0194.

          +1 @author. The patch does not contain any @author tags.

          +1 tests included. The patch appears to include 5 new or modified test files.

          +1 javac. The applied patch does not increase the total number of javac compiler warnings.

          +1 javadoc. There were no new javadoc warning messages.

          +1 eclipse:eclipse. The patch built with eclipse:eclipse.

          +1 findbugs. The patch does not introduce any new Findbugs (version 2.0.3) warnings.

          +1 release audit. The applied patch does not increase the total number of release audit warnings.

          -1 core tests. The patch failed these unit tests in hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager:

          org.apache.hadoop.yarn.server.resourcemanager.resourcetracker.TestNMReconnect
          org.apache.hadoop.yarn.server.resourcemanager.resourcetracker.TestNMExpiry

          +1 contrib tests. The patch passed contrib unit tests.

          Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4837//testReport/
          Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4837//console

          This message is automatically generated.

          hadoopqa Hadoop QA added a comment - -1 overall . Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12665134/MAPREDUCE-5931.v04.patch against trunk revision 4bd0194. +1 @author . The patch does not contain any @author tags. +1 tests included . The patch appears to include 5 new or modified test files. +1 javac . The applied patch does not increase the total number of javac compiler warnings. +1 javadoc . There were no new javadoc warning messages. +1 eclipse:eclipse . The patch built with eclipse:eclipse. +1 findbugs . The patch does not introduce any new Findbugs (version 2.0.3) warnings. +1 release audit . The applied patch does not increase the total number of release audit warnings. -1 core tests . The patch failed these unit tests in hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: org.apache.hadoop.yarn.server.resourcemanager.resourcetracker.TestNMReconnect org.apache.hadoop.yarn.server.resourcemanager.resourcetracker.TestNMExpiry +1 contrib tests . The patch passed contrib unit tests. Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4837//testReport/ Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4837//console This message is automatically generated.

          The test failures are unrelated bind exception failures.

          +1 lgtm. Committing this.

          jlowe Jason Darrell Lowe added a comment - The test failures are unrelated bind exception failures. +1 lgtm. Committing this.

          Thanks, Gera! I committed this to trunk and branch-2.

          jlowe Jason Darrell Lowe added a comment - Thanks, Gera! I committed this to trunk and branch-2.
          hudson Hudson added a comment -

          FAILURE: Integrated in Hadoop-Yarn-trunk #664 (See https://builds.apache.org/job/Hadoop-Yarn-trunk/664/)
          MAPREDUCE-5931. Validate SleepJob command line parameters. Contributed by Gera Shegalov (jlowe: rev 15366d922772afaa9457ed946533cdf4b5d01e2f)

          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithProfiler.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/SleepJob.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/SleepJob.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithHistoryService.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobs.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRAMWithNonNormalizedCapabilities.java
          • hadoop-mapreduce-project/CHANGES.txt
          hudson Hudson added a comment - FAILURE: Integrated in Hadoop-Yarn-trunk #664 (See https://builds.apache.org/job/Hadoop-Yarn-trunk/664/ ) MAPREDUCE-5931 . Validate SleepJob command line parameters. Contributed by Gera Shegalov (jlowe: rev 15366d922772afaa9457ed946533cdf4b5d01e2f) hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithProfiler.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/SleepJob.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/SleepJob.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithHistoryService.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobs.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRAMWithNonNormalizedCapabilities.java hadoop-mapreduce-project/CHANGES.txt
          hudson Hudson added a comment -

          FAILURE: Integrated in Hadoop-Hdfs-trunk #1855 (See https://builds.apache.org/job/Hadoop-Hdfs-trunk/1855/)
          MAPREDUCE-5931. Validate SleepJob command line parameters. Contributed by Gera Shegalov (jlowe: rev 15366d922772afaa9457ed946533cdf4b5d01e2f)

          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/SleepJob.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithHistoryService.java
          • hadoop-mapreduce-project/CHANGES.txt
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithProfiler.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/SleepJob.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobs.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRAMWithNonNormalizedCapabilities.java
          hudson Hudson added a comment - FAILURE: Integrated in Hadoop-Hdfs-trunk #1855 (See https://builds.apache.org/job/Hadoop-Hdfs-trunk/1855/ ) MAPREDUCE-5931 . Validate SleepJob command line parameters. Contributed by Gera Shegalov (jlowe: rev 15366d922772afaa9457ed946533cdf4b5d01e2f) hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/SleepJob.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithHistoryService.java hadoop-mapreduce-project/CHANGES.txt hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithProfiler.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/SleepJob.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobs.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRAMWithNonNormalizedCapabilities.java
          hudson Hudson added a comment -

          FAILURE: Integrated in Hadoop-Mapreduce-trunk #1881 (See https://builds.apache.org/job/Hadoop-Mapreduce-trunk/1881/)
          MAPREDUCE-5931. Validate SleepJob command line parameters. Contributed by Gera Shegalov (jlowe: rev 15366d922772afaa9457ed946533cdf4b5d01e2f)

          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithProfiler.java
          • hadoop-mapreduce-project/CHANGES.txt
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobs.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRAMWithNonNormalizedCapabilities.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/SleepJob.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/SleepJob.java
          • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithHistoryService.java
          hudson Hudson added a comment - FAILURE: Integrated in Hadoop-Mapreduce-trunk #1881 (See https://builds.apache.org/job/Hadoop-Mapreduce-trunk/1881/ ) MAPREDUCE-5931 . Validate SleepJob command line parameters. Contributed by Gera Shegalov (jlowe: rev 15366d922772afaa9457ed946533cdf4b5d01e2f) hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithProfiler.java hadoop-mapreduce-project/CHANGES.txt hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobs.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRAMWithNonNormalizedCapabilities.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/SleepJob.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/SleepJob.java hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestMRJobsWithHistoryService.java

          People

            jira.shegalov Gera Shegalov
            jira.shegalov Gera Shegalov
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: