HBASE-21233 Allow the procedure implementation to skip persistence of the state after a execution
This commit is contained in:
parent
0290f57c3a
commit
4947e72f63
|
@ -156,6 +156,20 @@ public abstract class Procedure<TEnvironment> implements Comparable<Procedure<TE
|
||||||
*/
|
*/
|
||||||
private volatile boolean bypass = false;
|
private volatile boolean bypass = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicate whether we need to persist the procedure to ProcedureStore after execution. Default to
|
||||||
|
* true, and the implementation can all {@link #skipPersistence()} to let the framework skip the
|
||||||
|
* persistence of the procedure.
|
||||||
|
* <p/>
|
||||||
|
* This is useful when the procedure is in error and you want to retry later. The retry interval
|
||||||
|
* and the number of retries are usually not critical so skip the persistence can save some
|
||||||
|
* resources, and also speed up the restart processing.
|
||||||
|
* <p/>
|
||||||
|
* Notice that this value will be reset to true every time before execution. And when rolling back
|
||||||
|
* we do not test this value.
|
||||||
|
*/
|
||||||
|
private boolean persist = true;
|
||||||
|
|
||||||
public boolean isBypass() {
|
public boolean isBypass() {
|
||||||
return bypass;
|
return bypass;
|
||||||
}
|
}
|
||||||
|
@ -170,6 +184,18 @@ public abstract class Procedure<TEnvironment> implements Comparable<Procedure<TE
|
||||||
this.bypass = true;
|
this.bypass = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
boolean needPersistence() {
|
||||||
|
return persist;
|
||||||
|
}
|
||||||
|
|
||||||
|
void resetPersistence() {
|
||||||
|
persist = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected final void skipPersistence() {
|
||||||
|
persist = false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The main code of the procedure. It must be idempotent since execute()
|
* The main code of the procedure. It must be idempotent since execute()
|
||||||
* may be called multiple times in case of machine failure in the middle
|
* may be called multiple times in case of machine failure in the middle
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.apache.hadoop.hbase.procedure2;
|
package org.apache.hadoop.hbase.procedure2;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -37,7 +36,6 @@ import java.util.concurrent.atomic.AtomicInteger;
|
||||||
import java.util.concurrent.atomic.AtomicLong;
|
import java.util.concurrent.atomic.AtomicLong;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
import java.util.stream.Stream;
|
import java.util.stream.Stream;
|
||||||
|
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.hbase.HConstants;
|
import org.apache.hadoop.hbase.HConstants;
|
||||||
import org.apache.hadoop.hbase.exceptions.IllegalArgumentIOException;
|
import org.apache.hadoop.hbase.exceptions.IllegalArgumentIOException;
|
||||||
|
@ -1679,6 +1677,7 @@ public class ProcedureExecutor<TEnvironment> {
|
||||||
Procedure<TEnvironment>[] subprocs = null;
|
Procedure<TEnvironment>[] subprocs = null;
|
||||||
do {
|
do {
|
||||||
reExecute = false;
|
reExecute = false;
|
||||||
|
procedure.resetPersistence();
|
||||||
try {
|
try {
|
||||||
subprocs = procedure.doExecute(getEnvironment());
|
subprocs = procedure.doExecute(getEnvironment());
|
||||||
if (subprocs != null && subprocs.length == 0) {
|
if (subprocs != null && subprocs.length == 0) {
|
||||||
|
@ -1746,7 +1745,9 @@ public class ProcedureExecutor<TEnvironment> {
|
||||||
//
|
//
|
||||||
// Commit the transaction even if a suspend (state may have changed). Note this append
|
// Commit the transaction even if a suspend (state may have changed). Note this append
|
||||||
// can take a bunch of time to complete.
|
// can take a bunch of time to complete.
|
||||||
|
if (procedure.needPersistence()) {
|
||||||
updateStoreOnExec(procStack, procedure, subprocs);
|
updateStoreOnExec(procStack, procedure, subprocs);
|
||||||
|
}
|
||||||
|
|
||||||
// if the store is not running we are aborting
|
// if the store is not running we are aborting
|
||||||
if (!store.isRunning()) {
|
if (!store.isRunning()) {
|
||||||
|
@ -1941,6 +1942,11 @@ public class ProcedureExecutor<TEnvironment> {
|
||||||
return rollbackStack.get(rootProcId);
|
return rollbackStack.get(rootProcId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@VisibleForTesting
|
||||||
|
ProcedureScheduler getProcedureScheduler() {
|
||||||
|
return scheduler;
|
||||||
|
}
|
||||||
|
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Worker Thread
|
// Worker Thread
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
|
|
|
@ -0,0 +1,163 @@
|
||||||
|
/**
|
||||||
|
* 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.procedure2;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import org.apache.hadoop.fs.FileSystem;
|
||||||
|
import org.apache.hadoop.fs.Path;
|
||||||
|
import org.apache.hadoop.hbase.HBaseClassTestRule;
|
||||||
|
import org.apache.hadoop.hbase.HBaseCommonTestingUtility;
|
||||||
|
import org.apache.hadoop.hbase.procedure2.store.ProcedureStore;
|
||||||
|
import org.apache.hadoop.hbase.testclassification.MasterTests;
|
||||||
|
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.ClassRule;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.experimental.categories.Category;
|
||||||
|
|
||||||
|
import org.apache.hadoop.hbase.shaded.protobuf.generated.ProcedureProtos;
|
||||||
|
|
||||||
|
@Category({ MasterTests.class, MediumTests.class })
|
||||||
|
public class TestProcedureSkipPersistence {
|
||||||
|
|
||||||
|
@ClassRule
|
||||||
|
public static final HBaseClassTestRule CLASS_RULE =
|
||||||
|
HBaseClassTestRule.forClass(TestProcedureSkipPersistence.class);
|
||||||
|
private ProcedureExecutor<ProcEnv> procExecutor;
|
||||||
|
private ProcedureStore procStore;
|
||||||
|
|
||||||
|
private HBaseCommonTestingUtility htu;
|
||||||
|
private FileSystem fs;
|
||||||
|
private Path testDir;
|
||||||
|
private Path logDir;
|
||||||
|
|
||||||
|
private static volatile int STEP = 0;
|
||||||
|
|
||||||
|
public class ProcEnv {
|
||||||
|
|
||||||
|
public ProcedureExecutor<ProcEnv> getProcedureExecutor() {
|
||||||
|
return procExecutor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class TestProcedure extends Procedure<ProcEnv> {
|
||||||
|
|
||||||
|
// need to override this method, otherwise we will persist the release lock operation and the
|
||||||
|
// test will fail.
|
||||||
|
@Override
|
||||||
|
protected boolean holdLock(ProcEnv env) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Procedure<ProcEnv>[] execute(ProcEnv env)
|
||||||
|
throws ProcedureYieldException, ProcedureSuspendedException, InterruptedException {
|
||||||
|
if (STEP == 0) {
|
||||||
|
STEP = 1;
|
||||||
|
setTimeout(60 * 60 * 1000);
|
||||||
|
setState(ProcedureProtos.ProcedureState.WAITING_TIMEOUT);
|
||||||
|
skipPersistence();
|
||||||
|
throw new ProcedureSuspendedException();
|
||||||
|
} else if (STEP == 1) {
|
||||||
|
STEP = 2;
|
||||||
|
if (hasTimeout()) {
|
||||||
|
setFailure("Should not persist the timeout value",
|
||||||
|
new IOException("Should not persist the timeout value"));
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
setTimeout(2 * 1000);
|
||||||
|
setState(ProcedureProtos.ProcedureState.WAITING_TIMEOUT);
|
||||||
|
// used to confirm that we reset the persist flag before execution
|
||||||
|
throw new ProcedureSuspendedException();
|
||||||
|
} else {
|
||||||
|
if (!hasTimeout()) {
|
||||||
|
setFailure("Should have persisted the timeout value",
|
||||||
|
new IOException("Should have persisted the timeout value"));
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected synchronized boolean setTimeoutFailure(ProcEnv env) {
|
||||||
|
setState(ProcedureProtos.ProcedureState.RUNNABLE);
|
||||||
|
env.getProcedureExecutor().getProcedureScheduler().addFront(this);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void rollback(ProcEnv env) throws IOException, InterruptedException {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean abort(ProcEnv env) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void serializeStateData(ProcedureStateSerializer serializer) throws IOException {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void deserializeStateData(ProcedureStateSerializer serializer) throws IOException {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setUp() throws IOException {
|
||||||
|
htu = new HBaseCommonTestingUtility();
|
||||||
|
testDir = htu.getDataTestDir();
|
||||||
|
fs = testDir.getFileSystem(htu.getConfiguration());
|
||||||
|
assertTrue(testDir.depth() > 1);
|
||||||
|
|
||||||
|
logDir = new Path(testDir, "proc-logs");
|
||||||
|
procStore = ProcedureTestingUtility.createWalStore(htu.getConfiguration(), logDir);
|
||||||
|
procExecutor = new ProcedureExecutor<>(htu.getConfiguration(), new ProcEnv(), procStore);
|
||||||
|
procStore.start(1);
|
||||||
|
ProcedureTestingUtility.initAndStartWorkers(procExecutor, 1, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void tearDown() throws IOException {
|
||||||
|
procExecutor.stop();
|
||||||
|
procStore.stop(false);
|
||||||
|
fs.delete(logDir, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void test() throws Exception {
|
||||||
|
TestProcedure proc = new TestProcedure();
|
||||||
|
long procId = procExecutor.submitProcedure(proc);
|
||||||
|
htu.waitFor(30000, () -> proc.isWaiting());
|
||||||
|
ProcedureTestingUtility.restart(procExecutor);
|
||||||
|
htu.waitFor(30000, () -> {
|
||||||
|
Procedure<?> p = procExecutor.getProcedure(procId);
|
||||||
|
return p.isWaiting() || p.isFinished();
|
||||||
|
});
|
||||||
|
assertFalse(procExecutor.isFinished(procId));
|
||||||
|
ProcedureTestingUtility.restart(procExecutor);
|
||||||
|
htu.waitFor(30000, () -> procExecutor.isFinished(procId));
|
||||||
|
Procedure<ProcEnv> p = procExecutor.getResult(procId);
|
||||||
|
assertTrue(p.isSuccess());
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue