YARN-1616. RMFatalEventDispatcher should log the cause of the event (kasha)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1559903 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Karthik Kambatla 2014-01-21 02:02:24 +00:00
parent 8adbc39208
commit a560488df6
2 changed files with 3 additions and 1 deletions

View File

@ -208,6 +208,8 @@ Release 2.4.0 - UNRELEASED
YARN-1567. In Fair Scheduler, allow empty queues to change between leaf and
parent on allocation file reload (Sandy Ryza)
YARN-1616. RMFatalEventDispatcher should log the cause of the event (kasha)
OPTIMIZATIONS
BUG FIXES

View File

@ -607,7 +607,7 @@ public class ResourceManager extends CompositeService implements Recoverable {
@Override
public void handle(RMFatalEvent event) {
LOG.fatal("Received a " + RMFatalEvent.class.getName() + " of type " +
event.getType().name());
event.getType().name() + ". Cause:\n" + event.getCause());
if (event.getType() == RMFatalEventType.STATE_STORE_FENCED) {
LOG.info("RMStateStore has been fenced");