YARN-9503. Fix JavaDoc error in TestSchedulerOvercommit. Contributed by Wanqiang Ji.

This commit is contained in:
Akira Ajisaka 2019-05-28 15:52:39 +09:00
parent 72dd79015a
commit 9078e28a24
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ import org.slf4j.LoggerFactory;
/**
* Generic tests for overcommitting resources. This needs to be instantiated
* with a scheduler ({@link YarnConfiguration.RM_SCHEDULER}).
* with a scheduler ({@link YarnConfiguration#RM_SCHEDULER}).
*
* If reducing the amount of resources leads to overcommitting (negative
* available resources), the scheduler will select containers to make room.
@ -142,7 +142,7 @@ public abstract class TestSchedulerOvercommit {
* Get the configuration for the scheduler. This is used when setting up the
* Resource Manager and should setup the scheduler (e.g., Capacity Scheduler
* or Fair Scheduler). It needs to set the configuration with
* {@link YarnConfiguration.RM_SCHEDULER}.
* {@link YarnConfiguration#RM_SCHEDULER}.
* @return Configuration for the scheduler.
*/
protected Configuration getConfiguration() {
@ -531,7 +531,7 @@ public abstract class TestSchedulerOvercommit {
/**
* Create a container with a particular size and make sure it succeeds.
* @param am Application Master to add the container to.
* @param app Application Master to add the container to.
* @param memory Memory of the container.
* @return Newly created container.
* @throws Exception If there are issues creating the container.