Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent OOM on array size over VM limit #414

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from

Conversation

yingsu00
Copy link

When we try to read text file line over the VM limit (current Hotspot
VM limit is 2^31-m where m is a small number ), the VM throws
java.lang.OutOfMemoryError: Requested array size exceeds VM limit.
This commit is to avoid this error by throwing IOException instead so
that the caller can handle.

Reference: https://plumbr.io/outofmemoryerror/requested-array-size-exceeds-vm-limit

When we try to read text file line over the VM limit (current Hotspot
VM limit is 2^31-5), the VM throws java.lang.OutOfMemoryError:
Requested array size exceeds VM limit. This commit is to avoid this
error by throwing IOException instead so that the caller can handle.
@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 41 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1088 trunk passed
+1 compile 1068 trunk passed
+1 checkstyle 40 trunk passed
+1 mvnsite 70 trunk passed
+1 shadedclient 720 branch has no errors when building and testing our client artifacts.
+1 javadoc 57 trunk passed
0 spotbugs 113 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 110 trunk passed
_ Patch Compile Tests _
+1 mvninstall 47 the patch passed
+1 compile 987 the patch passed
+1 javac 987 the patch passed
-0 checkstyle 38 hadoop-common-project/hadoop-common: The patch generated 8 new + 8 unchanged - 0 fixed = 16 total (was 8)
+1 mvnsite 72 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 615 patch has no errors when building and testing our client artifacts.
+1 javadoc 58 the patch passed
+1 findbugs 118 the patch passed
_ Other Tests _
+1 unit 500 hadoop-common in the patch passed.
+1 asflicense 43 The patch does not generate ASF License warnings.
5734
Subsystem Report/Notes
Docker Client=18.09.8 Server=18.09.8 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-414/1/artifact/out/Dockerfile
GITHUB PR #414
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux e71711e476ec 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / cd967c7
Default Java 1.8.0_212
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-414/1/artifact/out/diff-checkstyle-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-414/1/testReport/
Max. process+thread count 1576 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-414/1/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 79 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1192 trunk passed
+1 compile 1088 trunk passed
+1 checkstyle 46 trunk passed
+1 mvnsite 84 trunk passed
+1 shadedclient 890 branch has no errors when building and testing our client artifacts.
+1 javadoc 65 trunk passed
0 spotbugs 124 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 122 trunk passed
_ Patch Compile Tests _
+1 mvninstall 50 the patch passed
+1 compile 997 the patch passed
+1 javac 997 the patch passed
-0 checkstyle 48 hadoop-common-project/hadoop-common: The patch generated 8 new + 8 unchanged - 0 fixed = 16 total (was 8)
+1 mvnsite 80 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 739 patch has no errors when building and testing our client artifacts.
+1 javadoc 63 the patch passed
+1 findbugs 130 the patch passed
_ Other Tests _
+1 unit 557 hadoop-common in the patch passed.
+1 asflicense 45 The patch does not generate ASF License warnings.
6337
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-414/2/artifact/out/Dockerfile
GITHUB PR #414
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 42b6cff787d7 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / c7c7a88
Default Java 1.8.0_212
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-414/2/artifact/out/diff-checkstyle-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-414/2/testReport/
Max. process+thread count 1742 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-414/2/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 70 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1262 trunk passed
+1 compile 1145 trunk passed
+1 checkstyle 44 trunk passed
+1 mvnsite 82 trunk passed
+1 shadedclient 863 branch has no errors when building and testing our client artifacts.
+1 javadoc 63 trunk passed
0 spotbugs 131 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 129 trunk passed
_ Patch Compile Tests _
+1 mvninstall 51 the patch passed
+1 compile 1062 the patch passed
+1 javac 1062 the patch passed
-0 checkstyle 43 hadoop-common-project/hadoop-common: The patch generated 8 new + 8 unchanged - 0 fixed = 16 total (was 8)
+1 mvnsite 79 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 749 patch has no errors when building and testing our client artifacts.
+1 javadoc 68 the patch passed
+1 findbugs 157 the patch passed
_ Other Tests _
+1 unit 625 hadoop-common in the patch passed.
+1 asflicense 44 The patch does not generate ASF License warnings.
6596
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-414/3/artifact/out/Dockerfile
GITHUB PR #414
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 0b9c98370d78 4.15.0-54-generic #58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / e872ceb
Default Java 1.8.0_222
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-414/3/artifact/out/diff-checkstyle-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-414/3/testReport/
Max. process+thread count 1346 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-414/3/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 44 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1061 trunk passed
+1 compile 1076 trunk passed
+1 checkstyle 37 trunk passed
+1 mvnsite 73 trunk passed
+1 shadedclient 747 branch has no errors when building and testing our client artifacts.
+1 javadoc 56 trunk passed
0 spotbugs 112 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 111 trunk passed
_ Patch Compile Tests _
+1 mvninstall 44 the patch passed
+1 compile 1010 the patch passed
+1 javac 1010 the patch passed
-0 checkstyle 38 hadoop-common-project/hadoop-common: The patch generated 8 new + 8 unchanged - 0 fixed = 16 total (was 8)
+1 mvnsite 67 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 613 patch has no errors when building and testing our client artifacts.
+1 javadoc 59 the patch passed
+1 findbugs 130 the patch passed
_ Other Tests _
+1 unit 540 hadoop-common in the patch passed.
+1 asflicense 41 The patch does not generate ASF License warnings.
5799
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-414/4/artifact/out/Dockerfile
GITHUB PR #414
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 7991ab56dc45 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 00b5a27
Default Java 1.8.0_212
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-414/4/artifact/out/diff-checkstyle-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-414/4/testReport/
Max. process+thread count 1361 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-414/4/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 47 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1136 trunk passed
+1 compile 1028 trunk passed
+1 checkstyle 41 trunk passed
+1 mvnsite 70 trunk passed
+1 shadedclient 754 branch has no errors when building and testing our client artifacts.
+1 javadoc 58 trunk passed
0 spotbugs 120 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 118 trunk passed
_ Patch Compile Tests _
+1 mvninstall 44 the patch passed
+1 compile 981 the patch passed
+1 javac 981 the patch passed
-0 checkstyle 34 hadoop-common-project/hadoop-common: The patch generated 8 new + 8 unchanged - 0 fixed = 16 total (was 8)
+1 mvnsite 62 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 624 patch has no errors when building and testing our client artifacts.
+1 javadoc 56 the patch passed
+1 findbugs 118 the patch passed
_ Other Tests _
+1 unit 516 hadoop-common in the patch passed.
+1 asflicense 42 The patch does not generate ASF License warnings.
5783
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-414/5/artifact/out/Dockerfile
GITHUB PR #414
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 150a43733793 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / e356e4f
Default Java 1.8.0_222
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-414/5/artifact/out/diff-checkstyle-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-414/5/testReport/
Max. process+thread count 1381 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-414/5/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 68 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1036 trunk passed
+1 compile 1076 trunk passed
+1 checkstyle 38 trunk passed
+1 mvnsite 70 trunk passed
+1 shadedclient 762 branch has no errors when building and testing our client artifacts.
+1 javadoc 60 trunk passed
0 spotbugs 111 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 109 trunk passed
_ Patch Compile Tests _
+1 mvninstall 45 the patch passed
+1 compile 1033 the patch passed
+1 javac 1033 the patch passed
-0 checkstyle 36 hadoop-common-project/hadoop-common: The patch generated 8 new + 8 unchanged - 0 fixed = 16 total (was 8)
+1 mvnsite 64 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 634 patch has no errors when building and testing our client artifacts.
+1 javadoc 58 the patch passed
+1 findbugs 121 the patch passed
_ Other Tests _
+1 unit 508 hadoop-common in the patch passed.
+1 asflicense 46 The patch does not generate ASF License warnings.
5828
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-414/6/artifact/out/Dockerfile
GITHUB PR #414
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux f0dc593a4845 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 094d736
Default Java 1.8.0_222
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-414/6/artifact/out/diff-checkstyle-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-414/6/testReport/
Max. process+thread count 1390 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-414/6/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 41 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1079 trunk passed
+1 compile 1079 trunk passed
+1 checkstyle 37 trunk passed
+1 mvnsite 71 trunk passed
+1 shadedclient 797 branch has no errors when building and testing our client artifacts.
+1 javadoc 56 trunk passed
0 spotbugs 116 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 113 trunk passed
_ Patch Compile Tests _
+1 mvninstall 43 the patch passed
+1 compile 1019 the patch passed
+1 javac 1019 the patch passed
-0 checkstyle 38 hadoop-common-project/hadoop-common: The patch generated 8 new + 8 unchanged - 0 fixed = 16 total (was 8)
+1 mvnsite 69 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 646 patch has no errors when building and testing our client artifacts.
+1 javadoc 79 the patch passed
+1 findbugs 130 the patch passed
_ Other Tests _
-1 unit 518 hadoop-common in the patch failed.
+1 asflicense 39 The patch does not generate ASF License warnings.
5914
Reason Tests
Failed junit tests hadoop.util.TestDiskChecker
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-414/7/artifact/out/Dockerfile
GITHUB PR #414
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 258a1e76e22e 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 69ddb36
Default Java 1.8.0_222
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-414/7/artifact/out/diff-checkstyle-hadoop-common-project_hadoop-common.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-414/7/artifact/out/patch-unit-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-414/7/testReport/
Max. process+thread count 1354 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-414/7/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 38 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1111 trunk passed
+1 compile 1074 trunk passed
+1 checkstyle 48 trunk passed
+1 mvnsite 86 trunk passed
+1 shadedclient 818 branch has no errors when building and testing our client artifacts.
+1 javadoc 70 trunk passed
0 spotbugs 123 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 120 trunk passed
_ Patch Compile Tests _
+1 mvninstall 50 the patch passed
+1 compile 1034 the patch passed
+1 javac 1034 the patch passed
-0 checkstyle 46 hadoop-common-project/hadoop-common: The patch generated 8 new + 8 unchanged - 0 fixed = 16 total (was 8)
+1 mvnsite 82 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 672 patch has no errors when building and testing our client artifacts.
+1 javadoc 75 the patch passed
+1 findbugs 132 the patch passed
_ Other Tests _
+1 unit 564 hadoop-common in the patch passed.
+1 asflicense 48 The patch does not generate ASF License warnings.
6136
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-414/8/artifact/out/Dockerfile
GITHUB PR #414
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 5b0b4a2c8470 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 3329257
Default Java 1.8.0_222
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-414/8/artifact/out/diff-checkstyle-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-414/8/testReport/
Max. process+thread count 1576 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-414/8/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 39 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1032 trunk passed
+1 compile 1015 trunk passed
+1 checkstyle 49 trunk passed
+1 mvnsite 87 trunk passed
+1 shadedclient 903 branch has no errors when building and testing our client artifacts.
+1 javadoc 71 trunk passed
0 spotbugs 130 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 128 trunk passed
_ Patch Compile Tests _
+1 mvninstall 50 the patch passed
+1 compile 1020 the patch passed
+1 javac 1020 the patch passed
-0 checkstyle 47 hadoop-common-project/hadoop-common: The patch generated 8 new + 8 unchanged - 0 fixed = 16 total (was 8)
+1 mvnsite 78 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 703 patch has no errors when building and testing our client artifacts.
+1 javadoc 68 the patch passed
+1 findbugs 127 the patch passed
_ Other Tests _
+1 unit 572 hadoop-common in the patch passed.
+1 asflicense 53 The patch does not generate ASF License warnings.
6104
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-414/9/artifact/out/Dockerfile
GITHUB PR #414
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux a95487025ef1 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 915cbc9
Default Java 1.8.0_222
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-414/9/artifact/out/diff-checkstyle-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-414/9/testReport/
Max. process+thread count 1400 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-414/9/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

shanthoosh pushed a commit to shanthoosh/hadoop that referenced this pull request Oct 15, 2019
Author: Prateek Maheshwari <pmaheshw@linkedin.com>

Reviewers: Jagadish<jagadish@apache.org>

Closes apache#414 from prateekm/print-container-info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants