YARN-2061. Revisit logging levels in ZKRMStateStore. (Ray Chiang via kasha)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1600498 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
731f417f67
commit
d1d6bb70f4
@ -135,6 +135,8 @@ Release 2.5.0 - UNRELEASED
|
||||
YARN-1913. With Fair Scheduler, cluster can logjam when all resources are
|
||||
consumed by AMs (Wei Yan via Sandy Ryza)
|
||||
|
||||
YARN-2061. Revisit logging levels in ZKRMStateStore. (Ray Chiang via kasha)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
@ -546,7 +546,7 @@ private void loadApplicationAttemptState(ApplicationState appState,
|
||||
appState.attempts.put(attemptState.getAttemptId(), attemptState);
|
||||
}
|
||||
}
|
||||
LOG.info("Done Loading applications from ZK state store");
|
||||
LOG.debug("Done Loading applications from ZK state store");
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -579,7 +579,7 @@ public synchronized void updateApplicationStateInternal(ApplicationId appId,
|
||||
} else {
|
||||
createWithRetries(nodeUpdatePath, appStateData, zkAcl,
|
||||
CreateMode.PERSISTENT);
|
||||
LOG.info(appId + " znode didn't exist. Created a new znode to"
|
||||
LOG.debug(appId + " znode didn't exist. Created a new znode to"
|
||||
+ " update the application state.");
|
||||
}
|
||||
}
|
||||
@ -622,7 +622,7 @@ public synchronized void updateApplicationAttemptStateInternal(
|
||||
} else {
|
||||
createWithRetries(nodeUpdatePath, attemptStateData, zkAcl,
|
||||
CreateMode.PERSISTENT);
|
||||
LOG.info(appAttemptId + " znode didn't exist. Created a new znode to"
|
||||
LOG.debug(appAttemptId + " znode didn't exist. Created a new znode to"
|
||||
+ " update the application attempt state.");
|
||||
}
|
||||
}
|
||||
@ -671,7 +671,7 @@ protected synchronized void removeRMDelegationTokenState(
|
||||
if (existsWithRetries(nodeRemovePath, true) != null) {
|
||||
opList.add(Op.delete(nodeRemovePath, -1));
|
||||
} else {
|
||||
LOG.info("Attempted to delete a non-existing znode " + nodeRemovePath);
|
||||
LOG.debug("Attempted to delete a non-existing znode " + nodeRemovePath);
|
||||
}
|
||||
doMultiWithRetries(opList);
|
||||
}
|
||||
@ -688,7 +688,7 @@ protected void updateRMDelegationTokenAndSequenceNumberInternal(
|
||||
// in case znode doesn't exist
|
||||
addStoreOrUpdateOps(
|
||||
opList, rmDTIdentifier, renewDate, latestSequenceNumber, false);
|
||||
LOG.info("Attempted to update a non-existing znode " + nodeRemovePath);
|
||||
LOG.debug("Attempted to update a non-existing znode " + nodeRemovePath);
|
||||
} else {
|
||||
// in case znode exists
|
||||
addStoreOrUpdateOps(
|
||||
@ -770,7 +770,7 @@ protected synchronized void removeRMDTMasterKeyState(
|
||||
if (existsWithRetries(nodeRemovePath, true) != null) {
|
||||
doMultiWithRetries(Op.delete(nodeRemovePath, -1));
|
||||
} else {
|
||||
LOG.info("Attempted to delete a non-existing znode " + nodeRemovePath);
|
||||
LOG.debug("Attempted to delete a non-existing znode " + nodeRemovePath);
|
||||
}
|
||||
}
|
||||
|
||||
@ -823,7 +823,7 @@ public synchronized void processWatchEvent(WatchedEvent event)
|
||||
case Expired:
|
||||
// the connection got terminated because of session timeout
|
||||
// call listener to reconnect
|
||||
LOG.info("Session expired");
|
||||
LOG.info("ZKRMStateStore Session expired");
|
||||
createConnection();
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user