HDFS-9332. Fix Precondition failures from NameNodeEditLogRoller while saving namespace.

(cherry picked from commit 888c6245e2)
This commit is contained in:
Andrew Wang 2015-10-29 11:30:47 -07:00
parent 30791cb0d0
commit 5e5e693a0a
2 changed files with 4 additions and 3 deletions

View File

@ -1361,6 +1361,9 @@ Release 2.8.0 - UNRELEASED
HDFS-9044. Give Priority to FavouredNodes , before selecting
nodes from FavouredNode's Node Group (J.Andreina via vinayakumarb)
HDFS-9332. Fix Precondition failures from NameNodeEditLogRoller while
saving namespace. (wang)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -3674,9 +3674,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
public void run() {
while (fsRunning && shouldRun) {
try {
FSEditLog editLog = getFSImage().getEditLog();
long numEdits =
editLog.getLastWrittenTxId() - editLog.getCurSegmentTxId();
long numEdits = getTransactionsSinceLastLogRoll();
if (numEdits > rollThreshold) {
FSNamesystem.LOG.info("NameNode rolling its own edit log because"
+ " number of edits in open segment exceeds threshold of "