@ -44,18 +44,9 @@ import org.apache.dolphinscheduler.common.enums.WarningType;
import org.apache.dolphinscheduler.common.model.Server ;
import org.apache.dolphinscheduler.common.model.Server ;
import org.apache.dolphinscheduler.common.utils.DateUtils ;
import org.apache.dolphinscheduler.common.utils.DateUtils ;
import org.apache.dolphinscheduler.common.utils.JSONUtils ;
import org.apache.dolphinscheduler.common.utils.JSONUtils ;
import org.apache.dolphinscheduler.dao.entity.Command ;
import org.apache.dolphinscheduler.dao.entity.* ;
import org.apache.dolphinscheduler.dao.entity.DependentProcessDefinition ;
import org.apache.dolphinscheduler.dao.mapper.* ;
import org.apache.dolphinscheduler.dao.entity.ProcessDefinition ;
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants ;
import org.apache.dolphinscheduler.dao.entity.ProcessInstance ;
import org.apache.dolphinscheduler.dao.entity.Project ;
import org.apache.dolphinscheduler.dao.entity.Schedule ;
import org.apache.dolphinscheduler.dao.entity.TaskGroupQueue ;
import org.apache.dolphinscheduler.dao.entity.Tenant ;
import org.apache.dolphinscheduler.dao.entity.User ;
import org.apache.dolphinscheduler.dao.mapper.ProcessDefinitionMapper ;
import org.apache.dolphinscheduler.dao.mapper.ProcessInstanceMapper ;
import org.apache.dolphinscheduler.dao.mapper.ProjectMapper ;
import org.apache.dolphinscheduler.plugin.task.api.enums.ExecutionStatus ;
import org.apache.dolphinscheduler.plugin.task.api.enums.ExecutionStatus ;
import org.apache.dolphinscheduler.remote.command.StateEventChangeCommand ;
import org.apache.dolphinscheduler.remote.command.StateEventChangeCommand ;
import org.apache.dolphinscheduler.remote.processor.StateEventCallbackService ;
import org.apache.dolphinscheduler.remote.processor.StateEventCallbackService ;
@ -67,11 +58,7 @@ import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.MapUtils ;
import org.apache.commons.collections.MapUtils ;
import org.apache.commons.lang.StringUtils ;
import org.apache.commons.lang.StringUtils ;
import java.util.ArrayList ;
import java.util.* ;
import java.util.Date ;
import java.util.HashMap ;
import java.util.List ;
import java.util.Map ;
import java.util.stream.Collectors ;
import java.util.stream.Collectors ;
import org.slf4j.Logger ;
import org.slf4j.Logger ;
@ -110,6 +97,12 @@ public class ExecutorServiceImpl extends BaseServiceImpl implements ExecutorServ
@Autowired
@Autowired
StateEventCallbackService stateEventCallbackService ;
StateEventCallbackService stateEventCallbackService ;
@Autowired
private TaskDefinitionMapper taskDefinitionMapper ;
@Autowired
private ProcessTaskRelationMapper processTaskRelationMapper ;
/ * *
/ * *
* execute process instance
* execute process instance
*
*
@ -226,12 +219,42 @@ public class ExecutorServiceImpl extends BaseServiceImpl implements ExecutorServ
} else if ( processDefinition . getReleaseState ( ) ! = ReleaseState . ONLINE ) {
} else if ( processDefinition . getReleaseState ( ) ! = ReleaseState . ONLINE ) {
// check process definition online
// check process definition online
putMsg ( result , Status . PROCESS_DEFINE_NOT_RELEASE , processDefineCode ) ;
putMsg ( result , Status . PROCESS_DEFINE_NOT_RELEASE , processDefineCode ) ;
} else if ( ! checkSubProcessDefinitionValid ( processDefinition ) ) {
// check sub process definition online
putMsg ( result , Status . SUB_PROCESS_DEFINE_NOT_RELEASE ) ;
} else {
} else {
result . put ( Constants . STATUS , Status . SUCCESS ) ;
result . put ( Constants . STATUS , Status . SUCCESS ) ;
}
}
return result ;
return result ;
}
}
/ * *
* check if the current process has subprocesses and all subprocesses are valid
* @param processDefinition
* @return check result
* /
@Override
public boolean checkSubProcessDefinitionValid ( ProcessDefinition processDefinition ) {
// query all subprocesses under the current process
List < ProcessTaskRelation > processTaskRelations = processTaskRelationMapper . queryDownstreamByProcessDefinitionCode ( processDefinition . getCode ( ) ) ;
if ( processTaskRelations . isEmpty ( ) ) {
return true ;
}
Set < Long > relationCodes = processTaskRelations . stream ( ) . map ( ProcessTaskRelation : : getPostTaskCode ) . collect ( Collectors . toSet ( ) ) ;
List < TaskDefinition > taskDefinitions = taskDefinitionMapper . queryByCodeList ( relationCodes ) ;
// find out the process definition code
Set < Long > processDefinitionCodeSet = new HashSet < > ( ) ;
taskDefinitions . stream ( )
. filter ( task - > TaskConstants . TASK_TYPE_SUB_PROCESS . equalsIgnoreCase ( task . getTaskType ( ) ) )
. forEach ( taskDefinition - > processDefinitionCodeSet . add ( Long . valueOf ( JSONUtils . getNodeString ( taskDefinition . getTaskParams ( ) , Constants . CMD_PARAM_SUB_PROCESS_DEFINE_CODE ) ) ) ) ;
// check sub releaseState
List < ProcessDefinition > processDefinitions = processDefinitionMapper . queryByCodes ( processDefinitionCodeSet ) ;
return processDefinitions . stream ( ) . filter ( definition - > definition . getReleaseState ( ) . equals ( ReleaseState . OFFLINE ) ) . collect ( Collectors . toSet ( ) ) . isEmpty ( ) ;
}
/ * *
/ * *
* do action to process instance : pause , stop , repeat , recover from pause , recover from stop
* do action to process instance : pause , stop , repeat , recover from pause , recover from stop
*
*