You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2021/06/05 09:10:44 UTC

[GitHub] [dolphinscheduler] SbloodyS commented on issue #5551: [Bug][Module Name] job state always in final state:RUNNING_EXECUTION when execution engine is tez

SbloodyS commented on issue #5551:
URL: https://github.com/apache/dolphinscheduler/issues/5551#issuecomment-855210156


   It seems Constants.ENDED is not in org.apache.dolphinscheduler.common.utils.HadoopUtils#getApplicationStatus.resulting in continuous running state.
   
   `            case Constants.ACCEPTED:
                   return ExecutionStatus.SUBMITTED_SUCCESS;
               case Constants.SUCCEEDED:
                   return ExecutionStatus.SUCCESS;
               case Constants.NEW:
               case Constants.NEW_SAVING:
               case Constants.SUBMITTED:
               case Constants.FAILED:
                   return ExecutionStatus.FAILURE;
               case Constants.KILLED:
                   return ExecutionStatus.KILL;
   
               case Constants.RUNNING:
               default:
                   return ExecutionStatus.RUNNING_EXECUTION;`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org