YARN-9639. DecommissioningNodesWatcher cause memory leak. Contributed by Bilwa S T.
This commit is contained in:
parent
4848280437
commit
be80334cdf
|
@ -194,6 +194,11 @@ public class DecommissioningNodesWatcher {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void stop() {
|
||||||
|
pollTimer.cancel();
|
||||||
|
pollTimer = null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Status about a specific decommissioning node.
|
* Status about a specific decommissioning node.
|
||||||
*
|
*
|
||||||
|
|
|
@ -268,6 +268,7 @@ public class ResourceTrackerService extends AbstractService implements
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void serviceStop() throws Exception {
|
protected void serviceStop() throws Exception {
|
||||||
|
decommissioningWatcher.stop();
|
||||||
if (this.server != null) {
|
if (this.server != null) {
|
||||||
this.server.stop();
|
this.server.stop();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue