YARN-1616. RMFatalEventDispatcher should log the cause of the event (kasha)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1559902 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
362e4fc891
commit
e0ce554b86
@ -229,6 +229,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
|
||||
|
@ -607,7 +607,7 @@ public RMFatalEventDispatcher(
|
||||
@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");
|
||||
|
Loading…
Reference in New Issue
Block a user