YARN-5514. Clarify DecommissionType.FORCEFUL comment (Vrushali C via Varun Saxena)
This commit is contained in:
parent
2f4660ce98
commit
da70d6f25d
|
@ -17,13 +17,19 @@
|
|||
*/
|
||||
package org.apache.hadoop.yarn.api.records;
|
||||
|
||||
/**
|
||||
* Specifies the different types of decommissioning of nodes.
|
||||
*/
|
||||
public enum DecommissionType {
|
||||
/** Decomissioning nodes in normal way **/
|
||||
/** Decomissioning nodes in normal way. **/
|
||||
NORMAL,
|
||||
|
||||
/** Graceful decommissioning of nodes **/
|
||||
/** Graceful decommissioning of nodes. **/
|
||||
GRACEFUL,
|
||||
|
||||
/** Forceful decommissioning of nodes which are already in progress **/
|
||||
/**
|
||||
* Forceful decommissioning of nodes whose decommissioning is already in
|
||||
* progress.
|
||||
**/
|
||||
FORCEFUL
|
||||
}
|
Loading…
Reference in New Issue