HBASE-22943 Various procedures should not cache log trace level (#557)
Signed-off-by: Peter Somogyi <psomogyi@apache.org>
(cherry picked from commit 84cc511742
)
This commit is contained in:
parent
29d168d90f
commit
3b6f6b623d
|
@ -97,7 +97,6 @@ import org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.S
|
|||
public class SplitTableRegionProcedure
|
||||
extends AbstractStateMachineRegionProcedure<SplitTableRegionState> {
|
||||
private static final Logger LOG = LoggerFactory.getLogger(SplitTableRegionProcedure.class);
|
||||
private Boolean traceEnabled = null;
|
||||
private RegionInfo daughter_1_RI;
|
||||
private RegionInfo daughter_2_RI;
|
||||
private byte[] bestSplitRow;
|
||||
|
@ -320,9 +319,7 @@ public class SplitTableRegionProcedure
|
|||
@Override
|
||||
protected void rollbackState(final MasterProcedureEnv env, final SplitTableRegionState state)
|
||||
throws IOException, InterruptedException {
|
||||
if (isTraceEnabled()) {
|
||||
LOG.trace(this + " rollback state=" + state);
|
||||
}
|
||||
LOG.trace("{} rollback state={}", this, state);
|
||||
|
||||
try {
|
||||
switch (state) {
|
||||
|
@ -915,18 +912,6 @@ public class SplitTableRegionProcedure
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* The procedure could be restarted from a different machine. If the variable is null, we need to
|
||||
* retrieve it.
|
||||
* @return traceEnabled
|
||||
*/
|
||||
private boolean isTraceEnabled() {
|
||||
if (traceEnabled == null) {
|
||||
traceEnabled = LOG.isTraceEnabled();
|
||||
}
|
||||
return traceEnabled;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean abort(MasterProcedureEnv env) {
|
||||
// Abort means rollback. We can't rollback all steps. HBASE-18018 added abort to all
|
||||
|
|
|
@ -76,8 +76,6 @@ public class CloneSnapshotProcedure
|
|||
// Monitor
|
||||
private MonitoredTask monitorStatus = null;
|
||||
|
||||
private Boolean traceEnabled = null;
|
||||
|
||||
/**
|
||||
* Constructor (for failover)
|
||||
*/
|
||||
|
@ -128,9 +126,7 @@ public class CloneSnapshotProcedure
|
|||
@Override
|
||||
protected Flow executeFromState(final MasterProcedureEnv env, final CloneSnapshotState state)
|
||||
throws InterruptedException {
|
||||
if (isTraceEnabled()) {
|
||||
LOG.trace(this + " execute state=" + state);
|
||||
}
|
||||
LOG.trace("{} execute state={}", this, state);
|
||||
try {
|
||||
switch (state) {
|
||||
case CLONE_SNAPSHOT_PRE_OPERATION:
|
||||
|
@ -498,15 +494,4 @@ public class CloneSnapshotProcedure
|
|||
metaChanges.updateMetaParentRegions(env.getMasterServices().getConnection(), newRegions);
|
||||
}
|
||||
|
||||
/**
|
||||
* The procedure could be restarted from a different machine. If the variable is null, we need to
|
||||
* retrieve it.
|
||||
* @return traceEnabled
|
||||
*/
|
||||
private Boolean isTraceEnabled() {
|
||||
if (traceEnabled == null) {
|
||||
traceEnabled = LOG.isTraceEnabled();
|
||||
}
|
||||
return traceEnabled;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,8 +54,6 @@ public class EnableTableProcedure
|
|||
private TableName tableName;
|
||||
private boolean skipTableStateCheck;
|
||||
|
||||
private Boolean traceEnabled = null;
|
||||
|
||||
public EnableTableProcedure() {
|
||||
super();
|
||||
}
|
||||
|
@ -88,9 +86,7 @@ public class EnableTableProcedure
|
|||
@Override
|
||||
protected Flow executeFromState(final MasterProcedureEnv env, final EnableTableState state)
|
||||
throws InterruptedException {
|
||||
if (isTraceEnabled()) {
|
||||
LOG.trace(this + " execute state=" + state);
|
||||
}
|
||||
LOG.trace("{} execute state={}", this, state);
|
||||
|
||||
try {
|
||||
switch (state) {
|
||||
|
@ -402,18 +398,6 @@ public class EnableTableProcedure
|
|||
runCoprocessorAction(env, state);
|
||||
}
|
||||
|
||||
/**
|
||||
* The procedure could be restarted from a different machine. If the variable is null, we need to
|
||||
* retrieve it.
|
||||
* @return traceEnabled
|
||||
*/
|
||||
private Boolean isTraceEnabled() {
|
||||
if (traceEnabled == null) {
|
||||
traceEnabled = LOG.isTraceEnabled();
|
||||
}
|
||||
return traceEnabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* Coprocessor Action.
|
||||
* @param env MasterProcedureEnv
|
||||
|
|
|
@ -77,8 +77,6 @@ public class RestoreSnapshotProcedure
|
|||
// Monitor
|
||||
private MonitoredTask monitorStatus = null;
|
||||
|
||||
private Boolean traceEnabled = null;
|
||||
|
||||
/**
|
||||
* Constructor (for failover)
|
||||
*/
|
||||
|
@ -129,9 +127,7 @@ public class RestoreSnapshotProcedure
|
|||
@Override
|
||||
protected Flow executeFromState(final MasterProcedureEnv env, final RestoreSnapshotState state)
|
||||
throws InterruptedException {
|
||||
if (isTraceEnabled()) {
|
||||
LOG.trace(this + " execute state=" + state);
|
||||
}
|
||||
LOG.trace("{} execute state={}", this, state);
|
||||
|
||||
// Make sure that the monitor status is set up
|
||||
getMonitorStatus();
|
||||
|
@ -549,16 +545,4 @@ public class RestoreSnapshotProcedure
|
|||
env.getMasterServices().getConfiguration());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* The procedure could be restarted from a different machine. If the variable is null, we need to
|
||||
* retrieve it.
|
||||
* @return traceEnabled
|
||||
*/
|
||||
private Boolean isTraceEnabled() {
|
||||
if (traceEnabled == null) {
|
||||
traceEnabled = LOG.isTraceEnabled();
|
||||
}
|
||||
return traceEnabled;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue