@@ -566,6 +566,8 @@ Release 2.8.0 - UNRELEASED
YARN-4418. AM Resource Limit per partition can be updated to ResourceUsage as well.
(Sunil G via wangda)
+
+ YARN-4207. Add a non-judgemental YARN app completion status. (Rich Haase via sseth)
OPTIMIZATIONS
@@ -38,5 +38,8 @@ public enum FinalApplicationStatus {
FAILED,
/** Application which was terminated by a user or admin. */
- KILLED
+ KILLED,
+ /** Application which has subtasks with multiple end states. */
+ ENDED
}
@@ -131,6 +131,7 @@ enum FinalApplicationStatusProto {
APP_SUCCEEDED = 1;
APP_FAILED = 2;
APP_KILLED = 3;
+ APP_ENDED = 4;
message URLProto {