jeongyooneo commented on a change in pull request #20: [NEMO-76] Rename 
TaskGroup to Task
URL: https://github.com/apache/incubator-nemo/pull/20#discussion_r189455003
 
 

 ##########
 File path: 
runtime/common/src/main/java/edu/snu/nemo/runtime/common/state/TaskState.java
 ##########
 @@ -32,48 +33,38 @@ private StateMachine buildTaskStateMachine() {
 
     // Add states
     stateMachineBuilder.addState(State.READY, "The task has been created.");
-    stateMachineBuilder.addState(State.PENDING_IN_EXECUTOR, "The task is 
pending in its executor.");
     stateMachineBuilder.addState(State.EXECUTING, "The task is executing.");
-    stateMachineBuilder.addState(State.COMPLETE, "The task's execution is 
complete with its output committed.");
+    stateMachineBuilder.addState(State.COMPLETE, "All of this task's tasks 
have completed.");
     stateMachineBuilder.addState(State.FAILED_RECOVERABLE, "Task failed, but 
is recoverable.");
-    stateMachineBuilder.addState(State.FAILED_UNRECOVERABLE, "Task failed, and 
is unrecoverable. The job will fail.");
+    stateMachineBuilder.addState(State.FAILED_UNRECOVERABLE,
+        "Task failed, and is unrecoverable. The job will fail.");
     stateMachineBuilder.addState(State.ON_HOLD, "The task is paused for 
dynamic optimization.");
 
+
 
 Review comment:
   Remove this redundant newline.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to