YARN-9812. mvn javadoc:javadoc fails in hadoop-sls. Contributed by Abhishek Modi.

This commit is contained in:
Abhishek Modi 2019-09-07 12:44:40 +05:30
parent 34b82e6da0
commit e8ca4fac53

View File

@ -52,12 +52,15 @@
* AMSimulator that simulates DAG - it requests for containers
* based on the delay specified. It finishes when all the tasks
* are completed.
*
* Vocabulary Used:
* pending -> requests which are NOT yet sent to RM.
* scheduled -> requests which are sent to RM but not yet assigned.
* assigned -> requests which are assigned to a container.
* completed -> request corresponding to which container has completed.
* <dl>
* <dt>Pending</dt><dd>requests which are NOT yet sent to RM.</dd>
* <dt>Scheduled</dt>
* <dd>requests which are sent to RM but not yet assigned.</dd>
* <dt>Assigned</dt><dd>requests which are assigned to a container.</dd>
* <dt>Completed</dt>
* <dd>request corresponding to which container has completed.</dd>
* </dl>
* Containers are requested based on the request delay.
*/