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

HBASE-22758 Remove the unneccesary info cf deletion in DeleteTableProcedure#deleteFromMeta #424

Merged
merged 1 commit into from
Jul 30, 2019

Conversation

openinx
Copy link
Member

@openinx openinx commented Jul 28, 2019

No description provided.

@openinx openinx requested review from apurtell, Apache9 and saintstack and removed request for apurtell July 28, 2019 06:06
@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 42 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+1 @author 0 The patch does not contain any @author tags.
-0 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.
_ master Compile Tests _
0 mvndep 23 Maven dependency ordering for branch
+1 mvninstall 290 master passed
+1 compile 76 master passed
+1 checkstyle 105 master passed
+1 shadedjars 267 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 53 master passed
0 spotbugs 228 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 291 master passed
_ Patch Compile Tests _
0 mvndep 16 Maven dependency ordering for patch
+1 mvninstall 305 the patch passed
+1 compile 79 the patch passed
+1 javac 79 the patch passed
+1 checkstyle 102 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 272 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 893 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 64 the patch passed
+1 findbugs 317 the patch passed
_ Other Tests _
+1 unit 104 hbase-client in the patch passed.
-1 unit 8270 hbase-server in the patch failed.
+1 asflicense 45 The patch does not generate ASF License warnings.
12012
Reason Tests
Failed junit tests hadoop.hbase.TestJMXListener
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/1/artifact/out/Dockerfile
GITHUB PR #424
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 8991af9e6933 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revision master / 064f5f1
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/1/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/1/testReport/
Max. process+thread count 4807 (vs. ulimit of 10000)
modules C: hbase-client hbase-server U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/1/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

Copy link
Contributor

@Apache9 Apache9 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And I think the intention here is that, after the deletion, typically there should be no remaining rows, so the scan will return immediately?

@@ -1819,7 +1819,8 @@ private static void updateLocation(Connection connection, RegionInfo regionInfo,
* @param regionInfo region to be deleted from META
* @throws IOException
*/
public static void deleteRegion(Connection connection, RegionInfo regionInfo) throws IOException {
public static void deleteRegionInfo(Connection connection, RegionInfo regionInfo)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why change the method name?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because the method only delete the info column family (will keep other cf), so name it deleteRegionInfo will be better.

@@ -1832,16 +1833,17 @@ public static void deleteRegion(Connection connection, RegionInfo regionInfo) th
* @param connection connection we're using
* @param regionsInfo list of regions to be deleted from META
*/
public static void deleteRegions(Connection connection, List<RegionInfo> regionsInfo)
public static void deleteRegionsInfo(Connection connection, List<RegionInfo> regionsInfo)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And this should be deleteRegionInfos?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good, will do.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 54 Docker mode activated.
_ Prechecks _
+1 dupname 1 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+1 @author 0 The patch does not contain any @author tags.
-0 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.
_ master Compile Tests _
0 mvndep 34 Maven dependency ordering for branch
+1 mvninstall 376 master passed
+1 compile 98 master passed
+1 checkstyle 130 master passed
+1 shadedjars 341 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 66 master passed
0 spotbugs 327 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 408 master passed
_ Patch Compile Tests _
0 mvndep 18 Maven dependency ordering for patch
+1 mvninstall 358 the patch passed
+1 compile 102 the patch passed
+1 javac 102 the patch passed
+1 checkstyle 137 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 357 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1183 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 70 the patch passed
+1 findbugs 404 the patch passed
_ Other Tests _
+1 unit 142 hbase-client in the patch passed.
-1 unit 19010 hbase-server in the patch failed.
+1 asflicense 55 The patch does not generate ASF License warnings.
23839
Reason Tests
Failed junit tests hadoop.hbase.master.assignment.TestTransitRegionStateProcedure
hadoop.hbase.TestAcidGuaranteesWithBasicPolicy
hadoop.hbase.master.procedure.TestSCPWithoutZKCoordinated
hadoop.hbase.filter.TestFuzzyRowFilterEndToEnd
hadoop.hbase.master.procedure.TestIgnoreUnknownFamily
hadoop.hbase.snapshot.TestFlushSnapshotFromClient
hadoop.hbase.master.TestMasterMetricsWrapper
hadoop.hbase.master.TestMasterShutdown
hadoop.hbase.master.TestDLSFSHLog
hadoop.hbase.master.procedure.TestSCPWithMetaWithoutZKCoordinated
hadoop.hbase.tool.TestSecureBulkLoadHFiles
hadoop.hbase.client.TestAsyncTableAdminApi
hadoop.hbase.filter.TestFilterWrapper
hadoop.hbase.TestPartialResultsFromClientSide
hadoop.hbase.master.normalizer.TestSimpleRegionNormalizerOnCluster
hadoop.hbase.master.procedure.TestSCPWithReplicas
hadoop.hbase.master.procedure.TestSafemodeBringsDownMaster
hadoop.hbase.master.assignment.TestSplitTableRegionProcedure
hadoop.hbase.TestRegionRebalancing
hadoop.hbase.filter.TestFilterWithScanLimits
hadoop.hbase.master.TestRetainAssignmentOnRestart
hadoop.hbase.master.assignment.TestMergeTableRegionsProcedure
hadoop.hbase.snapshot.TestMobRestoreFlushSnapshotFromClient
hadoop.hbase.snapshot.TestRestoreFlushSnapshotFromClient
hadoop.hbase.master.TestClusterRestartFailoverSplitWithoutZk
hadoop.hbase.TestAcidGuaranteesWithEagerPolicy
hadoop.hbase.master.procedure.TestReopenTableRegionsProcedureInfiniteLoop
hadoop.hbase.master.TestMasterFileSystemWithWALDir
hadoop.hbase.master.TestMigrateNamespaceTable
hadoop.hbase.master.procedure.TestSCP
hadoop.hbase.master.TestServerCrashProcedureStuck
hadoop.hbase.replication.TestReplicationSmallTests
hadoop.hbase.master.TestCloseAnOpeningRegion
hadoop.hbase.master.procedure.TestCreateNamespaceProcedure
hadoop.hbase.master.TestMasterStatusServlet
hadoop.hbase.master.procedure.TestTableDescriptorModificationFromClient
hadoop.hbase.master.balancer.TestRegionLocationFinder
hadoop.hbase.master.procedure.TestProcedurePriority
hadoop.hbase.snapshot.TestRegionSnapshotTask
hadoop.hbase.master.TestGetLastFlushedSequenceId
hadoop.hbase.backup.TestHFileArchiving
hadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.master.procedure.TestSCPWithMetaWithReplicas
hadoop.hbase.TestMetaTableAccessor
hadoop.hbase.replication.TestReplicationSmallTestsSync
hadoop.hbase.master.procedure.TestSCPWithMetaWithReplicasWithoutZKCoordinated
hadoop.hbase.util.TestFromClientSide3WoUnsafe
hadoop.hbase.tool.TestBulkLoadHFiles
hadoop.hbase.filter.TestScanRowPrefix
hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient
hadoop.hbase.master.procedure.TestDeleteTableProcedure
hadoop.hbase.master.TestMirroringTableStateManager
hadoop.hbase.replication.multiwal.TestReplicationEndpointWithMultipleAsyncWAL
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/2/artifact/out/Dockerfile
GITHUB PR #424
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux fe26bd5363f2 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revision master / 7294af8
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/2/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/2/testReport/
Max. process+thread count 4720 (vs. ulimit of 10000)
modules C: hbase-client hbase-server U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/2/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 188 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+1 @author 0 The patch does not contain any @author tags.
-0 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.
_ master Compile Tests _
0 mvndep 53 Maven dependency ordering for branch
+1 mvninstall 477 master passed
+1 compile 97 master passed
+1 checkstyle 142 master passed
+1 shadedjars 398 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 71 master passed
0 spotbugs 307 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 393 master passed
_ Patch Compile Tests _
0 mvndep 17 Maven dependency ordering for patch
+1 mvninstall 433 the patch passed
+1 compile 103 the patch passed
+1 javac 103 the patch passed
+1 checkstyle 150 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 397 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1226 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 68 the patch passed
+1 findbugs 422 the patch passed
_ Other Tests _
+1 unit 129 hbase-client in the patch passed.
-1 unit 18828 hbase-server in the patch failed.
+1 asflicense 52 The patch does not generate ASF License warnings.
24140
Reason Tests
Failed junit tests hadoop.hbase.security.access.TestSnapshotScannerHDFSAclController
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/5/artifact/out/Dockerfile
GITHUB PR #424
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux ce66ad65fe7a 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424@2/out/precommit/personality/provided.sh
git revision master / 41490e7
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/5/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/5/testReport/
Max. process+thread count 4781 (vs. ulimit of 10000)
modules C: hbase-client hbase-server U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/5/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 77 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+1 @author 0 The patch does not contain any @author tags.
-0 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.
_ master Compile Tests _
0 mvndep 13 Maven dependency ordering for branch
-1 mvninstall 318 root in master failed.
+1 compile 79 master passed
+1 checkstyle 107 master passed
+1 shadedjars 264 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 50 master passed
0 spotbugs 255 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 318 master passed
_ Patch Compile Tests _
0 mvndep 14 Maven dependency ordering for patch
-1 mvninstall 303 root in the patch failed.
+1 compile 78 the patch passed
+1 javac 78 the patch passed
+1 checkstyle 108 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 276 patch has no errors when building our shaded downstream artifacts.
-1 hadoopcheck 308 The patch causes 10 errors with Hadoop v2.8.5.
-1 hadoopcheck 617 The patch causes 10 errors with Hadoop v2.9.2.
-1 hadoopcheck 942 The patch causes 10 errors with Hadoop v3.1.2.
+1 javadoc 55 the patch passed
+1 findbugs 318 the patch passed
_ Other Tests _
+1 unit 104 hbase-client in the patch passed.
-1 unit 20710 hbase-server in the patch failed.
+1 asflicense 60 The patch does not generate ASF License warnings.
24298
Reason Tests
Failed junit tests hadoop.hbase.client.TestCloneSnapshotFromClientNormal
hadoop.hbase.tool.TestSecureBulkLoadHFiles
hadoop.hbase.replication.TestReplicationKillSlaveRSWithSeparateOldWALs
hadoop.hbase.regionserver.TestRegionReplicaFailover
hadoop.hbase.client.TestSnapshotCloneIndependence
hadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.client.TestAsyncTableAdminApi
hadoop.hbase.master.procedure.TestSCPWithReplicasWithoutZKCoordinated
hadoop.hbase.replication.TestReplicationSmallTestsSync
hadoop.hbase.tool.TestBulkLoadHFiles
hadoop.hbase.util.TestFromClientSide3WoUnsafe
hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
hadoop.hbase.client.TestSnapshotTemporaryDirectory
hadoop.hbase.master.procedure.TestSCPWithReplicas
hadoop.hbase.replication.TestReplicationSmallTests
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/Dockerfile
GITHUB PR #424
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux d2f3d866d1e2 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revision master / 11f30de
Default Java 1.8.0_181
mvninstall https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/branch-mvninstall-root.txt
mvninstall https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-mvninstall-root.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-javac-2.8.5.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-javac-2.9.2.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-javac-3.1.2.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/testReport/
Max. process+thread count 5036 (vs. ulimit of 10000)
modules C: hbase-client hbase-server U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

Copy link
Contributor

@saintstack saintstack left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems good to me (after fixing tests...)

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 67 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+1 @author 0 The patch does not contain any @author tags.
-0 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.
_ master Compile Tests _
0 mvndep 17 Maven dependency ordering for branch
+1 mvninstall 316 master passed
+1 compile 84 master passed
+1 checkstyle 108 master passed
+1 shadedjars 272 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 58 master passed
0 spotbugs 248 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 316 master passed
_ Patch Compile Tests _
0 mvndep 14 Maven dependency ordering for patch
-1 mvninstall 165 root in the patch failed.
-1 compile 52 hbase-server in the patch failed.
-1 javac 52 hbase-server in the patch failed.
+1 checkstyle 107 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
-1 shadedjars 215 patch has 16 errors when building our shaded downstream artifacts.
-1 hadoopcheck 123 The patch causes 16 errors with Hadoop v2.8.5.
-1 hadoopcheck 248 The patch causes 16 errors with Hadoop v2.9.2.
-1 hadoopcheck 380 The patch causes 16 errors with Hadoop v3.1.2.
+1 javadoc 57 the patch passed
-1 findbugs 56 hbase-server in the patch failed.
_ Other Tests _
+1 unit 111 hbase-client in the patch passed.
-1 unit 53 hbase-server in the patch failed.
+1 asflicense 22 The patch does not generate ASF License warnings.
2649
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/Dockerfile
GITHUB PR #424
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 65feddcc6fb7 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revision master / 0c80d5b
Default Java 1.8.0_181
mvninstall https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-mvninstall-root.txt
compile https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-compile-hbase-server.txt
javac https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-compile-hbase-server.txt
shadedjars https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-shadedjars.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-javac-2.8.5.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-javac-2.9.2.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-javac-3.1.2.txt
findbugs https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-findbugs-hbase-server.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/testReport/
Max. process+thread count 293 (vs. ulimit of 10000)
modules C: hbase-client hbase-server U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@openinx
Copy link
Member Author

openinx commented Jul 30, 2019

OK, the new introduced TestCatalogJanitorCluster is depending on the deleteRegions now, it will broke the compiling. Let me update the patch.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
0 reexec 37 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+1 @author 0 The patch does not contain any @author tags.
-0 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.
_ master Compile Tests _
0 mvndep 12 Maven dependency ordering for branch
+1 mvninstall 280 master passed
+1 compile 78 master passed
+1 checkstyle 100 master passed
+1 shadedjars 261 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 53 master passed
0 spotbugs 229 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 290 master passed
_ Patch Compile Tests _
0 mvndep 14 Maven dependency ordering for patch
+1 mvninstall 280 the patch passed
+1 compile 79 the patch passed
+1 javac 79 the patch passed
+1 checkstyle 97 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 254 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 855 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 52 the patch passed
+1 findbugs 304 the patch passed
_ Other Tests _
+1 unit 104 hbase-client in the patch passed.
+1 unit 8380 hbase-server in the patch passed.
+1 asflicense 43 The patch does not generate ASF License warnings.
11934
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/7/artifact/out/Dockerfile
GITHUB PR #424
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux c164298a26ff 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revision master / f68cda3
Default Java 1.8.0_181
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/7/testReport/
Max. process+thread count 4838 (vs. ulimit of 10000)
modules C: hbase-client hbase-server U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/7/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
0 reexec 39 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+1 @author 0 The patch does not contain any @author tags.
+1 test4tests 0 The patch appears to include 1 new or modified test files.
_ master Compile Tests _
0 mvndep 29 Maven dependency ordering for branch
+1 mvninstall 321 master passed
+1 compile 79 master passed
+1 checkstyle 110 master passed
+1 shadedjars 274 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 58 master passed
0 spotbugs 251 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 314 master passed
_ Patch Compile Tests _
0 mvndep 14 Maven dependency ordering for patch
+1 mvninstall 306 the patch passed
+1 compile 81 the patch passed
+1 javac 81 the patch passed
+1 checkstyle 105 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 272 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 985 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 59 the patch passed
+1 findbugs 361 the patch passed
_ Other Tests _
+1 unit 124 hbase-client in the patch passed.
+1 unit 8467 hbase-server in the patch passed.
+1 asflicense 45 The patch does not generate ASF License warnings.
12458
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/9/artifact/out/Dockerfile
GITHUB PR #424
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux d53ab8f09884 4.4.0-157-generic #185-Ubuntu SMP Tue Jul 23 09:17:01 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revision master / 0c80d5b
Default Java 1.8.0_181
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/9/testReport/
Max. process+thread count 4560 (vs. ulimit of 10000)
modules C: hbase-client hbase-server U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/9/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@openinx openinx merged commit c286a31 into apache:master Jul 30, 2019
asfgit pushed a commit that referenced this pull request Jul 30, 2019
asfgit pushed a commit that referenced this pull request Jul 30, 2019
asfgit pushed a commit that referenced this pull request Jul 30, 2019
asfgit pushed a commit that referenced this pull request Jul 30, 2019
infraio pushed a commit to infraio/hbase that referenced this pull request Aug 17, 2020
symat pushed a commit to symat/hbase that referenced this pull request Feb 17, 2021
…cedure#deleteFromMeta (apache#424)

(cherry picked from commit 09751f6)

Change-Id: I2a9eb0f89c018d66e70dd5d3904c848b53cb6e3f
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.

4 participants