HDFS-14822. [SBN read] Revisit GlobalStateIdContext locking when getting server state id. Contributed by Chen Liang.

This commit is contained in:
Chen Liang 2019-09-18 16:47:46 -07:00
parent f16eb093f7
commit 4ed0aefe9f

View File

@ -165,7 +165,9 @@ public long receiveRequestState(RpcRequestHeaderProto header,
@Override
public long getLastSeenStateId() {
return namesystem.getFSImage().getCorrectLastAppliedOrWrittenTxId();
// Should not need to call getCorrectLastAppliedOrWrittenTxId()
// see HDFS-14822.
return namesystem.getFSImage().getLastAppliedOrWrittenTxId();
}
@Override