-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-28582 ModifyTableProcedure should not reset TRSP on region node… #5903
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
159 changes: 159 additions & 0 deletions
159
...ain/java/org/apache/hadoop/hbase/master/procedure/CloseExcessRegionReplicasProcedure.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,159 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| package org.apache.hadoop.hbase.master.procedure; | ||
|
|
||
| import java.io.IOException; | ||
| import org.apache.commons.lang3.mutable.MutableBoolean; | ||
| import org.apache.hadoop.hbase.TableName; | ||
| import org.apache.hadoop.hbase.procedure2.ProcedureStateSerializer; | ||
| import org.apache.hadoop.hbase.procedure2.ProcedureSuspendedException; | ||
| import org.apache.hadoop.hbase.procedure2.ProcedureUtil; | ||
| import org.apache.hadoop.hbase.procedure2.ProcedureYieldException; | ||
| import org.apache.hadoop.hbase.util.RetryCounter; | ||
| import org.apache.yetus.audience.InterfaceAudience; | ||
| import org.slf4j.Logger; | ||
| import org.slf4j.LoggerFactory; | ||
|
|
||
| import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil; | ||
| import org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.CloseExcessRegionReplicasProcedureState; | ||
| import org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.CloseExcessRegionReplicasProcedureStateData; | ||
| import org.apache.hadoop.hbase.shaded.protobuf.generated.ProcedureProtos; | ||
|
|
||
| /** | ||
| * Procedure for close excess region replicas. | ||
| */ | ||
| @InterfaceAudience.Private | ||
| public class CloseExcessRegionReplicasProcedure | ||
| extends AbstractStateMachineTableProcedure<CloseExcessRegionReplicasProcedureState> { | ||
|
|
||
| private static final Logger LOG = | ||
| LoggerFactory.getLogger(CloseExcessRegionReplicasProcedure.class); | ||
|
|
||
| private TableName tableName; | ||
| private int newReplicaCount; | ||
|
|
||
| private RetryCounter retryCounter; | ||
|
|
||
| public CloseExcessRegionReplicasProcedure() { | ||
| } | ||
|
|
||
| public CloseExcessRegionReplicasProcedure(TableName tableName, int newReplicaCount) { | ||
| this.tableName = tableName; | ||
| this.newReplicaCount = newReplicaCount; | ||
| } | ||
|
|
||
| @Override | ||
| public TableName getTableName() { | ||
| return tableName; | ||
| } | ||
|
|
||
| @Override | ||
| public TableOperationType getTableOperationType() { | ||
| return TableOperationType.REGION_EDIT; | ||
| } | ||
|
|
||
| @Override | ||
| protected Flow executeFromState(MasterProcedureEnv env, | ||
| CloseExcessRegionReplicasProcedureState state) | ||
| throws ProcedureSuspendedException, ProcedureYieldException, InterruptedException { | ||
| LOG.trace("{} execute state={}", this, state); | ||
| switch (state) { | ||
| case CLOSE_EXCESS_REGION_REPLICAS_SCHEDULE: | ||
| MutableBoolean submitted = new MutableBoolean(false); | ||
| int inTransitionCount = env.getAssignmentManager() | ||
| .submitUnassignProcedureForClosingExcessRegionReplicas(tableName, newReplicaCount, p -> { | ||
| submitted.setTrue(); | ||
| addChildProcedure(p); | ||
| }); | ||
| if (inTransitionCount > 0 && submitted.isFalse()) { | ||
Apache9 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| // we haven't scheduled any unassign procedures and there are still regions in | ||
| // transition, sleep for a while and try again | ||
| if (retryCounter == null) { | ||
| retryCounter = ProcedureUtil.createRetryCounter(env.getMasterConfiguration()); | ||
| } | ||
| long backoffMillis = retryCounter.getBackoffTimeAndIncrementAttempts(); | ||
| LOG.info( | ||
| "There are still {} region(s) in transition for table {} when closing excess" | ||
| + " region replicas, suspend {}secs and try again later", | ||
| inTransitionCount, tableName, backoffMillis / 1000); | ||
| suspend((int) backoffMillis, true); | ||
| } | ||
| setNextState(CloseExcessRegionReplicasProcedureState.CLOSE_EXCESS_REGION_REPLICAS_CONFIRM); | ||
| return Flow.HAS_MORE_STATE; | ||
| case CLOSE_EXCESS_REGION_REPLICAS_CONFIRM: | ||
| int unclosedCount = env.getAssignmentManager() | ||
| .numberOfUnclosedExcessRegionReplicas(tableName, newReplicaCount); | ||
| if (unclosedCount > 0) { | ||
| LOG.info("There are still {} unclosed region(s) for table {} when closing excess" | ||
| + " region replicas, continue..."); | ||
| setNextState( | ||
| CloseExcessRegionReplicasProcedureState.CLOSE_EXCESS_REGION_REPLICAS_SCHEDULE); | ||
| return Flow.HAS_MORE_STATE; | ||
| } else { | ||
| return Flow.NO_MORE_STATE; | ||
| } | ||
| default: | ||
| throw new UnsupportedOperationException("unhandled state=" + state); | ||
| } | ||
| } | ||
|
|
||
| @Override | ||
| protected synchronized boolean setTimeoutFailure(MasterProcedureEnv env) { | ||
| setState(ProcedureProtos.ProcedureState.RUNNABLE); | ||
| env.getProcedureScheduler().addFront(this); | ||
| return false; | ||
| } | ||
|
|
||
| @Override | ||
| protected void rollbackState(MasterProcedureEnv env, | ||
| CloseExcessRegionReplicasProcedureState state) throws IOException, InterruptedException { | ||
| throw new UnsupportedOperationException(); | ||
| } | ||
|
|
||
| @Override | ||
| protected CloseExcessRegionReplicasProcedureState getState(int stateId) { | ||
| return CloseExcessRegionReplicasProcedureState.forNumber(stateId); | ||
| } | ||
|
|
||
| @Override | ||
| protected int getStateId(CloseExcessRegionReplicasProcedureState state) { | ||
| return state.getNumber(); | ||
| } | ||
|
|
||
| @Override | ||
| protected CloseExcessRegionReplicasProcedureState getInitialState() { | ||
| return CloseExcessRegionReplicasProcedureState.CLOSE_EXCESS_REGION_REPLICAS_SCHEDULE; | ||
| } | ||
|
|
||
| @Override | ||
| protected void serializeStateData(ProcedureStateSerializer serializer) throws IOException { | ||
| CloseExcessRegionReplicasProcedureStateData data = CloseExcessRegionReplicasProcedureStateData | ||
| .newBuilder().setTableName(ProtobufUtil.toProtoTableName(tableName)) | ||
| .setNewReplicaCount(newReplicaCount).build(); | ||
| serializer.serialize(data); | ||
| } | ||
|
|
||
| @Override | ||
| protected void deserializeStateData(ProcedureStateSerializer serializer) throws IOException { | ||
| CloseExcessRegionReplicasProcedureStateData data = | ||
| serializer.deserialize(CloseExcessRegionReplicasProcedureStateData.class); | ||
| tableName = ProtobufUtil.toTableName(data.getTableName()); | ||
| newReplicaCount = data.getNewReplicaCount(); | ||
| } | ||
|
|
||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
107 changes: 107 additions & 0 deletions
107
...org/apache/hadoop/hbase/master/assignment/TestReduceExcessRegionReplicasBlockedByRIT.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,107 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| package org.apache.hadoop.hbase.master.assignment; | ||
|
|
||
| import static org.junit.Assert.assertEquals; | ||
| import static org.junit.Assert.assertFalse; | ||
| import static org.junit.Assert.assertTrue; | ||
|
|
||
| import java.util.concurrent.CompletableFuture; | ||
| import org.apache.hadoop.hbase.HBaseClassTestRule; | ||
| import org.apache.hadoop.hbase.HBaseTestingUtil; | ||
| import org.apache.hadoop.hbase.TableName; | ||
| import org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder; | ||
| import org.apache.hadoop.hbase.client.TableDescriptor; | ||
| import org.apache.hadoop.hbase.client.TableDescriptorBuilder; | ||
| import org.apache.hadoop.hbase.master.RegionState; | ||
| import org.apache.hadoop.hbase.master.procedure.CloseExcessRegionReplicasProcedure; | ||
| import org.apache.hadoop.hbase.master.procedure.MasterProcedureEnv; | ||
| import org.apache.hadoop.hbase.procedure2.ProcedureExecutor; | ||
| import org.apache.hadoop.hbase.testclassification.MasterTests; | ||
| import org.apache.hadoop.hbase.testclassification.MediumTests; | ||
| import org.junit.AfterClass; | ||
| import org.junit.BeforeClass; | ||
| import org.junit.ClassRule; | ||
| import org.junit.Test; | ||
| import org.junit.experimental.categories.Category; | ||
|
|
||
| /** | ||
| * A test to make sure that we will wait for RIT to finish while closing excess region replicas. See | ||
| * HBASE-28582 and related issues for more details. | ||
| */ | ||
| @Category({ MasterTests.class, MediumTests.class }) | ||
| public class TestReduceExcessRegionReplicasBlockedByRIT { | ||
|
|
||
| @ClassRule | ||
| public static final HBaseClassTestRule CLASS_RULE = | ||
| HBaseClassTestRule.forClass(TestReduceExcessRegionReplicasBlockedByRIT.class); | ||
|
|
||
| private static final HBaseTestingUtil UTIL = new HBaseTestingUtil(); | ||
|
|
||
| private static TableDescriptor TD = | ||
| TableDescriptorBuilder.newBuilder(TableName.valueOf("CloseExcessRegionReplicas")) | ||
| .setColumnFamily(ColumnFamilyDescriptorBuilder.of("family")).setRegionReplication(4).build(); | ||
|
|
||
| @BeforeClass | ||
| public static void setUp() throws Exception { | ||
| UTIL.startMiniCluster(1); | ||
| UTIL.getAdmin().createTable(TD); | ||
| UTIL.waitTableAvailable(TD.getTableName()); | ||
| UTIL.waitUntilNoRegionsInTransition(); | ||
| } | ||
|
|
||
| @AfterClass | ||
| public static void tearDown() throws Exception { | ||
| UTIL.shutdownMiniCluster(); | ||
| } | ||
|
|
||
| @Test | ||
| public void testRIT() throws Exception { | ||
| RegionStateNode rsn = UTIL.getMiniHBaseCluster().getMaster().getAssignmentManager() | ||
| .getRegionStates().getTableRegionStateNodes(TD.getTableName()).stream() | ||
| .filter(rn -> rn.getRegionInfo().getReplicaId() > 1).findAny().get(); | ||
| // fake a TRSP to block the CloseExcessRegionReplicasProcedure | ||
| TransitRegionStateProcedure trsp = new TransitRegionStateProcedure(); | ||
| rsn.setProcedure(trsp); | ||
| TableDescriptor newTd = TableDescriptorBuilder.newBuilder(TD).setRegionReplication(2).build(); | ||
| CompletableFuture<Void> future = UTIL.getAsyncConnection().getAdmin().modifyTable(newTd); | ||
| ProcedureExecutor<MasterProcedureEnv> procExec = | ||
| UTIL.getMiniHBaseCluster().getMaster().getMasterProcedureExecutor(); | ||
| UTIL.waitFor(5000, () -> procExec.getProcedures().stream() | ||
| .anyMatch(p -> p instanceof CloseExcessRegionReplicasProcedure && !p.isFinished())); | ||
| CloseExcessRegionReplicasProcedure proc = | ||
| procExec.getProcedures().stream().filter(p -> p instanceof CloseExcessRegionReplicasProcedure) | ||
| .map(p -> (CloseExcessRegionReplicasProcedure) p).findFirst().get(); | ||
| // make sure that the procedure can not finish | ||
| for (int i = 0; i < 5; i++) { | ||
| Thread.sleep(3000); | ||
| assertFalse(proc.isFinished()); | ||
| } | ||
| assertTrue(rsn.isInState(RegionState.State.OPEN)); | ||
| // unset the procedure, so we could make progress on CloseExcessRegionReplicasProcedure | ||
| rsn.unsetProcedure(trsp); | ||
| UTIL.waitFor(60000, () -> proc.isFinished()); | ||
|
|
||
| future.get(); | ||
|
|
||
| // the region should be in CLOSED state, and should have been removed from AM | ||
| assertTrue(rsn.isInState(RegionState.State.CLOSED)); | ||
| // only 2 replicas now | ||
| assertEquals(2, UTIL.getMiniHBaseCluster().getRegions(TD.getTableName()).size()); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.