YARN-9094: Remove unused interface method: NodeResourceUpdaterPlugin#handleUpdatedResourceFromRM. Contributed by Gergely Pollak
This commit is contained in:
parent
df30d8ea09
commit
72d7e570a7
|
@ -28,25 +28,11 @@ import org.apache.hadoop.yarn.exceptions.YarnException;
|
||||||
public abstract class NodeResourceUpdaterPlugin {
|
public abstract class NodeResourceUpdaterPlugin {
|
||||||
/**
|
/**
|
||||||
* Update configured resource for the given component.
|
* Update configured resource for the given component.
|
||||||
* @param res resource passed in by external mododule (such as
|
* @param res resource passed in by external module (such as
|
||||||
* {@link org.apache.hadoop.yarn.server.nodemanager.NodeStatusUpdater}
|
* {@link org.apache.hadoop.yarn.server.nodemanager.NodeStatusUpdater}
|
||||||
* @throws YarnException when any issue happens.
|
* @throws YarnException when any issue happens.
|
||||||
*/
|
*/
|
||||||
public abstract void updateConfiguredResource(Resource res)
|
public abstract void updateConfiguredResource(Resource res)
|
||||||
throws YarnException;
|
throws YarnException;
|
||||||
|
|
||||||
/**
|
|
||||||
* This method will be called when the node's resource is loaded from
|
|
||||||
* dynamic-resources.xml in ResourceManager.
|
|
||||||
*
|
|
||||||
* @param newResource newResource reported by RM
|
|
||||||
* @throws YarnException when any mismatch between NM/RM
|
|
||||||
*/
|
|
||||||
public void handleUpdatedResourceFromRM(Resource newResource) throws
|
|
||||||
YarnException {
|
|
||||||
// by default do nothing, subclass should implement this method when any
|
|
||||||
// special activities required upon new resource reported by RM.
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: add implementation to update node attribute once YARN-3409 merged.
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue