HDFS-5140. Too many safemode monitor threads being created in the standby namenode causing it to fail with out of memory error. Contributed by Jing Zhao.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1518899 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
daa0713eb0
commit
25d4c2fd53
@ -407,6 +407,9 @@ Release 2.1.1-beta - UNRELEASED
|
||||
HDFS-5077. NPE in FSNamesystem.commitBlockSynchronization().
|
||||
(Plamen Jeliazkov via shv)
|
||||
|
||||
HDFS-5140. Too many safemode monitor threads being created in the standby
|
||||
namenode causing it to fail with out of memory error. (jing9)
|
||||
|
||||
Release 2.1.0-beta - 2013-08-22
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -366,7 +366,7 @@ private void logAuditEvent(boolean succeeded,
|
||||
|
||||
final LeaseManager leaseManager = new LeaseManager(this);
|
||||
|
||||
Daemon smmthread = null; // SafeModeMonitor thread
|
||||
volatile Daemon smmthread = null; // SafeModeMonitor thread
|
||||
|
||||
Daemon nnrmthread = null; // NamenodeResourceMonitor thread
|
||||
|
||||
@ -4555,7 +4555,9 @@ private void checkMode() {
|
||||
// Have to have write-lock since leaving safemode initializes
|
||||
// repl queues, which requires write lock
|
||||
assert hasWriteLock();
|
||||
if (needEnter()) {
|
||||
// if smmthread is already running, the block threshold must have been
|
||||
// reached before, there is no need to enter the safe mode again
|
||||
if (smmthread == null && needEnter()) {
|
||||
enter();
|
||||
// check if we are ready to initialize replication queues
|
||||
if (canInitializeReplQueues() && !isPopulatingReplQueues()) {
|
||||
@ -4564,7 +4566,7 @@ private void checkMode() {
|
||||
reportStatus("STATE* Safe mode ON.", false);
|
||||
return;
|
||||
}
|
||||
// the threshold is reached
|
||||
// the threshold is reached or was reached before
|
||||
if (!isOn() || // safe mode is off
|
||||
extension <= 0 || threshold <= 0) { // don't need to wait
|
||||
this.leave(); // leave safe mode
|
||||
@ -4576,9 +4578,11 @@ private void checkMode() {
|
||||
}
|
||||
// start monitor
|
||||
reached = now();
|
||||
smmthread = new Daemon(new SafeModeMonitor());
|
||||
smmthread.start();
|
||||
reportStatus("STATE* Safe mode extension entered.", true);
|
||||
if (smmthread == null) {
|
||||
smmthread = new Daemon(new SafeModeMonitor());
|
||||
smmthread.start();
|
||||
reportStatus("STATE* Safe mode extension entered.", true);
|
||||
}
|
||||
|
||||
// check if we are ready to initialize replication queues
|
||||
if (canInitializeReplQueues() && !isPopulatingReplQueues()) {
|
||||
@ -4814,6 +4818,7 @@ public void run() {
|
||||
if (safeMode.canLeave()) {
|
||||
// Leave safe mode.
|
||||
safeMode.leave();
|
||||
smmthread = null;
|
||||
break;
|
||||
}
|
||||
} finally {
|
||||
@ -4829,7 +4834,6 @@ public void run() {
|
||||
if (!fsRunning) {
|
||||
LOG.info("NameNode is being shutdown, exit SafeModeMonitor thread");
|
||||
}
|
||||
smmthread = null;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user