HDFS-14262. [SBN read] Make Log.WARN message in GlobalStateIdContext more informative. Contributed by Shweta Yakkali.

This commit is contained in:
Shweta Yakkali 2019-02-14 00:22:13 -08:00 committed by Erik Krogen
parent 7a57974f1f
commit 080a421911
1 changed files with 4 additions and 2 deletions

View File

@ -129,8 +129,10 @@ public long receiveRequestState(RpcRequestHeaderProto header,
long clientStateId = header.getStateId();
if (clientStateId > serverStateId &&
HAServiceState.ACTIVE.equals(namesystem.getState())) {
FSNamesystem.LOG.warn("A client sent stateId: " + clientStateId +
", but server state is: " + serverStateId);
FSNamesystem.LOG.warn("The client stateId: {} is greater than "
+ "the server stateId: {} This is unexpected. "
+ "Resetting client stateId to server stateId",
clientStateId, serverStateId);
return serverStateId;
}
if (HAServiceState.OBSERVER.equals(namesystem.getState()) &&