Skip to content

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

Merged
openinx merged 1 commit into
apache:masterfrom
openinx:master
Jul 30, 2019
Merged

HBASE-22758 Remove the unneccesary info cf deletion in DeleteTableProcedure#deleteFromMeta#424
openinx merged 1 commit into
apache:masterfrom
openinx:master

Conversation

@openinx

Copy link
Copy Markdown
Member

No description provided.

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

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec42Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
-0test4tests0The 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 _
0mvndep23Maven dependency ordering for branch
+1mvninstall290master passed
+1compile76master passed
+1checkstyle105master passed
+1shadedjars267branch has no errors when building our shaded downstream artifacts.
+1javadoc53master passed
0spotbugs228Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs291master passed
_ Patch Compile Tests _
0mvndep16Maven dependency ordering for patch
+1mvninstall305the patch passed
+1compile79the patch passed
+1javac79the patch passed
+1checkstyle102the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars272patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck893Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc64the patch passed
+1findbugs317the patch passed
_ Other Tests _
+1unit104hbase-client in the patch passed.
-1unit8270hbase-server in the patch failed.
+1asflicense45The patch does not generate ASF License warnings.
12012
ReasonTests
Failed junit testshadoop.hbase.TestJMXListener
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 8991af9e6933 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revisionmaster / 064f5f1
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/1/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/1/testReport/
Max. process+thread count4807 (vs. ulimit of 10000)
modulesC: hbase-client hbase-server U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/1/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache9Apache9 left a comment

Copy link
Copy Markdown
Contributor

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?

* @throws IOException
*/
public static void deleteRegion(Connection connection, RegionInfo regionInfo) throws IOException {
public static void deleteRegionInfo(Connection connection, RegionInfo regionInfo)

Copy link
Copy Markdown
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
Copy Markdown
MemberAuthor

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.

* @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
Copy Markdown
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
Copy Markdown
MemberAuthor

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
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec54Docker mode activated.
_ Prechecks _
+1dupname1No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
-0test4tests0The 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 _
0mvndep34Maven dependency ordering for branch
+1mvninstall376master passed
+1compile98master passed
+1checkstyle130master passed
+1shadedjars341branch has no errors when building our shaded downstream artifacts.
+1javadoc66master passed
0spotbugs327Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs408master passed
_ Patch Compile Tests _
0mvndep18Maven dependency ordering for patch
+1mvninstall358the patch passed
+1compile102the patch passed
+1javac102the patch passed
+1checkstyle137the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars357patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck1183Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc70the patch passed
+1findbugs404the patch passed
_ Other Tests _
+1unit142hbase-client in the patch passed.
-1unit19010hbase-server in the patch failed.
+1asflicense55The patch does not generate ASF License warnings.
23839
ReasonTests
Failed junit testshadoop.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
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux fe26bd5363f2 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revisionmaster / 7294af8
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/2/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/2/testReport/
Max. process+thread count4720 (vs. ulimit of 10000)
modulesC: hbase-client hbase-server U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/2/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec188Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
-0test4tests0The 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 _
0mvndep53Maven dependency ordering for branch
+1mvninstall477master passed
+1compile97master passed
+1checkstyle142master passed
+1shadedjars398branch has no errors when building our shaded downstream artifacts.
+1javadoc71master passed
0spotbugs307Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs393master passed
_ Patch Compile Tests _
0mvndep17Maven dependency ordering for patch
+1mvninstall433the patch passed
+1compile103the patch passed
+1javac103the patch passed
+1checkstyle150the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars397patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck1226Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc68the patch passed
+1findbugs422the patch passed
_ Other Tests _
+1unit129hbase-client in the patch passed.
-1unit18828hbase-server in the patch failed.
+1asflicense52The patch does not generate ASF License warnings.
24140
ReasonTests
Failed junit testshadoop.hbase.security.access.TestSnapshotScannerHDFSAclController
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux ce66ad65fe7a 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424@2/out/precommit/personality/provided.sh
git revisionmaster / 41490e7
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/5/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/5/testReport/
Max. process+thread count4781 (vs. ulimit of 10000)
modulesC: hbase-client hbase-server U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/5/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec77Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
-0test4tests0The 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 _
0mvndep13Maven dependency ordering for branch
-1mvninstall318root in master failed.
+1compile79master passed
+1checkstyle107master passed
+1shadedjars264branch has no errors when building our shaded downstream artifacts.
+1javadoc50master passed
0spotbugs255Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs318master passed
_ Patch Compile Tests _
0mvndep14Maven dependency ordering for patch
-1mvninstall303root in the patch failed.
+1compile78the patch passed
+1javac78the patch passed
+1checkstyle108the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars276patch has no errors when building our shaded downstream artifacts.
-1hadoopcheck308The patch causes 10 errors with Hadoop v2.8.5.
-1hadoopcheck617The patch causes 10 errors with Hadoop v2.9.2.
-1hadoopcheck942The patch causes 10 errors with Hadoop v3.1.2.
+1javadoc55the patch passed
+1findbugs318the patch passed
_ Other Tests _
+1unit104hbase-client in the patch passed.
-1unit20710hbase-server in the patch failed.
+1asflicense60The patch does not generate ASF License warnings.
24298
ReasonTests
Failed junit testshadoop.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
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux d2f3d866d1e2 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revisionmaster / 11f30de
Default Java1.8.0_181
mvninstallhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/branch-mvninstall-root.txt
mvninstallhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-mvninstall-root.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-javac-2.8.5.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-javac-2.9.2.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-javac-3.1.2.txt
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/testReport/
Max. process+thread count5036 (vs. ulimit of 10000)
modulesC: hbase-client hbase-server U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/6/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@saintstacksaintstack left a comment

Copy link
Copy Markdown
Contributor

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
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec67Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
-0test4tests0The 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 _
0mvndep17Maven dependency ordering for branch
+1mvninstall316master passed
+1compile84master passed
+1checkstyle108master passed
+1shadedjars272branch has no errors when building our shaded downstream artifacts.
+1javadoc58master passed
0spotbugs248Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs316master passed
_ Patch Compile Tests _
0mvndep14Maven dependency ordering for patch
-1mvninstall165root in the patch failed.
-1compile52hbase-server in the patch failed.
-1javac52hbase-server in the patch failed.
+1checkstyle107the patch passed
+1whitespace0The patch has no whitespace issues.
-1shadedjars215patch has 16 errors when building our shaded downstream artifacts.
-1hadoopcheck123The patch causes 16 errors with Hadoop v2.8.5.
-1hadoopcheck248The patch causes 16 errors with Hadoop v2.9.2.
-1hadoopcheck380The patch causes 16 errors with Hadoop v3.1.2.
+1javadoc57the patch passed
-1findbugs56hbase-server in the patch failed.
_ Other Tests _
+1unit111hbase-client in the patch passed.
-1unit53hbase-server in the patch failed.
+1asflicense22The patch does not generate ASF License warnings.
2649
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 65feddcc6fb7 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revisionmaster / 0c80d5b
Default Java1.8.0_181
mvninstallhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-mvninstall-root.txt
compilehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-compile-hbase-server.txt
javachttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-compile-hbase-server.txt
shadedjarshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-shadedjars.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-javac-2.8.5.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-javac-2.9.2.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-javac-3.1.2.txt
findbugshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-findbugs-hbase-server.txt
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/testReport/
Max. process+thread count293 (vs. ulimit of 10000)
modulesC: hbase-client hbase-server U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/8/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@openinx

Copy link
Copy Markdown
MemberAuthor

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
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
0reexec37Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
-0test4tests0The 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 _
0mvndep12Maven dependency ordering for branch
+1mvninstall280master passed
+1compile78master passed
+1checkstyle100master passed
+1shadedjars261branch has no errors when building our shaded downstream artifacts.
+1javadoc53master passed
0spotbugs229Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs290master passed
_ Patch Compile Tests _
0mvndep14Maven dependency ordering for patch
+1mvninstall280the patch passed
+1compile79the patch passed
+1javac79the patch passed
+1checkstyle97the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars254patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck855Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc52the patch passed
+1findbugs304the patch passed
_ Other Tests _
+1unit104hbase-client in the patch passed.
+1unit8380hbase-server in the patch passed.
+1asflicense43The patch does not generate ASF License warnings.
11934
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux c164298a26ff 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revisionmaster / f68cda3
Default Java1.8.0_181
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/7/testReport/
Max. process+thread count4838 (vs. ulimit of 10000)
modulesC: hbase-client hbase-server U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/7/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
0reexec39Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
0mvndep29Maven dependency ordering for branch
+1mvninstall321master passed
+1compile79master passed
+1checkstyle110master passed
+1shadedjars274branch has no errors when building our shaded downstream artifacts.
+1javadoc58master passed
0spotbugs251Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs314master passed
_ Patch Compile Tests _
0mvndep14Maven dependency ordering for patch
+1mvninstall306the patch passed
+1compile81the patch passed
+1javac81the patch passed
+1checkstyle105the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars272patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck985Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc59the patch passed
+1findbugs361the patch passed
_ Other Tests _
+1unit124hbase-client in the patch passed.
+1unit8467hbase-server in the patch passed.
+1asflicense45The patch does not generate ASF License warnings.
12458
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux d53ab8f09884 4.4.0-157-generic #185-Ubuntu SMP Tue Jul 23 09:17:01 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-424/out/precommit/personality/provided.sh
git revisionmaster / 0c80d5b
Default Java1.8.0_181
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/9/testReport/
Max. process+thread count4560 (vs. ulimit of 10000)
modulesC: hbase-client hbase-server U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-424/9/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@openinx
openinx merged commit c286a31 into apache:masterJul 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 freeto 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

@openinx@Apache-HBase@saintstack@Apache9