HDFS-15111. stopStandbyServices() should log which service state it is transitioning from. Contributed by Xieming Li.

This commit is contained in:
Ayush Saxena 2020-02-27 04:02:26 +05:30
parent 209630472a
commit 033a3d7ff9
1 changed files with 3 additions and 1 deletions

View File

@ -97,6 +97,7 @@
import static org.apache.hadoop.hdfs.DFSConfigKeys.DFS_STORAGE_POLICY_ENABLED_KEY;
import static org.apache.hadoop.hdfs.server.namenode.FSDirStatAndListingOp.*;
import static org.apache.hadoop.ha.HAServiceProtocol.HAServiceState.ACTIVE;
import static org.apache.hadoop.ha.HAServiceProtocol.HAServiceState.STANDBY;
import static org.apache.hadoop.ha.HAServiceProtocol.HAServiceState.OBSERVER;
import org.apache.hadoop.hdfs.protocol.ErasureCodingPolicyInfo;
@ -1495,7 +1496,8 @@ void prepareToStopStandbyServices() throws ServiceFailedException {
/** Stop services required in standby state */
void stopStandbyServices() throws IOException {
LOG.info("Stopping services started for standby state");
HAServiceState curState = getState() == OBSERVER? OBSERVER : STANDBY;
LOG.info("Stopping services started for {} state", curState);
if (standbyCheckpointer != null) {
standbyCheckpointer.stop();
}