Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
Reviewed
Attachments
Attachments
- HBASE-19887-v1.patch
- 37 kB
- Duo Zhang
- HBASE-19887-v1.patch
- 37 kB
- Michael Stack
- HBASE-19887-v1.patch
- 37 kB
- Michael Stack
- HBASE-19887-v1.patch
- 37 kB
- Michael Stack
- HBASE-19887-v1.patch
- 37 kB
- Michael Stack
- HBASE-19887-v1.patch
- 37 kB
- Duo Zhang
Activity
OK, the problem is the same with hbase-common in HBASE-19873. We define a listener in hbase-server/pom.xml and overwrite the default listener in the parent pom.xml.
<property> <name>listener</name> <value>org.apache.hadoop.hbase.ServerResourceCheckerJUnitListener</value> </property>
Looked at the code, there is no difference between ServerResourceCheckerJUnitListener and ResourceCheckerJUnitListener?
/** * Monitor the resources. use by the tests All resources in {@link ResourceCheckerJUnitListener} * plus the number of connection. */ public class ServerResourceCheckerJUnitListener extends ResourceCheckerJUnitListener { }
Although the comments said that we have an extra number of connection check but seems not.
In general I prefer we set the listener in the parent pom.xml. What do you think stack.
Thanks.
Yes go for it.
These resource checker/server resource checker are useful util added long ago.
In branch-1.3 at least there is a difference.
static class ConnectionCountResourceAnalyzer extends ResourceChecker.ResourceAnalyzer { @Override public int getVal(Phase phase) { return HConnectionTestingUtility.getConnectionCount(); } } @Override protected void addResourceAnalyzer(ResourceChecker rc) { rc.addResourceAnalyzer(new ConnectionCountResourceAnalyzer()); }
Does our new ClassRule do what these listeners used to do? It doesn't seem too. Will I add it into ./hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRuleChecker.java ?
Thanks Apache9
Remove ServerResourceCheckerJUnitListener since it is useless for now. I think we can add more checks in ResourceCheckerJUnitListener directly.
Remove the surefire plugin definition in sub modules if not necessary so that they will not overwrite the default listener config.
The ConnectionCountResourceAnalyzer had been removed since HBASE-13252.
So I think for now we can just remove it...
Mind taking a look at the patch sir? stack
Thanks.
Patch looks beautiful. +1. Its the way it should have been....
-1 overall |
Vote | Subsystem | Runtime | Comment |
---|---|---|---|
0 | reexec | 0m 15s | Docker mode activated. |
Prechecks | |||
0 | findbugs | 0m 0s | Findbugs executables are not available. |
+1 | hbaseanti | 0m 0s | Patch does not have any anti-patterns. |
+1 | @author | 0m 0s | The patch does not contain any @author tags. |
+1 | test4tests | 0m 0s | The patch appears to include 2 new or modified test files. |
master Compile Tests | |||
0 | mvndep | 0m 24s | Maven dependency ordering for branch |
+1 | mvninstall | 4m 1s | master passed |
+1 | compile | 3m 25s | master passed |
+1 | checkstyle | 3m 0s | master passed |
+1 | shadedjars | 7m 10s | branch has no errors when building our shaded downstream artifacts. |
+1 | javadoc | 2m 12s | master passed |
Patch Compile Tests | |||
0 | mvndep | 0m 6s | Maven dependency ordering for patch |
-1 | mvninstall | 0m 18s | root in the patch failed. |
-1 | compile | 0m 18s | hbase-client-project in the patch failed. |
-1 | compile | 0m 18s | hbase-shaded-client-project in the patch failed. |
-1 | compile | 0m 18s | hbase-common in the patch failed. |
-1 | compile | 0m 18s | hbase-external-blockcache in the patch failed. |
-1 | compile | 0m 18s | hbase-http in the patch failed. |
-1 | compile | 0m 18s | hbase-mapreduce in the patch failed. |
-1 | compile | 0m 19s | hbase-replication in the patch failed. |
-1 | compile | 0m 18s | hbase-rest in the patch failed. |
-1 | compile | 0m 19s | hbase-server in the patch failed. |
-1 | compile | 0m 19s | hbase-shell in the patch failed. |
-1 | compile | 0m 19s | hbase-zookeeper in the patch failed. |
-1 | javac | 0m 18s | hbase-client-project in the patch failed. |
-1 | javac | 0m 18s | hbase-shaded-client-project in the patch failed. |
-1 | javac | 0m 18s | hbase-common in the patch failed. |
-1 | javac | 0m 18s | hbase-external-blockcache in the patch failed. |
-1 | javac | 0m 18s | hbase-http in the patch failed. |
-1 | javac | 0m 18s | hbase-mapreduce in the patch failed. |
-1 | javac | 0m 19s | hbase-replication in the patch failed. |
-1 | javac | 0m 18s | hbase-rest in the patch failed. |
-1 | javac | 0m 19s | hbase-server in the patch failed. |
-1 | javac | 0m 19s | hbase-shell in the patch failed. |
-1 | javac | 0m 19s | hbase-zookeeper in the patch failed. |
+1 | checkstyle | 3m 8s | the patch passed |
+1 | whitespace | 0m 0s | The patch has no whitespace issues. |
+1 | xml | 0m 13s | The patch has no ill-formed XML file. |
+1 | shadedjars | 4m 24s | patch has no errors when building our shaded downstream artifacts. |
+1 | hadoopcheck | 16m 53s | Patch does not cause any errors with Hadoop 2.6.5 2.7.4 or 3.0.0. |
+1 | javadoc | 2m 35s | the patch passed |
Other Tests | |||
+1 | unit | 0m 45s | hbase-client-project in the patch passed. |
+1 | unit | 0m 44s | hbase-shaded-client-project in the patch passed. |
+1 | unit | 2m 25s | hbase-common in the patch passed. |
+1 | unit | 0m 15s | hbase-external-blockcache in the patch passed. |
+1 | unit | 0m 47s | hbase-http in the patch passed. |
-1 | unit | 18m 21s | hbase-mapreduce in the patch failed. |
-1 | unit | 0m 23s | hbase-replication in the patch failed. |
-1 | unit | 0m 21s | hbase-rest in the patch failed. |
-1 | unit | 0m 21s | hbase-server in the patch failed. |
-1 | unit | 0m 21s | hbase-shell in the patch failed. |
-1 | unit | 0m 22s | hbase-zookeeper in the patch failed. |
+1 | asflicense | 2m 11s | The patch does not generate ASF License warnings. |
72m 14s |
Reason | Tests |
---|---|
Failed junit tests | hadoop.hbase.mapreduce.TestCellCounter |
hadoop.hbase.mapreduce.TestImportTsv | |
hadoop.hbase.replication.TestVerifyReplication | |
hadoop.hbase.mapreduce.TestTableMapReduce | |
hadoop.hbase.mapreduce.TestMultiTableInputFormat | |
hadoop.hbase.mapred.TestMultiTableSnapshotInputFormat | |
hadoop.hbase.mapred.TestTableMapReduceUtil | |
hadoop.hbase.mapreduce.TestImportTSVWithOperationAttributes | |
hadoop.hbase.mapred.TestTableSnapshotInputFormat | |
hadoop.hbase.mapreduce.TestImportTSVWithVisibilityLabels | |
hadoop.hbase.mapred.TestTableMapReduce | |
hadoop.hbase.mapred.TestTableInputFormat | |
hadoop.hbase.mapreduce.TestTableInputFormatScan1 | |
hadoop.hbase.mapreduce.TestCopyTable | |
hadoop.hbase.mapreduce.TestHRegionPartitioner | |
hadoop.hbase.mapred.TestTableOutputFormatConnectionExhaust | |
hadoop.hbase.mapreduce.TestRowCounter |
This message was automatically generated.
I tried 'mvn clean install -DskipTests' locally and it passed...
And the compile outputs above are all empty...
-1 overall |
Vote | Subsystem | Runtime | Comment |
---|---|---|---|
0 | reexec | 0m 10s | Docker mode activated. |
Prechecks | |||
0 | findbugs | 0m 0s | Findbugs executables are not available. |
+1 | hbaseanti | 0m 0s | Patch does not have any anti-patterns. |
+1 | @author | 0m 0s | The patch does not contain any @author tags. |
+1 | test4tests | 0m 0s | The patch appears to include 2 new or modified test files. |
master Compile Tests | |||
0 | mvndep | 0m 26s | Maven dependency ordering for branch |
+1 | mvninstall | 4m 31s | master passed |
+1 | compile | 3m 27s | master passed |
+1 | checkstyle | 3m 1s | master passed |
+1 | shadedjars | 7m 13s | branch has no errors when building our shaded downstream artifacts. |
+1 | javadoc | 2m 29s | master passed |
Patch Compile Tests | |||
0 | mvndep | 0m 14s | Maven dependency ordering for patch |
+1 | mvninstall | 4m 6s | the patch passed |
+1 | compile | 3m 28s | the patch passed |
+1 | javac | 3m 28s | the patch passed |
+1 | checkstyle | 2m 59s | the patch passed |
+1 | whitespace | 0m 0s | The patch has no whitespace issues. |
+1 | xml | 0m 12s | The patch has no ill-formed XML file. |
+1 | shadedjars | 4m 29s | patch has no errors when building our shaded downstream artifacts. |
+1 | hadoopcheck | 16m 37s | Patch does not cause any errors with Hadoop 2.6.5 2.7.4 or 3.0.0. |
+1 | javadoc | 2m 41s | the patch passed |
Other Tests | |||
+1 | unit | 2m 27s | hbase-common in the patch passed. |
+1 | unit | 0m 43s | hbase-zookeeper in the patch passed. |
+1 | unit | 0m 19s | hbase-replication in the patch passed. |
+1 | unit | 0m 47s | hbase-http in the patch passed. |
-1 | unit | 22m 29s | hbase-server in the patch failed. |
-1 | unit | 19m 57s | hbase-mapreduce in the patch failed. |
-1 | unit | 1m 21s | hbase-shell in the patch failed. |
-1 | unit | 18m 39s | hbase-rest in the patch failed. |
+1 | unit | 0m 24s | hbase-external-blockcache in the patch passed. |
+1 | unit | 0m 51s | hbase-client-project in the patch passed. |
+1 | unit | 0m 54s | hbase-shaded-client-project in the patch passed. |
+1 | asflicense | 2m 48s | The patch does not generate ASF License warnings. |
121m 28s |
Reason | Tests |
---|---|
Failed junit tests | TEST-null |
hadoop.hbase.util.TestPoolMap | |
hadoop.hbase.mapreduce.TestCellCounter | |
hadoop.hbase.mapreduce.TestImportTsv | |
hadoop.hbase.mapreduce.TestHashTable | |
hadoop.hbase.mapreduce.TestHFileOutputFormat2 | |
hadoop.hbase.mapreduce.TestImportTSVWithTTLs | |
hadoop.hbase.mapreduce.TestWALRecordReader | |
hadoop.hbase.mapreduce.TestImportExport | |
hadoop.hbase.mapreduce.TestTableSnapshotInputFormat | |
hadoop.hbase.mapreduce.TestTableMapReduce | |
hadoop.hbase.mapreduce.TestTableInputFormat | |
hadoop.hbase.mapreduce.TestMultiTableInputFormat | |
hadoop.hbase.mapred.TestMultiTableSnapshotInputFormat | |
hadoop.hbase.mapreduce.TestWALPlayer | |
hadoop.hbase.snapshot.TestSecureExportSnapshot | |
hadoop.hbase.mapred.TestTableMapReduceUtil | |
hadoop.hbase.snapshot.TestMobExportSnapshot | |
hadoop.hbase.mapreduce.TestImportTSVWithOperationAttributes | |
hadoop.hbase.mapred.TestTableSnapshotInputFormat | |
hadoop.hbase.mapreduce.TestSyncTable | |
hadoop.hbase.mapreduce.TestImportTSVWithVisibilityLabels | |
hadoop.hbase.mapreduce.TestTableInputFormatScan2 | |
hadoop.hbase.mapred.TestTableMapReduce | |
hadoop.hbase.mapred.TestTableInputFormat | |
hadoop.hbase.mapreduce.TestCopyTable | |
hadoop.hbase.mapreduce.TestMultithreadedTableMapper | |
hadoop.hbase.mapreduce.TestHRegionPartitioner | |
hadoop.hbase.mapreduce.TestTimeRangeMapRed | |
hadoop.hbase.mapred.TestTableOutputFormatConnectionExhaust | |
hadoop.hbase.mapreduce.TestRowCounter | |
hadoop.hbase.snapshot.TestExportSnapshot | |
hadoop.hbase.snapshot.TestMobSecureExportSnapshot | |
hadoop.hbase.client.TestShell | |
hadoop.hbase.client.rsgroup.TestShellRSGroups | |
hadoop.hbase.client.TestReplicationShell | |
hadoop.hbase.rest.TestTableResource | |
hadoop.hbase.rest.TestSchemaResource | |
hadoop.hbase.rest.TestResourceFilter | |
hadoop.hbase.rest.TestScannersWithFilters | |
hadoop.hbase.rest.TestGetAndPutResource | |
hadoop.hbase.rest.TestGzipFilter | |
hadoop.hbase.rest.TestScannersWithLabels | |
hadoop.hbase.rest.TestMultiRowResource | |
hadoop.hbase.rest.TestDeleteRow | |
hadoop.hbase.rest.TestScannerResource | |
hadoop.hbase.rest.TestNamespacesResource | |
hadoop.hbase.rest.TestTableScan | |
hadoop.hbase.rest.client.TestRemoteTable | |
hadoop.hbase.rest.TestVersionResource |
Subsystem | Report/Notes |
---|---|
Docker | Client=17.05.0-ce Server=17.05.0-ce Image:yetus/hbase:eee3b01 |
JIRA Issue | |
JIRA Patch URL | https://issues.apache.org/jira/secure/attachment/12908297/HBASE-19887.patch |
Optional Tests | asflicense javac javadoc unit shadedjars hadoopcheck xml compile findbugs hbaseanti checkstyle |
uname | Linux a49c612a85eb 4.4.0-43-generic #63-Ubuntu SMP Wed Oct 12 13:48:03 UTC 2016 x86_64 GNU/Linux |
Build tool | maven |
Personality | /home/jenkins/jenkins-slave/workspace/PreCommit-HBASE-Build/component/dev-support/hbase-personality.sh |
git revision | master / 67f91f1282 |
maven | version: Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T07:58:13Z) |
Default Java | 1.8.0_151 |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11247/artifact/patchprocess/patch-unit-hbase-server.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11247/artifact/patchprocess/patch-unit-hbase-mapreduce.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11247/artifact/patchprocess/patch-unit-hbase-shell.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11247/artifact/patchprocess/patch-unit-hbase-rest.txt |
Test Results | https://builds.apache.org/job/PreCommit-HBASE-Build/11247/testReport/ |
Max. process+thread count | 923 (vs. ulimit of 1000) |
modules | C: hbase-common hbase-zookeeper hbase-replication hbase-http hbase-server hbase-mapreduce hbase-shell hbase-rest hbase-external-blockcache hbase-archetypes/hbase-client-project hbase-archetypes/hbase-shaded-client-project U: . |
Console output | https://builds.apache.org/job/PreCommit-HBASE-Build/11247/console |
Powered by | Apache Yetus 0.7.0 http://yetus.apache.org |
This message was automatically generated.
Rewrite TestPoolMap with junit4 style and move it to hbase-client. Try again.
Jobs is hitting the new process limit code in 0.7.0:
Max. process+thread count | 923 (vs. ulimit of 1000) |
-1 overall |
Vote | Subsystem | Runtime | Comment |
---|---|---|---|
0 | reexec | 2m 23s | Docker mode activated. |
Prechecks | |||
0 | findbugs | 0m 0s | Findbugs executables are not available. |
+1 | hbaseanti | 0m 0s | Patch does not have any anti-patterns. |
+1 | @author | 0m 0s | The patch does not contain any @author tags. |
+1 | test4tests | 0m 0s | The patch appears to include 2 new or modified test files. |
master Compile Tests | |||
0 | mvndep | 0m 1s | Maven dependency ordering for branch |
-1 | mvninstall | 0m 1s | root in master failed. |
-1 | compile | 0m 1s | hbase-client-project in master failed. |
-1 | compile | 0m 1s | hbase-shaded-client-project in master failed. |
-1 | compile | 0m 2s | hbase-common in master failed. |
-1 | compile | 0m 1s | hbase-external-blockcache in master failed. |
-1 | compile | 0m 1s | hbase-http in master failed. |
-1 | compile | 0m 1s | hbase-mapreduce in master failed. |
-1 | compile | 0m 1s | hbase-replication in master failed. |
-1 | compile | 0m 1s | hbase-rest in master failed. |
-1 | compile | 0m 2s | hbase-server in master failed. |
-1 | compile | 0m 2s | hbase-shell in master failed. |
-1 | compile | 0m 1s | hbase-zookeeper in master failed. |
+1 | checkstyle | 0m 12s | master passed |
+1 | shadedjars | 0m 13s | branch has no errors when building our shaded downstream artifacts. |
-1 | javadoc | 0m 2s | hbase-client-project in master failed. |
-1 | javadoc | 0m 1s | hbase-shaded-client-project in master failed. |
-1 | javadoc | 0m 1s | hbase-common in master failed. |
-1 | javadoc | 0m 1s | hbase-external-blockcache in master failed. |
-1 | javadoc | 0m 1s | hbase-http in master failed. |
-1 | javadoc | 0m 1s | hbase-mapreduce in master failed. |
-1 | javadoc | 0m 1s | hbase-replication in master failed. |
-1 | javadoc | 0m 1s | hbase-rest in master failed. |
-1 | javadoc | 0m 1s | hbase-server in master failed. |
-1 | javadoc | 0m 1s | hbase-shell in master failed. |
-1 | javadoc | 0m 1s | hbase-zookeeper in master failed. |
Patch Compile Tests | |||
0 | mvndep | 0m 1s | Maven dependency ordering for patch |
-1 | mvninstall | 0m 1s | root in the patch failed. |
-1 | compile | 0m 1s | hbase-client-project in the patch failed. |
-1 | compile | 0m 2s | hbase-shaded-client-project in the patch failed. |
-1 | compile | 0m 1s | hbase-common in the patch failed. |
-1 | compile | 0m 1s | hbase-external-blockcache in the patch failed. |
-1 | compile | 0m 1s | hbase-http in the patch failed. |
-1 | compile | 0m 1s | hbase-mapreduce in the patch failed. |
-1 | compile | 0m 1s | hbase-replication in the patch failed. |
-1 | compile | 0m 1s | hbase-rest in the patch failed. |
-1 | compile | 0m 2s | hbase-server in the patch failed. |
-1 | compile | 0m 1s | hbase-shell in the patch failed. |
-1 | compile | 0m 1s | hbase-zookeeper in the patch failed. |
-1 | javac | 0m 1s | hbase-client-project in the patch failed. |
-1 | javac | 0m 2s | hbase-shaded-client-project in the patch failed. |
-1 | javac | 0m 1s | hbase-common in the patch failed. |
-1 | javac | 0m 1s | hbase-external-blockcache in the patch failed. |
-1 | javac | 0m 1s | hbase-http in the patch failed. |
-1 | javac | 0m 1s | hbase-mapreduce in the patch failed. |
-1 | javac | 0m 1s | hbase-replication in the patch failed. |
-1 | javac | 0m 1s | hbase-rest in the patch failed. |
-1 | javac | 0m 2s | hbase-server in the patch failed. |
-1 | javac | 0m 1s | hbase-shell in the patch failed. |
-1 | javac | 0m 1s | hbase-zookeeper in the patch failed. |
+1 | checkstyle | 2m 27s | the patch passed |
+1 | whitespace | 0m 0s | The patch has no whitespace issues. |
+1 | xml | 0m 13s | The patch has no ill-formed XML file. |
+1 | shadedjars | 0m 29s | patch has no errors when building our shaded downstream artifacts. |
+1 | hadoopcheck | 1m 2s | Patch does not cause any errors with Hadoop 2.6.5 2.7.4 or 3.0.0. |
-1 | javadoc | 0m 1s | hbase-client-project in the patch failed. |
-1 | javadoc | 0m 16s | hbase-shaded-client-project in the patch failed. |
-1 | javadoc | 0m 16s | hbase-common in the patch failed. |
-1 | javadoc | 0m 16s | hbase-external-blockcache in the patch failed. |
-1 | javadoc | 0m 16s | hbase-http in the patch failed. |
-1 | javadoc | 0m 16s | hbase-mapreduce in the patch failed. |
-1 | javadoc | 0m 17s | hbase-replication in the patch failed. |
-1 | javadoc | 0m 16s | hbase-rest in the patch failed. |
-1 | javadoc | 0m 16s | hbase-server in the patch failed. |
-1 | javadoc | 0m 16s | hbase-shell in the patch failed. |
-1 | javadoc | 0m 16s | hbase-zookeeper in the patch failed. |
Other Tests | |||
-1 | unit | 0m 16s | hbase-client-project in the patch failed. |
-1 | unit | 0m 16s | hbase-shaded-client-project in the patch failed. |
-1 | unit | 0m 16s | hbase-common in the patch failed. |
-1 | unit | 0m 16s | hbase-external-blockcache in the patch failed. |
-1 | unit | 0m 1s | hbase-http in the patch failed. |
-1 | unit | 0m 1s | hbase-mapreduce in the patch failed. |
-1 | unit | 0m 16s | hbase-replication in the patch failed. |
-1 | unit | 0m 16s | hbase-rest in the patch failed. |
-1 | unit | 0m 16s | hbase-server in the patch failed. |
-1 | unit | 0m 16s | hbase-shell in the patch failed. |
-1 | unit | 0m 16s | hbase-zookeeper in the patch failed. |
0 | asflicense | 2m 56s | ASF License check generated no output? |
15m 11s |
This message was automatically generated.
OOME can't create thread.
INFRA found a runaway geode process on this H13 box and killed it:
[12:34 PM] Chris Lambertus (fluxo): jenkins  30598  819  1.9 15906312 1971312 ?    Sl    2017 620757:59 /usr/local/asfpackages/java/jdk1.8.0_152/jre/bin/java
[12:34 PM] Chris Lambertus (fluxo): it's a geode build
BTW, 0.7.0 now really does abort when Jenkins sends a kill signal to Yetus docker containers.
-1 overall |
Vote | Subsystem | Runtime | Comment |
---|---|---|---|
0 | reexec | 0m 10s | Docker mode activated. |
Prechecks | |||
0 | findbugs | 0m 0s | Findbugs executables are not available. |
+1 | hbaseanti | 0m 0s | Patch does not have any anti-patterns. |
+1 | @author | 0m 0s | The patch does not contain any @author tags. |
+1 | test4tests | 0m 0s | The patch appears to include 7 new or modified test files. |
master Compile Tests | |||
0 | mvndep | 1m 25s | Maven dependency ordering for branch |
+1 | mvninstall | 6m 30s | master passed |
+1 | compile | 3m 26s | master passed |
+1 | checkstyle | 2m 12s | master passed |
+1 | shadedjars | 2m 29s | branch has no errors when building our shaded downstream artifacts. |
-1 | javadoc | 0m 18s | hbase-common in master failed. |
-1 | javadoc | 0m 17s | hbase-client in master failed. |
-1 | javadoc | 0m 26s | hbase-zookeeper in master failed. |
-1 | javadoc | 0m 18s | hbase-client-project in master failed. |
-1 | javadoc | 0m 18s | hbase-external-blockcache in master failed. |
-1 | javadoc | 0m 17s | hbase-mapreduce in master failed. |
-1 | javadoc | 0m 17s | hbase-replication in master failed. |
-1 | javadoc | 0m 18s | hbase-rest in master failed. |
-1 | javadoc | 0m 18s | hbase-shell in master failed. |
Patch Compile Tests | |||
0 | mvndep | 0m 18s | Maven dependency ordering for patch |
-1 | mvninstall | 0m 17s | root in the patch failed. |
-1 | compile | 0m 18s | hbase-client-project in the patch failed. |
-1 | compile | 0m 17s | hbase-shaded-client-project in the patch failed. |
-1 | compile | 0m 18s | hbase-client in the patch failed. |
-1 | compile | 0m 12s | hbase-mapreduce in the patch failed. |
-1 | compile | 0m 18s | hbase-replication in the patch failed. |
-1 | compile | 0m 24s | hbase-rest in the patch failed. |
-1 | compile | 0m 17s | hbase-server in the patch failed. |
-1 | compile | 0m 3s | hbase-shell in the patch failed. |
-1 | javac | 0m 18s | hbase-client-project in the patch failed. |
-1 | javac | 0m 17s | hbase-shaded-client-project in the patch failed. |
-1 | javac | 0m 18s | hbase-client in the patch failed. |
-1 | javac | 0m 12s | hbase-mapreduce in the patch failed. |
-1 | javac | 0m 18s | hbase-replication in the patch failed. |
-1 | javac | 0m 24s | hbase-rest in the patch failed. |
-1 | javac | 0m 17s | hbase-server in the patch failed. |
-1 | javac | 0m 3s | hbase-shell in the patch failed. |
+1 | checkstyle | 3m 20s | the patch passed |
-1 | whitespace | 0m 0s | The patch has 39 line(s) that end in whitespace. Use git apply --whitespace=fix <<patch_file>>. Refer https://git-scm.com/docs/git-apply |
-1 | whitespace | 0m 1s | The patch 600 line(s) with tabs. |
+1 | xml | 0m 12s | The patch has no ill-formed XML file. |
+1 | shadedjars | 0m 30s | patch has no errors when building our shaded downstream artifacts. |
+1 | hadoopcheck | 1m 24s | Patch does not cause any errors with Hadoop 2.6.5 2.7.4 or 3.0.0. |
-1 | javadoc | 0m 17s | hbase-client-project in the patch failed. |
-1 | javadoc | 0m 17s | hbase-shaded-client-project in the patch failed. |
-1 | javadoc | 0m 18s | hbase-client in the patch failed. |
-1 | javadoc | 0m 22s | hbase-common generated 2 new + 0 unchanged - 0 fixed = 2 total (was 0) |
-1 | javadoc | 0m 3s | hbase-external-blockcache in the patch failed. |
-1 | javadoc | 0m 2s | hbase-http in the patch failed. |
-1 | javadoc | 0m 11s | hbase-mapreduce in the patch failed. |
-1 | javadoc | 0m 16s | hbase-replication in the patch failed. |
-1 | javadoc | 0m 12s | hbase-server in the patch failed. |
-1 | javadoc | 0m 17s | hbase-zookeeper in the patch failed. |
Other Tests | |||
-1 | unit | 0m 18s | hbase-client-project in the patch failed. |
-1 | unit | 0m 17s | hbase-shaded-client-project in the patch failed. |
-1 | unit | 0m 17s | hbase-client in the patch failed. |
-1 | unit | 0m 17s | hbase-common in the patch failed. |
-1 | unit | 0m 17s | hbase-external-blockcache in the patch failed. |
-1 | unit | 0m 4s | hbase-http in the patch failed. |
-1 | unit | 0m 17s | hbase-mapreduce in the patch failed. |
-1 | unit | 0m 19s | hbase-replication in the patch failed. |
-1 | unit | 0m 30s | hbase-rest in the patch failed. |
-1 | unit | 0m 17s | hbase-server in the patch failed. |
-1 | unit | 0m 18s | hbase-shell in the patch failed. |
-1 | unit | 0m 18s | hbase-zookeeper in the patch failed. |
0 | asflicense | 3m 30s | ASF License check generated no output? |
39m 52s |
This message was automatically generated.
I added proclimit on hadoopqa in the config screen
--project=hbase --multijdktests=compile --proclimit=5000
Retrying this patch. Having trouble seeing if this config took. Will come back and make change for nightly once sure of this.
-1 overall |
Vote | Subsystem | Runtime | Comment |
---|---|---|---|
0 | reexec | 0m 9s | Docker mode activated. |
Prechecks | |||
0 | findbugs | 0m 1s | Findbugs executables are not available. |
+1 | hbaseanti | 0m 0s | Patch does not have any anti-patterns. |
+1 | @author | 0m 0s | The patch does not contain any @author tags. |
+1 | test4tests | 0m 0s | The patch appears to include 7 new or modified test files. |
master Compile Tests | |||
0 | mvndep | 0m 11s | Maven dependency ordering for branch |
+1 | mvninstall | 4m 18s | master passed |
+1 | compile | 3m 52s | master passed |
+1 | checkstyle | 3m 47s | master passed |
+1 | shadedjars | 8m 48s | branch has no errors when building our shaded downstream artifacts. |
+1 | javadoc | 3m 10s | master passed |
Patch Compile Tests | |||
0 | mvndep | 0m 13s | Maven dependency ordering for patch |
+1 | mvninstall | 4m 36s | the patch passed |
+1 | compile | 4m 15s | the patch passed |
+1 | javac | 4m 15s | the patch passed |
+1 | checkstyle | 0m 23s | The patch hbase-common passed checkstyle |
+1 | checkstyle | 0m 30s | The patch hbase-client passed checkstyle |
+1 | checkstyle | 0m 12s | The patch hbase-zookeeper passed checkstyle |
+1 | checkstyle | 0m 12s | The patch hbase-replication passed checkstyle |
+1 | checkstyle | 0m 13s | The patch hbase-http passed checkstyle |
+1 | checkstyle | 1m 6s | hbase-server: The patch generated 0 new + 0 unchanged - 3 fixed = 0 total (was 3) |
+1 | checkstyle | 0m 18s | The patch hbase-mapreduce passed checkstyle |
+1 | checkstyle | 0m 10s | The patch hbase-shell passed checkstyle |
+1 | checkstyle | 0m 15s | The patch hbase-rest passed checkstyle |
+1 | checkstyle | 0m 11s | The patch hbase-external-blockcache passed checkstyle |
+1 | checkstyle | 0m 10s | The patch hbase-client-project passed checkstyle |
+1 | checkstyle | 0m 11s | The patch hbase-shaded-client-project passed checkstyle |
+1 | whitespace | 0m 0s | The patch has no whitespace issues. |
+1 | xml | 0m 11s | The patch has no ill-formed XML file. |
+1 | shadedjars | 4m 59s | patch has no errors when building our shaded downstream artifacts. |
+1 | hadoopcheck | 19m 19s | Patch does not cause any errors with Hadoop 2.6.5 2.7.4 or 3.0.0. |
+1 | javadoc | 3m 6s | the patch passed |
Other Tests | |||
+1 | unit | 2m 22s | hbase-common in the patch passed. |
+1 | unit | 3m 2s | hbase-client in the patch passed. |
+1 | unit | 0m 44s | hbase-zookeeper in the patch passed. |
+1 | unit | 0m 19s | hbase-replication in the patch passed. |
+1 | unit | 0m 47s | hbase-http in the patch passed. |
-1 | unit | 23m 5s | hbase-server in the patch failed. |
-1 | unit | 62m 22s | hbase-mapreduce in the patch failed. |
-1 | unit | 13m 4s | hbase-shell in the patch failed. |
-1 | unit | 12m 48s | hbase-rest in the patch failed. |
+1 | unit | 1m 53s | hbase-external-blockcache in the patch passed. |
+1 | unit | 0m 52s | hbase-client-project in the patch passed. |
+1 | unit | 0m 55s | hbase-shaded-client-project in the patch passed. |
+1 | asflicense | 3m 9s | The patch does not generate ASF License warnings. |
182m 48s |
Reason | Tests |
---|---|
Failed junit tests | hadoop.hbase.TestCheckTestClasses |
hadoop.hbase.mapred.TestMultiTableSnapshotInputFormat | |
hadoop.hbase.mapred.TestTableMapReduceUtil | |
hadoop.hbase.snapshot.TestMobSecureExportSnapshot | |
hadoop.hbase.mapred.TestTableSnapshotInputFormat | |
hadoop.hbase.mapreduce.TestTableMapReduce | |
hadoop.hbase.mapreduce.TestTimeRangeMapRed | |
hadoop.hbase.mapreduce.TestCopyTable | |
hadoop.hbase.snapshot.TestSecureExportSnapshot | |
hadoop.hbase.mapreduce.TestTableInputFormat | |
hadoop.hbase.mapreduce.TestImportExport | |
hadoop.hbase.mapreduce.TestSyncTable | |
hadoop.hbase.mapreduce.TestHashTable | |
hadoop.hbase.mapreduce.TestHRegionPartitioner | |
hadoop.hbase.mapreduce.TestImportTSVWithVisibilityLabels | |
hadoop.hbase.mapred.TestTableMapReduce | |
hadoop.hbase.snapshot.TestMobExportSnapshot | |
hadoop.hbase.mapreduce.TestRowCounter | |
hadoop.hbase.mapreduce.TestTableSnapshotInputFormat | |
hadoop.hbase.replication.TestVerifyReplication | |
hadoop.hbase.mapreduce.TestMultiTableSnapshotInputFormat | |
hadoop.hbase.client.TestShell | |
hadoop.hbase.rest.TestVersionResource | |
hadoop.hbase.rest.TestMultiRowResource | |
hadoop.hbase.rest.TestTableResource | |
hadoop.hbase.rest.client.TestRemoteTable | |
hadoop.hbase.rest.TestDeleteRow | |
hadoop.hbase.rest.TestGetAndPutResource | |
hadoop.hbase.rest.TestSchemaResource | |
hadoop.hbase.rest.TestTableScan | |
hadoop.hbase.rest.TestScannersWithLabels | |
hadoop.hbase.rest.TestScannersWithFilters |
Subsystem | Report/Notes |
---|---|
Docker | Client=17.05.0-ce Server=17.05.0-ce Image:yetus/hbase:eee3b01 |
JIRA Issue | |
JIRA Patch URL | https://issues.apache.org/jira/secure/attachment/12908439/HBASE-19887-v1.patch |
Optional Tests | asflicense javac javadoc unit shadedjars hadoopcheck xml compile findbugs hbaseanti checkstyle |
uname | Linux 0ebbe71b4fd7 3.13.0-139-generic #188-Ubuntu SMP Tue Jan 9 14:43:09 UTC 2018 x86_64 GNU/Linux |
Build tool | maven |
Personality | /home/jenkins/jenkins-slave/workspace/PreCommit-HBASE-Build/component/dev-support/hbase-personality.sh |
git revision | master / 08bcd64c25 |
maven | version: Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T07:58:13Z) |
Default Java | 1.8.0_151 |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11269/artifact/patchprocess/patch-unit-hbase-server.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11269/artifact/patchprocess/patch-unit-hbase-mapreduce.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11269/artifact/patchprocess/patch-unit-hbase-shell.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11269/artifact/patchprocess/patch-unit-hbase-rest.txt |
Test Results | https://builds.apache.org/job/PreCommit-HBASE-Build/11269/testReport/ |
Max. process+thread count | 2795 (vs. ulimit of 5000) |
modules | C: hbase-common hbase-client hbase-zookeeper hbase-replication hbase-http hbase-server hbase-mapreduce hbase-shell hbase-rest hbase-external-blockcache hbase-archetypes/hbase-client-project hbase-archetypes/hbase-shaded-client-project U: . |
Console output | https://builds.apache.org/job/PreCommit-HBASE-Build/11269/console |
Powered by | Apache Yetus 0.7.0 http://yetus.apache.org |
This message was automatically generated.
Looks like the proclimit is working
2795 (vs. ulimit of 5000)
Maybe I can get away w/ setting it to 4k.
I think the failures here are legit.
Let me go check elsewhere.
These tests pass locally. Retry. See what diff is when this completes.
2018-01-30 23:33:04,600 WARN [org.apache.hadoop.util.JvmPauseMonitor$Monitor@2283f776] util.JvmPauseMonitor$Monitor(191): Detected pause in JVM or host machine (eg GC): pause of approximately 22456ms GC pool 'PS MarkSweep' had collection(s): count=1 time=22224ms GC pool 'PS Scavenge' had collection(s): count=1 time=37ms 2018-01-30 23:33:04,706 WARN [org.apache.hadoop.util.JvmPauseMonitor$Monitor@15ae822c] util.JvmPauseMonitor$Monitor(191): Detected pause in JVM or host machine (eg GC): pause of approximately 22384ms GC pool 'PS MarkSweep' had collection(s): count=1 time=22224ms GC pool 'PS Scavenge' had collection(s): count=1 time=37ms 2018-01-30 23:33:04,600 WARN [org.apache.hadoop.util.JvmPauseMonitor$Monitor@4cb494dc] util.JvmPauseMonitor$Monitor(191): Detected pause in JVM or host machine (eg GC): pause of approximately 22635ms GC pool 'PS MarkSweep' had collection(s): count=1 time=22224ms GC pool 'PS Scavenge' had collection(s): count=1 time=37ms 2018-01-30 23:33:04,600 WARN [org.apache.hadoop.util.JvmPauseMonitor$Monitor@52a219e] util.JvmPauseMonitor$Monitor(191): Detected pause in JVM or host machine (eg GC): pause of approximately 22473ms GC pool 'PS MarkSweep' had collection(s): count=1 time=22224ms GC pool 'PS Scavenge' had collection(s): count=1 time=37ms
OOM?
The complaint today has been OOME because can't create a thread... don't see that here.... Something else... Will look in second.
-1 overall |
Vote | Subsystem | Runtime | Comment |
---|---|---|---|
0 | reexec | 1m 17s | Docker mode activated. |
Prechecks | |||
0 | findbugs | 0m 0s | Findbugs executables are not available. |
+1 | hbaseanti | 0m 0s | Patch does not have any anti-patterns. |
+1 | @author | 0m 1s | The patch does not contain any @author tags. |
+1 | test4tests | 0m 0s | The patch appears to include 7 new or modified test files. |
master Compile Tests | |||
0 | mvndep | 0m 34s | Maven dependency ordering for branch |
+1 | mvninstall | 5m 17s | master passed |
+1 | compile | 4m 7s | master passed |
+1 | checkstyle | 3m 52s | master passed |
+1 | shadedjars | 9m 1s | branch has no errors when building our shaded downstream artifacts. |
+1 | javadoc | 3m 25s | master passed |
Patch Compile Tests | |||
0 | mvndep | 0m 13s | Maven dependency ordering for patch |
+1 | mvninstall | 4m 43s | the patch passed |
+1 | compile | 4m 15s | the patch passed |
+1 | javac | 4m 15s | the patch passed |
+1 | checkstyle | 0m 24s | The patch hbase-common passed checkstyle |
+1 | checkstyle | 0m 28s | The patch hbase-client passed checkstyle |
+1 | checkstyle | 0m 12s | The patch hbase-zookeeper passed checkstyle |
+1 | checkstyle | 0m 11s | The patch hbase-replication passed checkstyle |
+1 | checkstyle | 0m 12s | The patch hbase-http passed checkstyle |
+1 | checkstyle | 1m 8s | hbase-server: The patch generated 0 new + 0 unchanged - 3 fixed = 0 total (was 3) |
+1 | checkstyle | 0m 18s | The patch hbase-mapreduce passed checkstyle |
+1 | checkstyle | 0m 11s | The patch hbase-shell passed checkstyle |
+1 | checkstyle | 0m 17s | The patch hbase-rest passed checkstyle |
+1 | checkstyle | 0m 10s | The patch hbase-external-blockcache passed checkstyle |
+1 | checkstyle | 0m 10s | The patch hbase-client-project passed checkstyle |
+1 | checkstyle | 0m 11s | The patch hbase-shaded-client-project passed checkstyle |
+1 | whitespace | 0m 0s | The patch has no whitespace issues. |
+1 | xml | 0m 13s | The patch has no ill-formed XML file. |
+1 | shadedjars | 5m 5s | patch has no errors when building our shaded downstream artifacts. |
+1 | hadoopcheck | 20m 37s | Patch does not cause any errors with Hadoop 2.6.5 2.7.4 or 3.0.0. |
+1 | javadoc | 3m 8s | the patch passed |
Other Tests | |||
+1 | unit | 2m 32s | hbase-common in the patch passed. |
+1 | unit | 3m 14s | hbase-client in the patch passed. |
+1 | unit | 0m 43s | hbase-zookeeper in the patch passed. |
+1 | unit | 0m 20s | hbase-replication in the patch passed. |
+1 | unit | 0m 46s | hbase-http in the patch passed. |
-1 | unit | 34m 30s | hbase-server in the patch failed. |
-1 | unit | 56m 20s | hbase-mapreduce in the patch failed. |
-1 | unit | 11m 16s | hbase-shell in the patch failed. |
-1 | unit | 8m 15s | hbase-rest in the patch failed. |
+1 | unit | 0m 34s | hbase-external-blockcache in the patch passed. |
+1 | unit | 0m 56s | hbase-client-project in the patch passed. |
+1 | unit | 0m 48s | hbase-shaded-client-project in the patch passed. |
+1 | asflicense | 4m 15s | The patch does not generate ASF License warnings. |
186m 38s |
Reason | Tests |
---|---|
Failed junit tests | hadoop.hbase.master.balancer.TestRegionLocationFinder |
hadoop.hbase.favored.TestFavoredNodeAssignmentHelper | |
hadoop.hbase.coprocessor.TestCoprocessorShortCircuitRPC | |
hadoop.hbase.TestCheckTestClasses | |
hadoop.hbase.io.hfile.bucket.TestBucketCache | |
hadoop.hbase.mapreduce.TestWALRecordReader | |
hadoop.hbase.snapshot.TestMobSecureExportSnapshot | |
hadoop.hbase.mapreduce.TestTableInputFormatScan1 | |
hadoop.hbase.mapreduce.TestTableInputFormatScan2 | |
hadoop.hbase.mapreduce.TestMultiTableSnapshotInputFormat | |
hadoop.hbase.mapred.TestTableMapReduceUtil | |
hadoop.hbase.mapreduce.TestImportTSVWithVisibilityLabels | |
hadoop.hbase.mapreduce.TestHFileOutputFormat2 | |
hadoop.hbase.mapreduce.TestCellCounter | |
hadoop.hbase.mapreduce.TestImportExport | |
hadoop.hbase.replication.TestVerifyReplication | |
hadoop.hbase.mapred.TestMultiTableSnapshotInputFormat | |
hadoop.hbase.mapreduce.TestMultiTableInputFormat | |
hadoop.hbase.mapreduce.TestImportTSVWithTTLs | |
hadoop.hbase.mapreduce.TestTableMapReduce | |
hadoop.hbase.mapreduce.TestMultithreadedTableMapper | |
hadoop.hbase.client.TestShell | |
hadoop.hbase.client.TestReplicationShell | |
hadoop.hbase.rest.TestGetAndPutResource | |
hadoop.hbase.rest.TestNamespacesResource |
Subsystem | Report/Notes |
---|---|
Docker | Client=17.05.0-ce Server=17.05.0-ce Image:yetus/hbase:eee3b01 |
JIRA Issue | |
JIRA Patch URL | https://issues.apache.org/jira/secure/attachment/12908466/HBASE-19887-v1.patch |
Optional Tests | asflicense javac javadoc unit shadedjars hadoopcheck xml compile findbugs hbaseanti checkstyle |
uname | Linux 927c26d19c31 3.13.0-133-generic #182-Ubuntu SMP Tue Sep 19 15:49:21 UTC 2017 x86_64 GNU/Linux |
Build tool | maven |
Personality | /home/jenkins/jenkins-slave/workspace/PreCommit-HBASE-Build@2/component/dev-support/hbase-personality.sh |
git revision | master / 08bcd64c25 |
maven | version: Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T07:58:13Z) |
Default Java | 1.8.0_151 |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11275/artifact/patchprocess/patch-unit-hbase-server.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11275/artifact/patchprocess/patch-unit-hbase-mapreduce.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11275/artifact/patchprocess/patch-unit-hbase-shell.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11275/artifact/patchprocess/patch-unit-hbase-rest.txt |
Test Results | https://builds.apache.org/job/PreCommit-HBASE-Build/11275/testReport/ |
Max. process+thread count | 2078 (vs. ulimit of 5000) |
modules | C: hbase-common hbase-client hbase-zookeeper hbase-replication hbase-http hbase-server hbase-mapreduce hbase-shell hbase-rest hbase-external-blockcache hbase-archetypes/hbase-client-project hbase-archetypes/hbase-shaded-client-project U: . |
Console output | https://builds.apache.org/job/PreCommit-HBASE-Build/11275/console |
Powered by | Apache Yetus 0.7.0 http://yetus.apache.org |
This message was automatically generated.
I set hadoopqa back to yetus 0.6. 0 and resubmitted this patch. Its running here:
https://builds.apache.org/job/PreCommit-HBASE-Build/11281/console
But it's running the wrong patch...
We need to remove all the HBASE-19887.patch...
Thanks Apache9 yeah. Realized later. Just trying to see if changing yetus makes things sensible again ... Doubt it, but checking, and maybe the extra machine reports will give us a clue as to what is going on or maybe ammunition to go back to INFRA with....
-1 overall |
Vote | Subsystem | Runtime | Comment |
---|---|---|---|
0 | reexec | 0m 10s | Docker mode activated. |
Prechecks | |||
0 | findbugs | 0m 0s | Findbugs executables are not available. |
+1 | hbaseanti | 0m 0s | Patch does not have any anti-patterns. |
+1 | @author | 0m 0s | The patch does not contain any @author tags. |
+1 | test4tests | 0m 0s | The patch appears to include 2 new or modified test files. |
master Compile Tests | |||
0 | mvndep | 0m 17s | Maven dependency ordering for branch |
+1 | mvninstall | 4m 39s | master passed |
+1 | compile | 3m 48s | master passed |
+1 | checkstyle | 3m 25s | master passed |
+1 | shadedjars | 8m 21s | branch has no errors when building our shaded downstream artifacts. |
+1 | javadoc | 2m 40s | master passed |
Patch Compile Tests | |||
0 | mvndep | 0m 12s | Maven dependency ordering for patch |
+1 | mvninstall | 4m 41s | the patch passed |
+1 | compile | 3m 51s | the patch passed |
+1 | javac | 3m 51s | the patch passed |
+1 | checkstyle | 3m 25s | the patch passed |
+1 | whitespace | 0m 0s | The patch has no whitespace issues. |
+1 | xml | 0m 14s | The patch has no ill-formed XML file. |
+1 | shadedjars | 5m 9s | patch has no errors when building our shaded downstream artifacts. |
+1 | hadoopcheck | 19m 11s | Patch does not cause any errors with Hadoop 2.6.5 2.7.4 or 3.0.0. |
+1 | javadoc | 2m 43s | the patch passed |
Other Tests | |||
+1 | unit | 2m 33s | hbase-common in the patch passed. |
+1 | unit | 0m 54s | hbase-zookeeper in the patch passed. |
+1 | unit | 0m 23s | hbase-replication in the patch passed. |
+1 | unit | 0m 53s | hbase-http in the patch passed. |
-1 | unit | 23m 52s | hbase-server in the patch failed. |
+1 | unit | 15m 59s | hbase-mapreduce in the patch passed. |
+1 | unit | 7m 46s | hbase-shell in the patch passed. |
+1 | unit | 3m 48s | hbase-rest in the patch passed. |
+1 | unit | 0m 26s | hbase-external-blockcache in the patch passed. |
+1 | unit | 0m 52s | hbase-client-project in the patch passed. |
+1 | unit | 0m 54s | hbase-shaded-client-project in the patch passed. |
+1 | asflicense | 2m 42s | The patch does not generate ASF License warnings. |
116m 25s |
Reason | Tests |
---|---|
Failed junit tests | TEST-null |
hadoop.hbase.util.TestPoolMap |
Subsystem | Report/Notes |
---|---|
Docker | Client=17.05.0-ce Server=17.05.0-ce Image:yetus/hbase:eee3b01 |
JIRA Issue | |
JIRA Patch URL | https://issues.apache.org/jira/secure/attachment/12908412/HBASE-19887.patch |
Optional Tests | asflicense javac javadoc unit shadedjars hadoopcheck xml compile findbugs hbaseanti checkstyle |
uname | Linux 3360b0675de0 3.13.0-139-generic #188-Ubuntu SMP Tue Jan 9 14:43:09 UTC 2018 x86_64 GNU/Linux |
Build tool | maven |
Personality | /home/jenkins/jenkins-slave/workspace/PreCommit-HBASE-Build@2/component/dev-support/hbase-personality.sh |
git revision | master / 08bcd64c25 |
maven | version: Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T07:58:13Z) |
Default Java | 1.8.0_151 |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11281/artifact/patchprocess/patch-unit-hbase-server.txt |
Test Results | https://builds.apache.org/job/PreCommit-HBASE-Build/11281/testReport/ |
modules | C: hbase-common hbase-zookeeper hbase-replication hbase-http hbase-server hbase-mapreduce hbase-shell hbase-rest hbase-external-blockcache hbase-archetypes/hbase-client-project hbase-archetypes/hbase-shaded-client-project U: . |
Console output | https://builds.apache.org/job/PreCommit-HBASE-Build/11281/console |
Powered by | Apache Yetus 0.6.0 http://yetus.apache.org |
This message was automatically generated.
-1 overall |
Vote | Subsystem | Runtime | Comment |
---|---|---|---|
0 | reexec | 0m 14s | Docker mode activated. |
Prechecks | |||
0 | findbugs | 0m 0s | Findbugs executables are not available. |
+1 | hbaseanti | 0m 0s | Patch does not have any anti-patterns. |
+1 | @author | 0m 0s | The patch does not contain any @author tags. |
+1 | test4tests | 0m 0s | The patch appears to include 2 new or modified test files. |
master Compile Tests | |||
0 | mvndep | 0m 41s | Maven dependency ordering for branch |
+1 | mvninstall | 4m 47s | master passed |
+1 | compile | 3m 45s | master passed |
+1 | checkstyle | 2m 59s | master passed |
+1 | shadedjars | 7m 23s | branch has no errors when building our shaded downstream artifacts. |
+1 | javadoc | 2m 35s | master passed |
Patch Compile Tests | |||
0 | mvndep | 0m 17s | Maven dependency ordering for patch |
+1 | mvninstall | 4m 20s | the patch passed |
+1 | compile | 4m 0s | the patch passed |
+1 | javac | 4m 0s | the patch passed |
+1 | checkstyle | 3m 7s | the patch passed |
+1 | whitespace | 0m 0s | The patch has no whitespace issues. |
+1 | xml | 0m 13s | The patch has no ill-formed XML file. |
+1 | shadedjars | 4m 34s | patch has no errors when building our shaded downstream artifacts. |
+1 | hadoopcheck | 18m 29s | Patch does not cause any errors with Hadoop 2.6.5 2.7.4 or 3.0.0. |
+1 | javadoc | 2m 32s | the patch passed |
Other Tests | |||
+1 | unit | 2m 34s | hbase-common in the patch passed. |
+1 | unit | 0m 44s | hbase-zookeeper in the patch passed. |
+1 | unit | 0m 20s | hbase-replication in the patch passed. |
+1 | unit | 0m 47s | hbase-http in the patch passed. |
-1 | unit | 23m 53s | hbase-server in the patch failed. |
+1 | unit | 16m 17s | hbase-mapreduce in the patch passed. |
+1 | unit | 7m 44s | hbase-shell in the patch passed. |
+1 | unit | 4m 5s | hbase-rest in the patch passed. |
+1 | unit | 0m 18s | hbase-external-blockcache in the patch passed. |
+1 | unit | 0m 55s | hbase-client-project in the patch passed. |
+1 | unit | 1m 2s | hbase-shaded-client-project in the patch passed. |
+1 | asflicense | 2m 27s | The patch does not generate ASF License warnings. |
114m 42s |
Reason | Tests |
---|---|
Failed junit tests | TEST-null |
hadoop.hbase.util.TestPoolMap |
Subsystem | Report/Notes |
---|---|
Docker | Client=17.05.0-ce Server=17.05.0-ce Image:yetus/hbase:eee3b01 |
JIRA Issue | |
JIRA Patch URL | https://issues.apache.org/jira/secure/attachment/12908412/HBASE-19887.patch |
Optional Tests | asflicense javac javadoc unit shadedjars hadoopcheck xml compile findbugs hbaseanti checkstyle |
uname | Linux c020b00945a5 4.4.0-43-generic #63-Ubuntu SMP Wed Oct 12 13:48:03 UTC 2016 x86_64 GNU/Linux |
Build tool | maven |
Personality | /home/jenkins/jenkins-slave/workspace/PreCommit-HBASE-Build/component/dev-support/hbase-personality.sh |
git revision | master / f7faad0477 |
maven | version: Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T07:58:13Z) |
Default Java | 1.8.0_151 |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11282/artifact/patchprocess/patch-unit-hbase-server.txt |
Test Results | https://builds.apache.org/job/PreCommit-HBASE-Build/11282/testReport/ |
modules | C: hbase-common hbase-zookeeper hbase-replication hbase-http hbase-server hbase-mapreduce hbase-shell hbase-rest hbase-external-blockcache hbase-archetypes/hbase-client-project hbase-archetypes/hbase-shaded-client-project U: . |
Console output | https://builds.apache.org/job/PreCommit-HBASE-Build/11282/console |
Powered by | Apache Yetus 0.6.0 http://yetus.apache.org |
This message was automatically generated.
-1 overall |
Vote | Subsystem | Runtime | Comment |
---|---|---|---|
0 | reexec | 0m 29s | Docker mode activated. |
Prechecks | |||
0 | findbugs | 0m 0s | Findbugs executables are not available. |
+1 | hbaseanti | 0m 0s | Patch does not have any anti-patterns. |
+1 | @author | 0m 0s | The patch does not contain any @author tags. |
+1 | test4tests | 0m 0s | The patch appears to include 7 new or modified test files. |
master Compile Tests | |||
0 | mvndep | 1m 22s | Maven dependency ordering for branch |
+1 | mvninstall | 6m 46s | master passed |
+1 | compile | 3m 54s | master passed |
+1 | checkstyle | 3m 40s | master passed |
+1 | shadedjars | 8m 43s | branch has no errors when building our shaded downstream artifacts. |
+1 | javadoc | 3m 22s | master passed |
Patch Compile Tests | |||
0 | mvndep | 0m 17s | Maven dependency ordering for patch |
+1 | mvninstall | 5m 0s | the patch passed |
+1 | compile | 4m 28s | the patch passed |
+1 | javac | 4m 28s | the patch passed |
+1 | checkstyle | 0m 27s | The patch hbase-common passed checkstyle |
+1 | checkstyle | 0m 31s | The patch hbase-client passed checkstyle |
+1 | checkstyle | 0m 13s | The patch hbase-zookeeper passed checkstyle |
+1 | checkstyle | 0m 11s | The patch hbase-replication passed checkstyle |
+1 | checkstyle | 0m 14s | The patch hbase-http passed checkstyle |
+1 | checkstyle | 1m 13s | hbase-server: The patch generated 0 new + 0 unchanged - 3 fixed = 0 total (was 3) |
+1 | checkstyle | 0m 19s | The patch hbase-mapreduce passed checkstyle |
+1 | checkstyle | 0m 12s | The patch hbase-shell passed checkstyle |
+1 | checkstyle | 0m 17s | The patch hbase-rest passed checkstyle |
+1 | checkstyle | 0m 10s | The patch hbase-external-blockcache passed checkstyle |
+1 | checkstyle | 0m 11s | The patch hbase-client-project passed checkstyle |
+1 | checkstyle | 0m 11s | The patch hbase-shaded-client-project passed checkstyle |
+1 | whitespace | 0m 0s | The patch has no whitespace issues. |
+1 | xml | 0m 13s | The patch has no ill-formed XML file. |
+1 | shadedjars | 5m 15s | patch has no errors when building our shaded downstream artifacts. |
+1 | hadoopcheck | 20m 49s | Patch does not cause any errors with Hadoop 2.6.5 2.7.4 or 3.0.0. |
+1 | javadoc | 3m 10s | the patch passed |
Other Tests | |||
+1 | unit | 2m 30s | hbase-common in the patch passed. |
+1 | unit | 3m 16s | hbase-client in the patch passed. |
+1 | unit | 0m 43s | hbase-zookeeper in the patch passed. |
+1 | unit | 0m 20s | hbase-replication in the patch passed. |
+1 | unit | 0m 48s | hbase-http in the patch passed. |
-1 | unit | 126m 41s | hbase-server in the patch failed. |
+1 | unit | 14m 26s | hbase-mapreduce in the patch passed. |
-1 | unit | 10m 39s | hbase-shell in the patch failed. |
+1 | unit | 4m 20s | hbase-rest in the patch passed. |
+1 | unit | 0m 27s | hbase-external-blockcache in the patch passed. |
+1 | unit | 1m 4s | hbase-client-project in the patch passed. |
+1 | unit | 1m 2s | hbase-shaded-client-project in the patch passed. |
+1 | asflicense | 3m 55s | The patch does not generate ASF License warnings. |
234m 15s |
Reason | Tests |
---|---|
Failed junit tests | hadoop.hbase.TestZooKeeper |
hadoop.hbase.client.TestShell |
Subsystem | Report/Notes |
---|---|
Docker | Client=17.05.0-ce Server=17.05.0-ce Image:yetus/hbase:eee3b01 |
JIRA Issue | |
JIRA Patch URL | https://issues.apache.org/jira/secure/attachment/12908515/HBASE-19887-v1.patch |
Optional Tests | asflicense javac javadoc unit shadedjars hadoopcheck xml compile findbugs hbaseanti checkstyle |
uname | Linux a506493ae3b2 3.13.0-135-generic #184-Ubuntu SMP Wed Oct 18 11:55:51 UTC 2017 x86_64 GNU/Linux |
Build tool | maven |
Personality | /home/jenkins/jenkins-slave/workspace/PreCommit-HBASE-Build@2/component/dev-support/hbase-personality.sh |
git revision | master / 2e6bc12441 |
maven | version: Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T07:58:13Z) |
Default Java | 1.8.0_151 |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11286/artifact/patchprocess/patch-unit-hbase-server.txt |
unit | https://builds.apache.org/job/PreCommit-HBASE-Build/11286/artifact/patchprocess/patch-unit-hbase-shell.txt |
Test Results | https://builds.apache.org/job/PreCommit-HBASE-Build/11286/testReport/ |
modules | C: hbase-common hbase-client hbase-zookeeper hbase-replication hbase-http hbase-server hbase-mapreduce hbase-shell hbase-rest hbase-external-blockcache hbase-archetypes/hbase-client-project hbase-archetypes/hbase-shaded-client-project U: . |
Console output | https://builds.apache.org/job/PreCommit-HBASE-Build/11286/console |
Powered by | Apache Yetus 0.6.0 http://yetus.apache.org |
This message was automatically generated.
FAILURE: Integrated in Jenkins build HBase-Trunk_matrix #4502 (See https://builds.apache.org/job/HBase-Trunk_matrix/4502/)
HBASE-19887 Do not overwrite the surefire junit listener property in the (zhangduo: rev 7c318cead902d8aa7c6defe67a6e76509c854d52)
- (edit) hbase-server/pom.xml
- (edit) hbase-common/src/test/java/org/apache/hadoop/hbase/ResourceCheckerJUnitListener.java
- (add) hbase-client/src/test/java/org/apache/hadoop/hbase/util/TestRoundRobinPoolMap.java
- (add) hbase-client/src/test/java/org/apache/hadoop/hbase/util/PoolMapTestBase.java
- (edit) hbase-archetypes/hbase-client-project/pom.xml
- (edit) hbase-http/pom.xml
- (add) hbase-client/src/test/java/org/apache/hadoop/hbase/util/TestThreadLocalPoolMap.java
- (add) hbase-client/src/test/java/org/apache/hadoop/hbase/util/TestReusablePoolMap.java
- (edit) hbase-zookeeper/pom.xml
- (edit) hbase-replication/pom.xml
- (edit) hbase-archetypes/hbase-shaded-client-project/pom.xml
- (edit) hbase-rest/pom.xml
- (edit) hbase-mapreduce/pom.xml
- (edit) hbase-shell/pom.xml
- (delete) hbase-server/src/test/java/org/apache/hadoop/hbase/util/TestPoolMap.java
- (delete) hbase-server/src/test/java/org/apache/hadoop/hbase/ServerResourceCheckerJUnitListener.java
- (edit) hbase-external-blockcache/pom.xml
Chances are that the unit tests are going over the 5k mark. The number in the output is what was measured as successfully launched in a given interval. It does not measure how many threads were attempted. One way to further test this is to set proclimit to something higher (like 10k) and running on H30 which has a higher UserTasksMax configured.
aw Thanks for coming by again boss. Yeah, was starting to arrive at proclimit as root. HBASE-19902 is where I'm working on this if you want to avoid having to look across hbase issues. Thanks again for the help.
HBASE-19887This message was automatically generated.