HDFS-14822. [SBN read] Revisit GlobalStateIdContext locking when getting server state id. Contributed by Chen Liang.
This commit is contained in:
parent
e29f91bad3
commit
4299bc0d3e
|
@ -147,7 +147,9 @@ class GlobalStateIdContext implements AlignmentContext {
|
|||
|
||||
@Override
|
||||
public long getLastSeenStateId() {
|
||||
return namesystem.getFSImage().getCorrectLastAppliedOrWrittenTxId();
|
||||
// Should not need to call getCorrectLastAppliedOrWrittenTxId()
|
||||
// see HDFS-14822.
|
||||
return namesystem.getFSImage().getLastAppliedOrWrittenTxId();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue