MAPREDUCE-6049. AM JVM does not exit if MRClientService graceful shutdown
fails. Contributed by Rohith.
This commit is contained in:
parent
9dd5d673c9
commit
7250b0bf91
@ -243,6 +243,9 @@ Release 2.7.0 - UNRELEASED
|
|||||||
CodecPool multiple times (Sergey Murylev via raviprak)
|
CodecPool multiple times (Sergey Murylev via raviprak)
|
||||||
|
|
||||||
MAPREDUCE-6162. mapred hsadmin fails on a secure cluster (jlowe)
|
MAPREDUCE-6162. mapred hsadmin fails on a secure cluster (jlowe)
|
||||||
|
|
||||||
|
MAPREDUCE-6049. AM JVM does not exit if MRClientService graceful shutdown
|
||||||
|
fails (Rohith via devaraj)
|
||||||
|
|
||||||
Release 2.6.0 - 2014-11-18
|
Release 2.6.0 - 2014-11-18
|
||||||
|
|
||||||
|
@ -604,7 +604,8 @@ public void shutDownJob() {
|
|||||||
}
|
}
|
||||||
clientService.stop();
|
clientService.stop();
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
LOG.warn("Graceful stop failed ", t);
|
LOG.warn("Graceful stop failed. Exiting.. ", t);
|
||||||
|
ExitUtil.terminate(1, t);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user