status
stringclasses
1 value
repo_name
stringclasses
31 values
repo_url
stringclasses
31 values
issue_id
int64
1
104k
title
stringlengths
4
233
body
stringlengths
0
186k
issue_url
stringlengths
38
56
pull_url
stringlengths
37
54
before_fix_sha
stringlengths
40
40
after_fix_sha
stringlengths
40
40
report_datetime
timestamp[us, tz=UTC]
language
stringclasses
5 values
commit_datetime
timestamp[us, tz=UTC]
updated_file
stringlengths
7
188
chunk_content
stringlengths
1
1.03M
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
processInstance.getWarningGroupId(), processInstance.getScheduleTime(), processInstance.getWorkerGroup(), processInstance.getEnvironmentCode(), processInstance.getProcessInstancePriority(), processInstance.getDryRun(), processInstance.getId(), processInstance.getProcessDefinitionVersion() ); saveCommand(command); return; } if (originCommand.getCommandType() == CommandType.RECOVER_WAITING_THREAD) { originCommand.setUpdateTime(new Date()); saveCommand(originCommand); } else { commandMapper.deleteById(originCommand.getId()); originCommand.setId(0); originCommand.setCommandType(CommandType.RECOVER_WAITING_THREAD); originCommand.setUpdateTime(new Date()); originCommand.setCommandParam(JSONUtils.toJsonString(cmdParam)); originCommand.setProcessInstancePriority(processInstance.getProcessInstancePriority()); saveCommand(originCommand); } } /** * get schedule time from command *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @param command command * @param cmdParam cmdParam map * @return date */ private Date getScheduleTime(Command command, Map<String, String> cmdParam) { Date scheduleTime = command.getScheduleTime(); if (scheduleTime == null && cmdParam != null && cmdParam.containsKey(CMDPARAM_COMPLEMENT_DATA_START_DATE)) { Date start = DateUtils.stringToDate(cmdParam.get(CMDPARAM_COMPLEMENT_DATA_START_DATE)); Date end = DateUtils.stringToDate(cmdParam.get(CMDPARAM_COMPLEMENT_DATA_END_DATE)); List<Schedule> schedules = queryReleaseSchedulerListByProcessDefinitionCode(command.getProcessDefinitionCode()); List<Date> complementDateList = CronUtils.getSelfFireDateList(start, end, schedules); if (complementDateList.size() > 0) { scheduleTime = complementDateList.get(0); } else { logger.error("set scheduler time error: complement date list is empty, command: {}", command.toString()); } } return scheduleTime; } /** * generate a new work process instance from command. * * @param processDefinition processDefinition * @param command command * @param cmdParam cmdParam map * @return process instance */
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
private ProcessInstance generateNewProcessInstance(ProcessDefinition processDefinition, Command command, Map<String, String> cmdParam) { ProcessInstance processInstance = new ProcessInstance(processDefinition); processInstance.setProcessDefinitionCode(processDefinition.getCode()); processInstance.setProcessDefinitionVersion(processDefinition.getVersion()); processInstance.setState(ExecutionStatus.RUNNING_EXECUTION); processInstance.setRecovery(Flag.NO); processInstance.setStartTime(new Date()); processInstance.setRestartTime(processInstance.getStartTime()); processInstance.setRunTimes(1); processInstance.setMaxTryTimes(0); processInstance.setCommandParam(command.getCommandParam()); processInstance.setCommandType(command.getCommandType()); processInstance.setIsSubProcess(Flag.NO); processInstance.setTaskDependType(command.getTaskDependType()); processInstance.setFailureStrategy(command.getFailureStrategy()); processInstance.setExecutorId(command.getExecutorId()); WarningType warningType = command.getWarningType() == null ? WarningType.NONE : command.getWarningType(); processInstance.setWarningType(warningType); Integer warningGroupId = command.getWarningGroupId() == null ? 0 : command.getWarningGroupId(); processInstance.setWarningGroupId(warningGroupId); processInstance.setDryRun(command.getDryRun()); if (command.getScheduleTime() != null) { processInstance.setScheduleTime(command.getScheduleTime()); } processInstance.setCommandStartTime(command.getStartTime()); processInstance.setLocations(processDefinition.getLocations()); setGlobalParamIfCommanded(processDefinition, cmdParam);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
Map<String, String> commandParamMap = JSONUtils.toMap(command.getCommandParam()); String timezoneId = null; if (commandParamMap != null) { timezoneId = commandParamMap.get(Constants.SCHEDULE_TIMEZONE); } processInstance.setGlobalParams(ParameterUtils.curingGlobalParams( processDefinition.getGlobalParamMap(), processDefinition.getGlobalParamList(), getCommandTypeIfComplement(processInstance, command), processInstance.getScheduleTime(), timezoneId)); processInstance.setProcessInstancePriority(command.getProcessInstancePriority()); String workerGroup = StringUtils.isBlank(command.getWorkerGroup()) ? Constants.DEFAULT_WORKER_GROUP : command.getWorkerGroup(); processInstance.setWorkerGroup(workerGroup); processInstance.setEnvironmentCode(Objects.isNull(command.getEnvironmentCode()) ? -1 : command.getEnvironmentCode()); processInstance.setTimeout(processDefinition.getTimeout()); processInstance.setTenantId(processDefinition.getTenantId()); return processInstance; } private void setGlobalParamIfCommanded(ProcessDefinition processDefinition, Map<String, String> cmdParam) { Map<String, String> startParamMap = new HashMap<>(); if (cmdParam != null && cmdParam.containsKey(Constants.CMD_PARAM_START_PARAMS)) { String startParamJson = cmdParam.get(Constants.CMD_PARAM_START_PARAMS); startParamMap = JSONUtils.toMap(startParamJson); } Map<String, String> fatherParamMap = new HashMap<>(); if (cmdParam != null && cmdParam.containsKey(Constants.CMD_PARAM_FATHER_PARAMS)) { String fatherParamJson = cmdParam.get(Constants.CMD_PARAM_FATHER_PARAMS);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
fatherParamMap = JSONUtils.toMap(fatherParamJson); } startParamMap.putAll(fatherParamMap); Map<String, String> globalMap = processDefinition.getGlobalParamMap(); List<Property> globalParamList = processDefinition.getGlobalParamList(); if (startParamMap.size() > 0 && globalMap != null) { for (Map.Entry<String, String> param : globalMap.entrySet()) { String val = startParamMap.get(param.getKey()); if (val != null) { param.setValue(val); } } for (Entry<String, String> startParam : startParamMap.entrySet()) { if (!globalMap.containsKey(startParam.getKey())) { globalMap.put(startParam.getKey(), startParam.getValue()); globalParamList.add(new Property(startParam.getKey(), IN, VARCHAR, startParam.getValue())); } } } } /** * get process tenant * there is tenant id in definition, use the tenant of the definition. * if there is not tenant id in the definiton or the tenant not exist * use definition creator's tenant. * * @param tenantId tenantId * @param userId userId
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @return tenant */ @Override public Tenant getTenantForProcess(int tenantId, int userId) { Tenant tenant = null; if (tenantId >= 0) { tenant = tenantMapper.queryById(tenantId); } if (userId == 0) { return null; } if (tenant == null) { User user = userMapper.selectById(userId); tenant = tenantMapper.queryById(user.getTenantId()); } return tenant; } /** * get an environment * use the code of the environment to find a environment. * * @param environmentCode environmentCode * @return Environment */ @Override public Environment findEnvironmentByCode(Long environmentCode) { Environment environment = null; if (environmentCode >= 0) { environment = environmentMapper.queryByEnvironmentCode(environmentCode); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
return environment; } /** * check command parameters is valid * * @param command command * @param cmdParam cmdParam map * @return whether command param is valid */ private Boolean checkCmdParam(Command command, Map<String, String> cmdParam) { if (command.getTaskDependType() == TaskDependType.TASK_ONLY || command.getTaskDependType() == TaskDependType.TASK_PRE) { if (cmdParam == null || !cmdParam.containsKey(Constants.CMD_PARAM_START_NODES) || cmdParam.get(Constants.CMD_PARAM_START_NODES).isEmpty()) { logger.error("command node depend type is {}, but start nodes is null ", command.getTaskDependType()); return false; } } return true; } /** * construct process instance according to one command. * * @param command command * @param host host * @return process instance */ protected ProcessInstance constructProcessInstance(Command command, String host) { ProcessInstance processInstance; ProcessDefinition processDefinition;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
CommandType commandType = command.getCommandType(); processDefinition = this.findProcessDefinition(command.getProcessDefinitionCode(), command.getProcessDefinitionVersion()); if (processDefinition == null) { logger.error("cannot find the work process define! define code : {}", command.getProcessDefinitionCode()); return null; } Map<String, String> cmdParam = JSONUtils.toMap(command.getCommandParam()); int processInstanceId = command.getProcessInstanceId(); if (processInstanceId == 0) { processInstance = generateNewProcessInstance(processDefinition, command, cmdParam); } else { processInstance = this.findProcessInstanceDetailById(processInstanceId); if (processInstance == null) { return null; } } if (cmdParam != null) { CommandType commandTypeIfComplement = getCommandTypeIfComplement(processInstance, command); if (commandTypeIfComplement == CommandType.REPEAT_RUNNING) { setGlobalParamIfCommanded(processDefinition, cmdParam); } String timezoneId = cmdParam.get(Constants.SCHEDULE_TIMEZONE); processInstance.setGlobalParams(ParameterUtils.curingGlobalParams( processDefinition.getGlobalParamMap(), processDefinition.getGlobalParamList(), commandTypeIfComplement, processInstance.getScheduleTime(), timezoneId));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
processInstance.setProcessDefinition(processDefinition); } if (processInstance.getCommandParam() != null) { Map<String, String> processCmdParam = JSONUtils.toMap(processInstance.getCommandParam()); processCmdParam.forEach((key, value) -> { if (!cmdParam.containsKey(key)) { cmdParam.put(key, value); } }); } if (cmdParam != null && cmdParam.containsKey(Constants.CMD_PARAM_SUB_PROCESS)) { processInstance.setCommandParam(command.getCommandParam()); } if (Boolean.FALSE.equals(checkCmdParam(command, cmdParam))) { logger.error("command parameter check failed!"); return null; } if (command.getScheduleTime() != null) { processInstance.setScheduleTime(command.getScheduleTime()); } processInstance.setHost(host); processInstance.setRestartTime(new Date()); ExecutionStatus runStatus = ExecutionStatus.RUNNING_EXECUTION; int runTime = processInstance.getRunTimes(); switch (commandType) { case START_PROCESS: break; case START_FAILURE_TASK_PROCESS:
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
List<Integer> failedList = this.findTaskIdByInstanceState(processInstance.getId(), ExecutionStatus.FAILURE); List<Integer> toleranceList = this.findTaskIdByInstanceState(processInstance.getId(), ExecutionStatus.NEED_FAULT_TOLERANCE); List<Integer> killedList = this.findTaskIdByInstanceState(processInstance.getId(), ExecutionStatus.KILL); cmdParam.remove(Constants.CMD_PARAM_RECOVERY_START_NODE_STRING); failedList.addAll(killedList); failedList.addAll(toleranceList); for (Integer taskId : failedList) { initTaskInstance(this.findTaskInstanceById(taskId)); } cmdParam.put(Constants.CMD_PARAM_RECOVERY_START_NODE_STRING, String.join(Constants.COMMA, convertIntListToString(failedList))); processInstance.setCommandParam(JSONUtils.toJsonString(cmdParam)); processInstance.setRunTimes(runTime + 1); break; case START_CURRENT_TASK_PROCESS: break; case RECOVER_WAITING_THREAD: break; case RECOVER_SUSPENDED_PROCESS: cmdParam.remove(Constants.CMD_PARAM_RECOVERY_START_NODE_STRING); List<Integer> suspendedNodeList = this.findTaskIdByInstanceState(processInstance.getId(), ExecutionStatus.PAUSE); List<Integer> stopNodeList = findTaskIdByInstanceState(processInstance.getId(), ExecutionStatus.KILL); suspendedNodeList.addAll(stopNodeList); for (Integer taskId : suspendedNodeList) { initTaskInstance(this.findTaskInstanceById(taskId)); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
cmdParam.put(Constants.CMD_PARAM_RECOVERY_START_NODE_STRING, String.join(",", convertIntListToString(suspendedNodeList))); processInstance.setCommandParam(JSONUtils.toJsonString(cmdParam)); processInstance.setRunTimes(runTime + 1); break; case RECOVER_TOLERANCE_FAULT_PROCESS: processInstance.setRecovery(Flag.YES); runStatus = processInstance.getState(); break; case COMPLEMENT_DATA: if (processInstance.getId() != 0) { List<TaskInstance> taskInstanceList = this.findValidTaskListByProcessId(processInstance.getId()); for (TaskInstance taskInstance : taskInstanceList) { taskInstance.setFlag(Flag.NO); this.updateTaskInstance(taskInstance); } } break; case REPEAT_RUNNING: if (cmdParam.containsKey(Constants.CMD_PARAM_RECOVERY_START_NODE_STRING)) { cmdParam.remove(Constants.CMD_PARAM_RECOVERY_START_NODE_STRING); processInstance.setCommandParam(JSONUtils.toJsonString(cmdParam)); } List<TaskInstance> validTaskList = findValidTaskListByProcessId(processInstance.getId()); for (TaskInstance taskInstance : validTaskList) { taskInstance.setFlag(Flag.NO); updateTaskInstance(taskInstance);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
} processInstance.setStartTime(new Date()); processInstance.setRestartTime(processInstance.getStartTime()); processInstance.setEndTime(null); processInstance.setRunTimes(runTime + 1); initComplementDataParam(processDefinition, processInstance, cmdParam); break; case SCHEDULER: break; default: break; } processInstance.setState(runStatus); return processInstance; } /** * get process definition by command * If it is a fault-tolerant command, get the specified version of ProcessDefinition through ProcessInstance * Otherwise, get the latest version of ProcessDefinition * * @return ProcessDefinition */ private ProcessDefinition getProcessDefinitionByCommand(long processDefinitionCode, Map<String, String> cmdParam) { if (cmdParam != null) { int processInstanceId = 0; if (cmdParam.containsKey(Constants.CMD_PARAM_RECOVER_PROCESS_ID_STRING)) { processInstanceId = Integer.parseInt(cmdParam.get(Constants.CMD_PARAM_RECOVER_PROCESS_ID_STRING)); } else if (cmdParam.containsKey(Constants.CMD_PARAM_SUB_PROCESS)) { processInstanceId = Integer.parseInt(cmdParam.get(Constants.CMD_PARAM_SUB_PROCESS)); } else if (cmdParam.containsKey(Constants.CMD_PARAM_RECOVERY_WAITING_THREAD)) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
processInstanceId = Integer.parseInt(cmdParam.get(Constants.CMD_PARAM_RECOVERY_WAITING_THREAD)); } if (processInstanceId != 0) { ProcessInstance processInstance = this.findProcessInstanceDetailById(processInstanceId); if (processInstance == null) { return null; } return processDefineLogMapper.queryByDefinitionCodeAndVersion( processInstance.getProcessDefinitionCode(), processInstance.getProcessDefinitionVersion()); } } return processDefineMapper.queryByCode(processDefinitionCode); } /** * return complement data if the process start with complement data * * @param processInstance processInstance * @param command command * @return command type */ private CommandType getCommandTypeIfComplement(ProcessInstance processInstance, Command command) { if (CommandType.COMPLEMENT_DATA == processInstance.getCmdTypeIfComplement()) { return CommandType.COMPLEMENT_DATA; } else { return command.getCommandType(); } } /** * initialize complement data parameters *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @param processDefinition processDefinition * @param processInstance processInstance * @param cmdParam cmdParam */ private void initComplementDataParam(ProcessDefinition processDefinition, ProcessInstance processInstance, Map<String, String> cmdParam) { if (!processInstance.isComplementData()) { return; } Date start = DateUtils.stringToDate(cmdParam.get(CMDPARAM_COMPLEMENT_DATA_START_DATE)); Date end = DateUtils.stringToDate(cmdParam.get(CMDPARAM_COMPLEMENT_DATA_END_DATE)); List<Schedule> listSchedules = queryReleaseSchedulerListByProcessDefinitionCode(processInstance.getProcessDefinitionCode()); List<Date> complementDate = CronUtils.getSelfFireDateList(start, end, listSchedules); if (complementDate.size() > 0 && Flag.NO == processInstance.getIsSubProcess()) { processInstance.setScheduleTime(complementDate.get(0)); } String timezoneId = cmdParam.get(Constants.SCHEDULE_TIMEZONE); processInstance.setGlobalParams(ParameterUtils.curingGlobalParams( processDefinition.getGlobalParamMap(), processDefinition.getGlobalParamList(), CommandType.COMPLEMENT_DATA, processInstance.getScheduleTime(), timezoneId)); } /** * set sub work process parameters. * handle sub work process instance, update relation table and command parameters * set sub work process flag, extends parent work process command parameters *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @param subProcessInstance subProcessInstance */ @Override public void setSubProcessParam(ProcessInstance subProcessInstance) { String cmdParam = subProcessInstance.getCommandParam(); if (StringUtils.isEmpty(cmdParam)) { return; } Map<String, String> paramMap = JSONUtils.toMap(cmdParam); if (paramMap.containsKey(CMD_PARAM_SUB_PROCESS) && CMD_PARAM_EMPTY_SUB_PROCESS.equals(paramMap.get(CMD_PARAM_SUB_PROCESS))) { paramMap.remove(CMD_PARAM_SUB_PROCESS); paramMap.put(CMD_PARAM_SUB_PROCESS, String.valueOf(subProcessInstance.getId())); subProcessInstance.setCommandParam(JSONUtils.toJsonString(paramMap)); subProcessInstance.setIsSubProcess(Flag.YES); this.saveProcessInstance(subProcessInstance); } String parentInstanceId = paramMap.get(CMD_PARAM_SUB_PROCESS_PARENT_INSTANCE_ID); if (StringUtils.isNotEmpty(parentInstanceId)) { ProcessInstance parentInstance = findProcessInstanceDetailById(Integer.parseInt(parentInstanceId)); if (parentInstance != null) { subProcessInstance.setGlobalParams(joinGlobalParams(parentInstance.getGlobalParams(), subProcessInstance.getGlobalParams())); subProcessInstance.setVarPool(joinVarPool(parentInstance.getVarPool(), subProcessInstance.getVarPool())); this.saveProcessInstance(subProcessInstance); } else { logger.error("sub process command params error, cannot find parent instance: {} ", cmdParam); } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
ProcessInstanceMap processInstanceMap = JSONUtils.parseObject(cmdParam, ProcessInstanceMap.class); if (processInstanceMap == null || processInstanceMap.getParentProcessInstanceId() == 0) { return; } processInstanceMap.setProcessInstanceId(subProcessInstance.getId()); this.updateWorkProcessInstanceMap(processInstanceMap); } /** * join parent global params into sub process. * only the keys doesn't in sub process global would be joined. * * @param parentGlobalParams parentGlobalParams * @param subGlobalParams subGlobalParams * @return global params join */ private String joinGlobalParams(String parentGlobalParams, String subGlobalParams) { List<Property> parentParams = Lists.newArrayList(JSONUtils.toList(parentGlobalParams, Property.class)); List<Property> subParams = JSONUtils.toList(subGlobalParams, Property.class); Set<String> parentParamKeys = parentParams.stream().map(Property::getProp).collect(toSet()); List<Property> extraSubParams = subParams.stream() .filter(subProp -> !parentParamKeys.contains(subProp.getProp())).collect(Collectors.toList()); parentParams.addAll(extraSubParams); return JSONUtils.toJsonString(parentParams);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
} /** * join parent var pool params into sub process. * only the keys doesn't in sub process global would be joined. * * @param parentValPool * @param subValPool * @return */ private String joinVarPool(String parentValPool, String subValPool) { List<Property> parentValPools = Lists.newArrayList(JSONUtils.toList(parentValPool, Property.class)); parentValPools = parentValPools.stream().filter(valPool -> valPool.getDirect() == Direct.OUT).collect(Collectors.toList()); List<Property> subValPools = Lists.newArrayList(JSONUtils.toList(subValPool, Property.class)); Set<String> parentValPoolKeys = parentValPools.stream().map(Property::getProp).collect(toSet()); List<Property> extraSubValPools = subValPools.stream().filter(sub -> !parentValPoolKeys.contains(sub.getProp())).collect(Collectors.toList()); parentValPools.addAll(extraSubValPools); return JSONUtils.toJsonString(parentValPools); } /** * initialize task instance * * @param taskInstance taskInstance */ private void initTaskInstance(TaskInstance taskInstance) { if (!taskInstance.isSubProcess() && (taskInstance.getState().typeIsCancel() || taskInstance.getState().typeIsFailure())) { taskInstance.setFlag(Flag.NO); updateTaskInstance(taskInstance); return; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
taskInstance.setState(ExecutionStatus.SUBMITTED_SUCCESS); updateTaskInstance(taskInstance); } /** * retry submit task to db */ @Override public TaskInstance submitTaskWithRetry(ProcessInstance processInstance, TaskInstance taskInstance, int commitRetryTimes, int commitInterval) { int retryTimes = 1; TaskInstance task = null; while (retryTimes <= commitRetryTimes) { try { task = SpringApplicationContext.getBean(ProcessService.class).submitTask(processInstance, taskInstance); if (task != null && task.getId() != 0) { break; } logger.error("task commit to db failed , taskId {} has already retry {} times, please check the database", taskInstance.getId(), retryTimes); Thread.sleep(commitInterval); } catch (Exception e) { logger.error("task commit to db failed", e); } retryTimes += 1; } return task; } /** * submit task to db * submit sub process to command *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @param processInstance processInstance * @param taskInstance taskInstance * @return task instance */ @Override @Transactional(rollbackFor = Exception.class) public TaskInstance submitTask(ProcessInstance processInstance, TaskInstance taskInstance) { logger.info("start submit task : {}, instance id:{}, state: {}", taskInstance.getName(), taskInstance.getProcessInstanceId(), processInstance.getState()); TaskInstance task = submitTaskInstanceToDB(taskInstance, processInstance); if (task == null) { logger.error("end submit task to db error, task name:{}, process id:{} state: {} ", taskInstance.getName(), taskInstance.getProcessInstance(), processInstance.getState()); return null; } if (!task.getState().typeIsFinished()) { createSubWorkProcess(processInstance, task); } logger.info("end submit task to db successfully:{} {} state:{} complete, instance id:{} state: {} ", taskInstance.getId(), taskInstance.getName(), task.getState(), processInstance.getId(), processInstance.getState()); return task; } /** * set work process instance map * consider o * repeat running does not generate new sub process instance * set map {parent instance id, task instance id, 0(child instance id)} * * @param parentInstance parentInstance
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @param parentTask parentTask * @return process instance map */ private ProcessInstanceMap setProcessInstanceMap(ProcessInstance parentInstance, TaskInstance parentTask) { ProcessInstanceMap processMap = findWorkProcessMapByParent(parentInstance.getId(), parentTask.getId()); if (processMap != null) { return processMap; } if (parentInstance.getCommandType() == CommandType.REPEAT_RUNNING) { processMap = findPreviousTaskProcessMap(parentInstance, parentTask); if (processMap != null) { processMap.setParentTaskInstanceId(parentTask.getId()); updateWorkProcessInstanceMap(processMap); return processMap; } } processMap = new ProcessInstanceMap(); processMap.setParentProcessInstanceId(parentInstance.getId()); processMap.setParentTaskInstanceId(parentTask.getId()); createWorkProcessInstanceMap(processMap); return processMap; } /** * find previous task work process map. * * @param parentProcessInstance parentProcessInstance * @param parentTask parentTask * @return process instance map
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
*/ private ProcessInstanceMap findPreviousTaskProcessMap(ProcessInstance parentProcessInstance, TaskInstance parentTask) { Integer preTaskId = 0; List<TaskInstance> preTaskList = this.findPreviousTaskListByWorkProcessId(parentProcessInstance.getId()); for (TaskInstance task : preTaskList) { if (task.getName().equals(parentTask.getName())) { preTaskId = task.getId(); ProcessInstanceMap map = findWorkProcessMapByParent(parentProcessInstance.getId(), preTaskId); if (map != null) { return map; } } } logger.info("sub process instance is not found,parent task:{},parent instance:{}", parentTask.getId(), parentProcessInstance.getId()); return null; } /** * create sub work process command * * @param parentProcessInstance parentProcessInstance * @param task task */ @Override public void createSubWorkProcess(ProcessInstance parentProcessInstance, TaskInstance task) { if (!task.isSubProcess()) { return; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
ProcessInstanceMap instanceMap = findWorkProcessMapByParent(parentProcessInstance.getId(), task.getId()); if (null != instanceMap && CommandType.RECOVER_TOLERANCE_FAULT_PROCESS == parentProcessInstance.getCommandType()) { return; } instanceMap = setProcessInstanceMap(parentProcessInstance, task); ProcessInstance childInstance = null; if (instanceMap.getProcessInstanceId() != 0) { childInstance = findProcessInstanceById(instanceMap.getProcessInstanceId()); } Command subProcessCommand = createSubProcessCommand(parentProcessInstance, childInstance, instanceMap, task); updateSubProcessDefinitionByParent(parentProcessInstance, subProcessCommand.getProcessDefinitionCode()); initSubInstanceState(childInstance); createCommand(subProcessCommand); logger.info("sub process command created: {} ", subProcessCommand); } /** * complement data needs transform parent parameter to child. */ protected String getSubWorkFlowParam(ProcessInstanceMap instanceMap, ProcessInstance parentProcessInstance, Map<String, String> fatherParams) { String processMapStr = JSONUtils.toJsonString(instanceMap); Map<String, String> cmdParam = JSONUtils.toMap(processMapStr); if (parentProcessInstance.isComplementData()) { Map<String, String> parentParam = JSONUtils.toMap(parentProcessInstance.getCommandParam()); String endTime = parentParam.get(CMDPARAM_COMPLEMENT_DATA_END_DATE); String startTime = parentParam.get(CMDPARAM_COMPLEMENT_DATA_START_DATE); cmdParam.put(CMDPARAM_COMPLEMENT_DATA_END_DATE, endTime); cmdParam.put(CMDPARAM_COMPLEMENT_DATA_START_DATE, startTime); processMapStr = JSONUtils.toJsonString(cmdParam);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
} if (fatherParams.size() != 0) { cmdParam.put(CMD_PARAM_FATHER_PARAMS, JSONUtils.toJsonString(fatherParams)); processMapStr = JSONUtils.toJsonString(cmdParam); } return processMapStr; } @Override public Map<String, String> getGlobalParamMap(String globalParams) { List<Property> propList; Map<String, String> globalParamMap = new HashMap<>(); if (StringUtils.isNotEmpty(globalParams)) { propList = JSONUtils.toList(globalParams, Property.class); globalParamMap = propList.stream().collect(Collectors.toMap(Property::getProp, Property::getValue)); } return globalParamMap; } /** * create sub work process command */ @Override public Command createSubProcessCommand(ProcessInstance parentProcessInstance, ProcessInstance childInstance, ProcessInstanceMap instanceMap, TaskInstance task) { CommandType commandType = getSubCommandType(parentProcessInstance, childInstance); Map<String, Object> subProcessParam = JSONUtils.toMap(task.getTaskParams(), String.class, Object.class); long childDefineCode = 0L; if (subProcessParam.containsKey(Constants.CMD_PARAM_SUB_PROCESS_DEFINE_CODE)) { childDefineCode = NumberUtils.toLong(String.valueOf(subProcessParam.get(Constants.CMD_PARAM_SUB_PROCESS_DEFINE_CODE)));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
} ProcessDefinition subProcessDefinition = processDefineMapper.queryByCode(childDefineCode); Object localParams = subProcessParam.get(Constants.LOCAL_PARAMS); List<Property> allParam = JSONUtils.toList(JSONUtils.toJsonString(localParams), Property.class); Map<String, String> globalMap = this.getGlobalParamMap(task.getVarPool()); Map<String, String> fatherParams = new HashMap<>(); if (CollectionUtils.isNotEmpty(allParam)) { for (Property info : allParam) { if (Direct.OUT == info.getDirect()) { continue; } fatherParams.put(info.getProp(), globalMap.get(info.getProp())); } } String processParam = getSubWorkFlowParam(instanceMap, parentProcessInstance, fatherParams); int subProcessInstanceId = childInstance == null ? 0 : childInstance.getId(); return new Command( commandType, TaskDependType.TASK_POST, parentProcessInstance.getFailureStrategy(), parentProcessInstance.getExecutorId(), subProcessDefinition.getCode(), processParam, parentProcessInstance.getWarningType(), parentProcessInstance.getWarningGroupId(), parentProcessInstance.getScheduleTime(), task.getWorkerGroup(), task.getEnvironmentCode(), parentProcessInstance.getProcessInstancePriority(), parentProcessInstance.getDryRun(),
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
subProcessInstanceId, subProcessDefinition.getVersion() ); } /** * initialize sub work flow state * child instance state would be initialized when 'recovery from pause/stop/failure' */ private void initSubInstanceState(ProcessInstance childInstance) { if (childInstance != null) { childInstance.setState(ExecutionStatus.RUNNING_EXECUTION); updateProcessInstance(childInstance); } } /** * get sub work flow command type * child instance exist: child command = fatherCommand * child instance not exists: child command = fatherCommand[0] */ private CommandType getSubCommandType(ProcessInstance parentProcessInstance, ProcessInstance childInstance) { CommandType commandType = parentProcessInstance.getCommandType(); if (childInstance == null) { String fatherHistoryCommand = parentProcessInstance.getHistoryCmd(); commandType = CommandType.valueOf(fatherHistoryCommand.split(Constants.COMMA)[0]); } return commandType; } /** * update sub process definition *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @param parentProcessInstance parentProcessInstance * @param childDefinitionCode childDefinitionId */ private void updateSubProcessDefinitionByParent(ProcessInstance parentProcessInstance, long childDefinitionCode) { ProcessDefinition fatherDefinition = this.findProcessDefinition(parentProcessInstance.getProcessDefinitionCode(), parentProcessInstance.getProcessDefinitionVersion()); ProcessDefinition childDefinition = this.findProcessDefinitionByCode(childDefinitionCode); if (childDefinition != null && fatherDefinition != null) { childDefinition.setWarningGroupId(fatherDefinition.getWarningGroupId()); processDefineMapper.updateById(childDefinition); } } /** * submit task to mysql * * @param taskInstance taskInstance * @param processInstance processInstance * @return task instance */ @Override public TaskInstance submitTaskInstanceToDB(TaskInstance taskInstance, ProcessInstance processInstance) { ExecutionStatus processInstanceState = processInstance.getState(); if (processInstanceState.typeIsFinished() || processInstanceState == ExecutionStatus.READY_STOP) { logger.warn("processInstance {} was {}, skip submit task", processInstance.getProcessDefinitionCode(), processInstanceState); return null; } if (processInstanceState == ExecutionStatus.READY_PAUSE) { taskInstance.setState(ExecutionStatus.PAUSE); } taskInstance.setExecutorId(processInstance.getExecutorId());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
taskInstance.setState(getSubmitTaskState(taskInstance, processInstance)); if (taskInstance.getSubmitTime() == null) { taskInstance.setSubmitTime(new Date()); } if (taskInstance.getFirstSubmitTime() == null) { taskInstance.setFirstSubmitTime(taskInstance.getSubmitTime()); } boolean saveResult = saveTaskInstance(taskInstance); if (!saveResult) { return null; } return taskInstance; } /** * get submit task instance state by the work process state * cannot modify the task state when running/kill/submit success, or this * task instance is already exists in task queue . * return pause if work process state is ready pause * return stop if work process state is ready stop * if all of above are not satisfied, return submit success * * @param taskInstance taskInstance * @param processInstance processInstance * @return process instance state */ @Override public ExecutionStatus getSubmitTaskState(TaskInstance taskInstance, ProcessInstance processInstance) { ExecutionStatus state = taskInstance.getState();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
if ( state == ExecutionStatus.RUNNING_EXECUTION || state == ExecutionStatus.DELAY_EXECUTION || state == ExecutionStatus.KILL || state == ExecutionStatus.DISPATCH ) { return state; } if (processInstance.getState() == ExecutionStatus.READY_PAUSE) { state = ExecutionStatus.PAUSE; } else if (processInstance.getState() == ExecutionStatus.READY_STOP || !checkProcessStrategy(taskInstance, processInstance)) { state = ExecutionStatus.KILL; } else { state = ExecutionStatus.SUBMITTED_SUCCESS; } return state; } /** * check process instance strategy * * @param taskInstance taskInstance * @return check strategy result */ private boolean checkProcessStrategy(TaskInstance taskInstance, ProcessInstance processInstance) { FailureStrategy failureStrategy = processInstance.getFailureStrategy(); if (failureStrategy == FailureStrategy.CONTINUE) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
return true; } List<TaskInstance> taskInstances = this.findValidTaskListByProcessId(taskInstance.getProcessInstanceId()); for (TaskInstance task : taskInstances) { if (task.getState() == ExecutionStatus.FAILURE && task.getRetryTimes() >= task.getMaxRetryTimes()) { return false; } } return true; } /** * insert or update work process instance to data base * * @param processInstance processInstance */ @Override public void saveProcessInstance(ProcessInstance processInstance) { if (processInstance == null) { logger.error("save error, process instance is null!"); return; } if (processInstance.getId() != 0) { processInstanceMapper.updateById(processInstance); } else { processInstanceMapper.insert(processInstance); } } /** * insert or update command
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* * @param command command * @return save command result */ @Override public int saveCommand(Command command) { if (command.getId() != 0) { return commandMapper.updateById(command); } else { return commandMapper.insert(command); } } /** * insert or update task instance * * @param taskInstance taskInstance * @return save task instance result */ @Override public boolean saveTaskInstance(TaskInstance taskInstance) { if (taskInstance.getId() != 0) { return updateTaskInstance(taskInstance); } else { return createTaskInstance(taskInstance); } } /** * insert task instance * * @param taskInstance taskInstance
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @return create task instance result */ @Override public boolean createTaskInstance(TaskInstance taskInstance) { int count = taskInstanceMapper.insert(taskInstance); return count > 0; } /** * update task instance * * @param taskInstance taskInstance * @return update task instance result */ @Override public boolean updateTaskInstance(TaskInstance taskInstance) { int count = taskInstanceMapper.updateById(taskInstance); return count > 0; } /** * find task instance by id * * @param taskId task id * @return task instance */ @Override public TaskInstance findTaskInstanceById(Integer taskId) { return taskInstanceMapper.selectById(taskId); } /** * find task instance list by id list
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* * @param idList task id list * @return task instance list */ @Override public List<TaskInstance> findTaskInstanceByIdList(List<Integer> idList) { if (CollectionUtils.isEmpty(idList)) { return new ArrayList<>(); } return taskInstanceMapper.selectBatchIds(idList); } /** * package task instance */ @Override public void packageTaskInstance(TaskInstance taskInstance, ProcessInstance processInstance) { taskInstance.setProcessInstance(processInstance); taskInstance.setProcessDefine(processInstance.getProcessDefinition()); taskInstance.setProcessInstancePriority(processInstance.getProcessInstancePriority()); TaskDefinition taskDefinition = this.findTaskDefinition( taskInstance.getTaskCode(), taskInstance.getTaskDefinitionVersion()); this.updateTaskDefinitionResources(taskDefinition); taskInstance.setTaskDefine(taskDefinition); } /** * Update {@link ResourceInfo} information in {@link TaskDefinition} * * @param taskDefinition the given {@link TaskDefinition} */
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
@Override public void updateTaskDefinitionResources(TaskDefinition taskDefinition) { Map<String, Object> taskParameters = JSONUtils.parseObject( taskDefinition.getTaskParams(), new TypeReference<Map<String, Object>>() { }); if (taskParameters != null) { if (taskParameters.containsKey("mainJar")) { Object mainJarObj = taskParameters.get("mainJar"); ResourceInfo mainJar = JSONUtils.parseObject( JSONUtils.toJsonString(mainJarObj), ResourceInfo.class); ResourceInfo resourceInfo = updateResourceInfo(mainJar); if (resourceInfo != null) { taskParameters.put("mainJar", resourceInfo); } } if (taskParameters.containsKey("resourceList")) { String resourceListStr = JSONUtils.toJsonString(taskParameters.get("resourceList")); List<ResourceInfo> resourceInfos = JSONUtils.toList(resourceListStr, ResourceInfo.class); List<ResourceInfo> updatedResourceInfos = resourceInfos .stream() .map(this::updateResourceInfo) .filter(Objects::nonNull) .collect(Collectors.toList()); taskParameters.put("resourceList", updatedResourceInfos); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
taskDefinition.setTaskParams(JSONUtils.toJsonString(taskParameters)); } } /** * update {@link ResourceInfo} by given original ResourceInfo * * @param res origin resource info * @return {@link ResourceInfo} */ private ResourceInfo updateResourceInfo(ResourceInfo res) { ResourceInfo resourceInfo = null; if (res != null) { int resourceId = res.getId(); if (resourceId <= 0) { logger.error("invalid resourceId, {}", resourceId); return null; } resourceInfo = new ResourceInfo(); Resource resource = getResourceById(resourceId); resourceInfo.setId(resourceId); resourceInfo.setRes(resource.getFileName()); resourceInfo.setResourceName(resource.getFullName()); if (logger.isInfoEnabled()) { logger.info("updated resource info {}", JSONUtils.toJsonString(resourceInfo)); } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
return resourceInfo; } /** * get id list by task state * * @param instanceId instanceId * @param state state * @return task instance states */ @Override public List<Integer> findTaskIdByInstanceState(int instanceId, ExecutionStatus state) { return taskInstanceMapper.queryTaskByProcessIdAndState(instanceId, state.ordinal()); } /** * find valid task list by process definition id * * @param processInstanceId processInstanceId * @return task instance list */ @Override public List<TaskInstance> findValidTaskListByProcessId(Integer processInstanceId) { return taskInstanceMapper.findValidTaskListByProcessId(processInstanceId, Flag.YES); } /** * find previous task list by work process id * * @param processInstanceId processInstanceId * @return task instance list */ @Override
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
public List<TaskInstance> findPreviousTaskListByWorkProcessId(Integer processInstanceId) { return taskInstanceMapper.findValidTaskListByProcessId(processInstanceId, Flag.NO); } /** * update work process instance map * * @param processInstanceMap processInstanceMap * @return update process instance result */ @Override public int updateWorkProcessInstanceMap(ProcessInstanceMap processInstanceMap) { return processInstanceMapMapper.updateById(processInstanceMap); } /** * create work process instance map * * @param processInstanceMap processInstanceMap * @return create process instance result */ @Override public int createWorkProcessInstanceMap(ProcessInstanceMap processInstanceMap) { int count = 0; if (processInstanceMap != null) { return processInstanceMapMapper.insert(processInstanceMap); } return count; } /** * find work process map by parent process id and parent task id. *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @param parentWorkProcessId parentWorkProcessId * @param parentTaskId parentTaskId * @return process instance map */ @Override public ProcessInstanceMap findWorkProcessMapByParent(Integer parentWorkProcessId, Integer parentTaskId) { return processInstanceMapMapper.queryByParentId(parentWorkProcessId, parentTaskId); } /** * delete work process map by parent process id * * @param parentWorkProcessId parentWorkProcessId * @return delete process map result */ @Override public int deleteWorkProcessMapByParentId(int parentWorkProcessId) { return processInstanceMapMapper.deleteByParentProcessId(parentWorkProcessId); } /** * find sub process instance * * @param parentProcessId parentProcessId * @param parentTaskId parentTaskId * @return process instance */ @Override public ProcessInstance findSubProcessInstance(Integer parentProcessId, Integer parentTaskId) { ProcessInstance processInstance = null; ProcessInstanceMap processInstanceMap = processInstanceMapMapper.queryByParentId(parentProcessId, parentTaskId); if (processInstanceMap == null || processInstanceMap.getProcessInstanceId() == 0) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
return processInstance; } processInstance = findProcessInstanceById(processInstanceMap.getProcessInstanceId()); return processInstance; } /** * find parent process instance * * @param subProcessId subProcessId * @return process instance */ @Override public ProcessInstance findParentProcessInstance(Integer subProcessId) { ProcessInstance processInstance = null; ProcessInstanceMap processInstanceMap = processInstanceMapMapper.queryBySubProcessId(subProcessId); if (processInstanceMap == null || processInstanceMap.getProcessInstanceId() == 0) { return processInstance; } processInstance = findProcessInstanceById(processInstanceMap.getParentProcessInstanceId()); return processInstance; } /** * update process instance * * @param processInstance processInstance * @return update process instance result */ @Override public int updateProcessInstance(ProcessInstance processInstance) { return processInstanceMapper.updateById(processInstance);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
} /** * for show in page of taskInstance */ @Override public void changeOutParam(TaskInstance taskInstance) { if (StringUtils.isEmpty(taskInstance.getVarPool())) { return; } List<Property> properties = JSONUtils.toList(taskInstance.getVarPool(), Property.class); if (CollectionUtils.isEmpty(properties)) { return; } Map<String, Object> taskParams = JSONUtils.parseObject(taskInstance.getTaskParams(), new TypeReference<Map<String, Object>>() { }); Object localParams = taskParams.get(LOCAL_PARAMS); if (localParams == null) { return; } List<Property> allParam = JSONUtils.toList(JSONUtils.toJsonString(localParams), Property.class); Map<String, String> outProperty = new HashMap<>(); for (Property info : properties) { if (info.getDirect() == Direct.OUT) { outProperty.put(info.getProp(), info.getValue()); } } for (Property info : allParam) { if (info.getDirect() == Direct.OUT) { String paramName = info.getProp();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
info.setValue(outProperty.get(paramName)); } } taskParams.put(LOCAL_PARAMS, allParam); taskInstance.setTaskParams(JSONUtils.toJsonString(taskParams)); } /** * convert integer list to string list * * @param intList intList * @return string list */ @Override public List<String> convertIntListToString(List<Integer> intList) { if (intList == null) { return new ArrayList<>(); } List<String> result = new ArrayList<>(intList.size()); for (Integer intVar : intList) { result.add(String.valueOf(intVar)); } return result; } /** * query schedule by id * * @param id id * @return schedule */ @Override
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
public Schedule querySchedule(int id) { return scheduleMapper.selectById(id); } /** * query Schedule by processDefinitionCode * * @param processDefinitionCode processDefinitionCode * @see Schedule */ @Override public List<Schedule> queryReleaseSchedulerListByProcessDefinitionCode(long processDefinitionCode) { return scheduleMapper.queryReleaseSchedulerListByProcessDefinitionCode(processDefinitionCode); } /** * query Schedule by processDefinitionCode * * @param processDefinitionCodeList processDefinitionCodeList * @see Schedule */ @Override public Map<Long, String> queryWorkerGroupByProcessDefinitionCodes(List<Long> processDefinitionCodeList) { List<Schedule> processDefinitionScheduleList = scheduleMapper.querySchedulesByProcessDefinitionCodes(processDefinitionCodeList); return processDefinitionScheduleList.stream().collect(Collectors.toMap(Schedule::getProcessDefinitionCode, Schedule::getWorkerGroup)); } /** * query dependent process definition by process definition code * * @param processDefinitionCode processDefinitionCode * @see DependentProcessDefinition
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
*/ @Override public List<DependentProcessDefinition> queryDependentProcessDefinitionByProcessDefinitionCode(long processDefinitionCode) { return workFlowLineageMapper.queryDependentProcessDefinitionByProcessDefinitionCode(processDefinitionCode); } /** * query need failover process instance * * @param host host * @return process instance list */ @Override public List<ProcessInstance> queryNeedFailoverProcessInstances(String host) { return processInstanceMapper.queryByHostAndStatus(host, stateArray); } @Override public List<String> queryNeedFailoverProcessInstanceHost() { return processInstanceMapper.queryNeedFailoverProcessInstanceHost(stateArray); } /** * process need failover process instance * * @param processInstance processInstance */ @Override @Transactional(rollbackFor = RuntimeException.class) public void processNeedFailoverProcessInstances(ProcessInstance processInstance) { processInstance.setHost(Constants.NULL); processInstanceMapper.updateById(processInstance);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
ProcessDefinition processDefinition = findProcessDefinition(processInstance.getProcessDefinitionCode(), processInstance.getProcessDefinitionVersion()); Command cmd = new Command(); cmd.setProcessDefinitionCode(processDefinition.getCode()); cmd.setProcessDefinitionVersion(processDefinition.getVersion()); cmd.setProcessInstanceId(processInstance.getId()); cmd.setCommandParam(String.format("{\"%s\":%d}", Constants.CMD_PARAM_RECOVER_PROCESS_ID_STRING, processInstance.getId())); cmd.setExecutorId(processInstance.getExecutorId()); cmd.setCommandType(CommandType.RECOVER_TOLERANCE_FAULT_PROCESS); createCommand(cmd); } /** * query all need failover task instances by host * * @param host host * @return task instance list */ @Override public List<TaskInstance> queryNeedFailoverTaskInstances(String host) { return taskInstanceMapper.queryByHostAndStatus(host, stateArray); } /** * find data source by id * * @param id id * @return datasource */ @Override public DataSource findDataSourceById(int id) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
return dataSourceMapper.selectById(id); } /** * update process instance state by id * * @param processInstanceId processInstanceId * @param executionStatus executionStatus * @return update process result */ @Override public int updateProcessInstanceState(Integer processInstanceId, ExecutionStatus executionStatus) { ProcessInstance instance = processInstanceMapper.selectById(processInstanceId); instance.setState(executionStatus); return processInstanceMapper.updateById(instance); } /** * find process instance by the task id * * @param taskId taskId * @return process instance */ @Override public ProcessInstance findProcessInstanceByTaskId(int taskId) { TaskInstance taskInstance = taskInstanceMapper.selectById(taskId); if (taskInstance != null) { return processInstanceMapper.selectById(taskInstance.getProcessInstanceId()); } return null; } /**
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* find udf function list by id list string * * @param ids ids * @return udf function list */ @Override public List<UdfFunc> queryUdfFunListByIds(Integer[] ids) { return udfFuncMapper.queryUdfByIdStr(ids, null); } /** * find tenant code by resource name * * @param resName resource name * @param resourceType resource type * @return tenant code */ @Override public String queryTenantCodeByResName(String resName, ResourceType resourceType) { String fullName = resName.startsWith("/") ? resName : String.format("/%s", resName); List<Resource> resourceList = resourceMapper.queryResource(fullName, resourceType.ordinal()); if (CollectionUtils.isEmpty(resourceList)) { return StringUtils.EMPTY; } int userId = resourceList.get(0).getUserId(); User user = userMapper.selectById(userId); if (Objects.isNull(user)) { return StringUtils.EMPTY; } Tenant tenant = tenantMapper.queryById(user.getTenantId());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
if (Objects.isNull(tenant)) { return StringUtils.EMPTY; } return tenant.getTenantCode(); } /** * find schedule list by process define codes. * * @param codes codes * @return schedule list */ @Override public List<Schedule> selectAllByProcessDefineCode(long[] codes) { return scheduleMapper.selectAllByProcessDefineArray(codes); } /** * find last scheduler process instance in the date interval * * @param definitionCode definitionCode * @param dateInterval dateInterval * @return process instance */ @Override public ProcessInstance findLastSchedulerProcessInterval(Long definitionCode, DateInterval dateInterval) { return processInstanceMapper.queryLastSchedulerProcess(definitionCode, dateInterval.getStartTime(), dateInterval.getEndTime()); } /** * find last manual process instance interval
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* * @param definitionCode process definition code * @param dateInterval dateInterval * @return process instance */ @Override public ProcessInstance findLastManualProcessInterval(Long definitionCode, DateInterval dateInterval) { return processInstanceMapper.queryLastManualProcess(definitionCode, dateInterval.getStartTime(), dateInterval.getEndTime()); } /** * find last running process instance * * @param definitionCode process definition code * @param startTime start time * @param endTime end time * @return process instance */ @Override public ProcessInstance findLastRunningProcess(Long definitionCode, Date startTime, Date endTime) { return processInstanceMapper.queryLastRunningProcess(definitionCode, startTime, endTime, stateArray); } /** * query user queue by process instance * * @param processInstance processInstance
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @return queue */ @Override public String queryUserQueueByProcessInstance(ProcessInstance processInstance) { String queue = ""; if (processInstance == null) { return queue; } User executor = userMapper.selectById(processInstance.getExecutorId()); if (executor != null) { queue = executor.getQueue(); } return queue; } /** * query project name and user name by processInstanceId. * * @param processInstanceId processInstanceId * @return projectName and userName */ @Override public ProjectUser queryProjectWithUserByProcessInstanceId(int processInstanceId) { return projectMapper.queryProjectWithUserByProcessInstanceId(processInstanceId); } /** * get task worker group * * @param taskInstance taskInstance * @return workerGroupId */
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
@Override public String getTaskWorkerGroup(TaskInstance taskInstance) { String workerGroup = taskInstance.getWorkerGroup(); if (StringUtils.isNotBlank(workerGroup)) { return workerGroup; } int processInstanceId = taskInstance.getProcessInstanceId(); ProcessInstance processInstance = findProcessInstanceById(processInstanceId); if (processInstance != null) { return processInstance.getWorkerGroup(); } logger.info("task : {} will use default worker group", taskInstance.getId()); return Constants.DEFAULT_WORKER_GROUP; } /** * get have perm project list * * @param userId userId * @return project list */ @Override public List<Project> getProjectListHavePerm(int userId) { List<Project> createProjects = projectMapper.queryProjectCreatedByUser(userId); List<Project> authedProjects = projectMapper.queryAuthedProjectListByUserId(userId); if (createProjects == null) { createProjects = new ArrayList<>(); } if (authedProjects != null) { createProjects.addAll(authedProjects); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
return createProjects; } /** * list unauthorized udf function * * @param userId user id * @param needChecks data source id array * @return unauthorized udf function list */ @Override public <T> List<T> listUnauthorized(int userId, T[] needChecks, AuthorizationType authorizationType) { List<T> resultList = new ArrayList<>(); if (Objects.nonNull(needChecks) && needChecks.length > 0) { Set<T> originResSet = new HashSet<>(Arrays.asList(needChecks)); switch (authorizationType) { case RESOURCE_FILE_ID: case UDF_FILE: List<Resource> ownUdfResources = resourceMapper.listAuthorizedResourceById(userId, needChecks); addAuthorizedResources(ownUdfResources, userId); Set<Integer> authorizedResourceFiles = ownUdfResources.stream().map(Resource::getId).collect(toSet()); originResSet.removeAll(authorizedResourceFiles); break; case RESOURCE_FILE_NAME: List<Resource> ownResources = resourceMapper.listAuthorizedResource(userId, needChecks); addAuthorizedResources(ownResources, userId); Set<String> authorizedResources = ownResources.stream().map(Resource::getFullName).collect(toSet()); originResSet.removeAll(authorizedResources); break; case DATASOURCE: Set<Integer> authorizedDatasources = dataSourceMapper.listAuthorizedDataSource(userId, needChecks).stream().map(DataSource::getId).collect(toSet());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
originResSet.removeAll(authorizedDatasources); break; case UDF: Set<Integer> authorizedUdfs = udfFuncMapper.listAuthorizedUdfFunc(userId, needChecks).stream().map(UdfFunc::getId).collect(toSet()); originResSet.removeAll(authorizedUdfs); break; default: break; } resultList.addAll(originResSet); } return resultList; } /** * get user by user id * * @param userId user id * @return User */ @Override public User getUserById(int userId) { return userMapper.selectById(userId); } /** * get resource by resource id * * @param resourceId resource id * @return Resource */ @Override
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
public Resource getResourceById(int resourceId) { return resourceMapper.selectById(resourceId); } /** * list resources by ids * * @param resIds resIds * @return resource list */ @Override public List<Resource> listResourceByIds(Integer[] resIds) { return resourceMapper.listResourceByIds(resIds); } /** * format task app id in task instance */ @Override public String formatTaskAppId(TaskInstance taskInstance) { ProcessInstance processInstance = findProcessInstanceById(taskInstance.getProcessInstanceId()); if (processInstance == null) { return ""; } ProcessDefinition definition = findProcessDefinition(processInstance.getProcessDefinitionCode(), processInstance.getProcessDefinitionVersion()); if (definition == null) { return ""; } return String.format("%s_%s_%s", definition.getId(), processInstance.getId(), taskInstance.getId()); } /** * switch process definition version to process definition log version
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
*/ @Override public int switchVersion(ProcessDefinition processDefinition, ProcessDefinitionLog processDefinitionLog) { if (null == processDefinition || null == processDefinitionLog) { return Constants.DEFINITION_FAILURE; } processDefinitionLog.setId(processDefinition.getId()); processDefinitionLog.setReleaseState(ReleaseState.OFFLINE); processDefinitionLog.setFlag(Flag.YES); int result = processDefineMapper.updateById(processDefinitionLog); if (result > 0) { result = switchProcessTaskRelationVersion(processDefinitionLog); if (result <= 0) { return Constants.EXIT_CODE_FAILURE; } } return result; } @Override public int switchProcessTaskRelationVersion(ProcessDefinition processDefinition) { List<ProcessTaskRelation> processTaskRelationList = processTaskRelationMapper.queryByProcessCode(processDefinition.getProjectCode(), processDefinition.getCode()); if (!processTaskRelationList.isEmpty()) { processTaskRelationMapper.deleteByCode(processDefinition.getProjectCode(), processDefinition.getCode()); } List<ProcessTaskRelationLog> processTaskRelationLogList = processTaskRelationLogMapper.queryByProcessCodeAndVersion(processDefinition.getCode(), processDefinition.getVersion()); int batchInsert = processTaskRelationMapper.batchInsert(processTaskRelationLogList); if (batchInsert == 0) { return Constants.EXIT_CODE_FAILURE; } else { int result = 0;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
for (ProcessTaskRelationLog taskRelationLog : processTaskRelationLogList) { int switchResult = switchTaskDefinitionVersion(taskRelationLog.getPostTaskCode(), taskRelationLog.getPostTaskVersion()); if (switchResult != Constants.EXIT_CODE_FAILURE) { result++; } } return result; } } @Override public int switchTaskDefinitionVersion(long taskCode, int taskVersion) { TaskDefinition taskDefinition = taskDefinitionMapper.queryByCode(taskCode); if (taskDefinition == null) { return Constants.EXIT_CODE_FAILURE; } if (taskDefinition.getVersion() == taskVersion) { return Constants.EXIT_CODE_SUCCESS; } TaskDefinitionLog taskDefinitionUpdate = taskDefinitionLogMapper.queryByDefinitionCodeAndVersion(taskCode, taskVersion); if (taskDefinitionUpdate == null) { return Constants.EXIT_CODE_FAILURE; } taskDefinitionUpdate.setUpdateTime(new Date()); taskDefinitionUpdate.setId(taskDefinition.getId()); return taskDefinitionMapper.updateById(taskDefinitionUpdate); } /** * get resource ids * * @param taskDefinition taskDefinition
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* @return resource ids */ @Override public String getResourceIds(TaskDefinition taskDefinition) { Set<Integer> resourceIds = null; AbstractParameters params = taskPluginManager.getParameters(ParametersNode.builder().taskType(taskDefinition.getTaskType()).taskParams(taskDefinition.getTaskParams()).build()); if (params != null && CollectionUtils.isNotEmpty(params.getResourceFilesList())) { resourceIds = params.getResourceFilesList(). stream() .filter(t -> t.getId() != 0) .map(ResourceInfo::getId) .collect(toSet()); } if (CollectionUtils.isEmpty(resourceIds)) { return StringUtils.EMPTY; } return StringUtils.join(resourceIds, ","); } @Override public int saveTaskDefine(User operator, long projectCode, List<TaskDefinitionLog> taskDefinitionLogs, Boolean syncDefine) { Date now = new Date(); List<TaskDefinitionLog> newTaskDefinitionLogs = new ArrayList<>(); List<TaskDefinitionLog> updateTaskDefinitionLogs = new ArrayList<>(); for (TaskDefinitionLog taskDefinitionLog : taskDefinitionLogs) { taskDefinitionLog.setProjectCode(projectCode); taskDefinitionLog.setUpdateTime(now); taskDefinitionLog.setOperateTime(now); taskDefinitionLog.setOperator(operator.getId()); taskDefinitionLog.setResourceIds(getResourceIds(taskDefinitionLog)); if (taskDefinitionLog.getCode() == 0) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
try { taskDefinitionLog.setCode(CodeGenerateUtils.getInstance().genCode()); } catch (CodeGenerateException e) { logger.error("Task code get error, ", e); return Constants.DEFINITION_FAILURE; } } if (taskDefinitionLog.getVersion() == 0) { taskDefinitionLog.setVersion(Constants.VERSION_FIRST); } TaskDefinitionLog definitionCodeAndVersion = taskDefinitionLogMapper .queryByDefinitionCodeAndVersion(taskDefinitionLog.getCode(), taskDefinitionLog.getVersion()); if (definitionCodeAndVersion == null) { taskDefinitionLog.setUserId(operator.getId()); taskDefinitionLog.setCreateTime(now); newTaskDefinitionLogs.add(taskDefinitionLog); continue; } if (taskDefinitionLog.equals(definitionCodeAndVersion)) { continue; } taskDefinitionLog.setUserId(definitionCodeAndVersion.getUserId()); Integer version = taskDefinitionLogMapper.queryMaxVersionForDefinition(taskDefinitionLog.getCode()); taskDefinitionLog.setVersion(version + 1); taskDefinitionLog.setCreateTime(definitionCodeAndVersion.getCreateTime()); updateTaskDefinitionLogs.add(taskDefinitionLog); } int insertResult = 0;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
int updateResult = 0; for (TaskDefinitionLog taskDefinitionToUpdate : updateTaskDefinitionLogs) { TaskDefinition task = taskDefinitionMapper.queryByCode(taskDefinitionToUpdate.getCode()); if (task == null) { newTaskDefinitionLogs.add(taskDefinitionToUpdate); } else { insertResult += taskDefinitionLogMapper.insert(taskDefinitionToUpdate); if (Boolean.TRUE.equals(syncDefine)) { taskDefinitionToUpdate.setId(task.getId()); updateResult += taskDefinitionMapper.updateById(taskDefinitionToUpdate); } else { updateResult++; } } } if (!newTaskDefinitionLogs.isEmpty()) { insertResult += taskDefinitionLogMapper.batchInsert(newTaskDefinitionLogs); if (Boolean.TRUE.equals(syncDefine)) { updateResult += taskDefinitionMapper.batchInsert(newTaskDefinitionLogs); } else { updateResult += newTaskDefinitionLogs.size(); } } return (insertResult & updateResult) > 0 ? 1 : Constants.EXIT_CODE_SUCCESS; } /** * save processDefinition (including create or update processDefinition) */ @Override public int saveProcessDefine(User operator, ProcessDefinition processDefinition, Boolean syncDefine, Boolean isFromProcessDefine) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
ProcessDefinitionLog processDefinitionLog = new ProcessDefinitionLog(processDefinition); Integer version = processDefineLogMapper.queryMaxVersionForDefinition(processDefinition.getCode()); int insertVersion = version == null || version == 0 ? Constants.VERSION_FIRST : version + 1; processDefinitionLog.setVersion(insertVersion); processDefinitionLog.setReleaseState(!isFromProcessDefine || processDefinitionLog.getReleaseState() == ReleaseState.ONLINE ? ReleaseState.ONLINE : ReleaseState.OFFLINE); processDefinitionLog.setOperator(operator.getId()); processDefinitionLog.setOperateTime(processDefinition.getUpdateTime()); int insertLog = processDefineLogMapper.insert(processDefinitionLog); int result = 1; if (Boolean.TRUE.equals(syncDefine)) { if (0 == processDefinition.getId()) { result = processDefineMapper.insert(processDefinitionLog); } else { processDefinitionLog.setId(processDefinition.getId()); result = processDefineMapper.updateById(processDefinitionLog); } } return (insertLog & result) > 0 ? insertVersion : 0; } /** * save task relations */ @Override public int saveTaskRelation(User operator, long projectCode, long processDefinitionCode, int processDefinitionVersion, List<ProcessTaskRelationLog> taskRelationList, List<TaskDefinitionLog> taskDefinitionLogs, Boolean syncDefine) { if (taskRelationList.isEmpty()) { return Constants.EXIT_CODE_SUCCESS; } Map<Long, TaskDefinitionLog> taskDefinitionLogMap = null;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
if (CollectionUtils.isNotEmpty(taskDefinitionLogs)) { taskDefinitionLogMap = taskDefinitionLogs.stream() .collect(Collectors.toMap(TaskDefinition::getCode, taskDefinitionLog -> taskDefinitionLog)); } Date now = new Date(); for (ProcessTaskRelationLog processTaskRelationLog : taskRelationList) { processTaskRelationLog.setProjectCode(projectCode); processTaskRelationLog.setProcessDefinitionCode(processDefinitionCode); processTaskRelationLog.setProcessDefinitionVersion(processDefinitionVersion); if (taskDefinitionLogMap != null) { TaskDefinitionLog preTaskDefinitionLog = taskDefinitionLogMap.get(processTaskRelationLog.getPreTaskCode()); if (preTaskDefinitionLog != null) { processTaskRelationLog.setPreTaskVersion(preTaskDefinitionLog.getVersion()); } TaskDefinitionLog postTaskDefinitionLog = taskDefinitionLogMap.get(processTaskRelationLog.getPostTaskCode()); if (postTaskDefinitionLog != null) { processTaskRelationLog.setPostTaskVersion(postTaskDefinitionLog.getVersion()); } } processTaskRelationLog.setCreateTime(now); processTaskRelationLog.setUpdateTime(now); processTaskRelationLog.setOperator(operator.getId()); processTaskRelationLog.setOperateTime(now); } int insert = taskRelationList.size(); if (Boolean.TRUE.equals(syncDefine)) { List<ProcessTaskRelation> processTaskRelationList = processTaskRelationMapper.queryByProcessCode(projectCode, processDefinitionCode); if (!processTaskRelationList.isEmpty()) { Set<Integer> processTaskRelationSet = processTaskRelationList.stream().map(ProcessTaskRelation::hashCode).collect(toSet()); Set<Integer> taskRelationSet = taskRelationList.stream().map(ProcessTaskRelationLog::hashCode).collect(toSet());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
boolean result = CollectionUtils.isEqualCollection(processTaskRelationSet, taskRelationSet); if (result) { return Constants.EXIT_CODE_SUCCESS; } processTaskRelationMapper.deleteByCode(projectCode, processDefinitionCode); } insert = processTaskRelationMapper.batchInsert(taskRelationList); } int resultLog = processTaskRelationLogMapper.batchInsert(taskRelationList); return (insert & resultLog) > 0 ? Constants.EXIT_CODE_SUCCESS : Constants.EXIT_CODE_FAILURE; } @Override public boolean isTaskOnline(long taskCode) { List<ProcessTaskRelation> processTaskRelationList = processTaskRelationMapper.queryByTaskCode(taskCode); if (!processTaskRelationList.isEmpty()) { Set<Long> processDefinitionCodes = processTaskRelationList .stream() .map(ProcessTaskRelation::getProcessDefinitionCode) .collect(toSet()); List<ProcessDefinition> processDefinitionList = processDefineMapper.queryByCodes(processDefinitionCodes); for (ProcessDefinition processDefinition : processDefinitionList) { if (processDefinition.getReleaseState() == ReleaseState.ONLINE) { return true; } } } return false; } /**
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
* Generate the DAG Graph based on the process definition id * Use temporarily before refactoring taskNode * * @param processDefinition process definition * @return dag graph */ @Override public DAG<String, TaskNode, TaskNodeRelation> genDagGraph(ProcessDefinition processDefinition) { List<ProcessTaskRelation> taskRelations = this.findRelationByCode(processDefinition.getCode(), processDefinition.getVersion()); List<TaskNode> taskNodeList = transformTask(taskRelations, Lists.newArrayList()); ProcessDag processDag = DagHelper.getProcessDag(taskNodeList, new ArrayList<>(taskRelations)); return DagHelper.buildDagGraph(processDag); } /** * generate DagData */ @Override public DagData genDagData(ProcessDefinition processDefinition) { List<ProcessTaskRelation> taskRelations = this.findRelationByCode(processDefinition.getCode(), processDefinition.getVersion()); List<TaskDefinitionLog> taskDefinitionLogList = genTaskDefineList(taskRelations); List<TaskDefinition> taskDefinitions = taskDefinitionLogList.stream().map(t -> (TaskDefinition) t).collect(Collectors.toList()); return new DagData(processDefinition, taskRelations, taskDefinitions); } @Override public List<TaskDefinitionLog> genTaskDefineList(List<ProcessTaskRelation> processTaskRelations) { Set<TaskDefinition> taskDefinitionSet = new HashSet<>(); for (ProcessTaskRelation processTaskRelation : processTaskRelations) { if (processTaskRelation.getPreTaskCode() > 0) { taskDefinitionSet.add(new TaskDefinition(processTaskRelation.getPreTaskCode(), processTaskRelation.getPreTaskVersion()));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
} if (processTaskRelation.getPostTaskCode() > 0) { taskDefinitionSet.add(new TaskDefinition(processTaskRelation.getPostTaskCode(), processTaskRelation.getPostTaskVersion())); } } if (taskDefinitionSet.isEmpty()) { return Lists.newArrayList(); } return taskDefinitionLogMapper.queryByTaskDefinitions(taskDefinitionSet); } @Override public List<TaskDefinitionLog> getTaskDefineLogListByRelation(List<ProcessTaskRelation> processTaskRelations) { List<TaskDefinitionLog> taskDefinitionLogs = new ArrayList<>(); Map<Long, Integer> taskCodeVersionMap = new HashMap<>(); for (ProcessTaskRelation processTaskRelation : processTaskRelations) { if (processTaskRelation.getPreTaskCode() > 0) { taskCodeVersionMap.put(processTaskRelation.getPreTaskCode(), processTaskRelation.getPreTaskVersion()); } if (processTaskRelation.getPostTaskCode() > 0) { taskCodeVersionMap.put(processTaskRelation.getPostTaskCode(), processTaskRelation.getPostTaskVersion()); } } taskCodeVersionMap.forEach((code, version) -> { taskDefinitionLogs.add((TaskDefinitionLog) this.findTaskDefinition(code, version)); }); return taskDefinitionLogs; } /** * find task definition by code and version */
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
@Override public TaskDefinition findTaskDefinition(long taskCode, int taskDefinitionVersion) { return taskDefinitionLogMapper.queryByDefinitionCodeAndVersion(taskCode, taskDefinitionVersion); } /** * find process task relation list by process */ @Override public List<ProcessTaskRelation> findRelationByCode(long processDefinitionCode, int processDefinitionVersion) { List<ProcessTaskRelationLog> processTaskRelationLogList = processTaskRelationLogMapper.queryByProcessCodeAndVersion(processDefinitionCode, processDefinitionVersion); return processTaskRelationLogList.stream().map(r -> (ProcessTaskRelation) r).collect(Collectors.toList()); } /** * add authorized resources * * @param ownResources own resources * @param userId userId */ private void addAuthorizedResources(List<Resource> ownResources, int userId) { List<Integer> relationResourceIds = resourceUserMapper.queryResourcesIdListByUserIdAndPerm(userId, 7); List<Resource> relationResources = CollectionUtils.isNotEmpty(relationResourceIds) ? resourceMapper.queryResourceListById(relationResourceIds) : new ArrayList<>(); ownResources.addAll(relationResources); } /** * Use temporarily before refactoring taskNode */ @Override public List<TaskNode> transformTask(List<ProcessTaskRelation> taskRelationList, List<TaskDefinitionLog> taskDefinitionLogs) { Map<Long, List<Long>> taskCodeMap = new HashMap<>(); for (ProcessTaskRelation processTaskRelation : taskRelationList) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
taskCodeMap.compute(processTaskRelation.getPostTaskCode(), (k, v) -> { if (v == null) { v = new ArrayList<>(); } if (processTaskRelation.getPreTaskCode() != 0L) { v.add(processTaskRelation.getPreTaskCode()); } return v; }); } if (CollectionUtils.isEmpty(taskDefinitionLogs)) { taskDefinitionLogs = genTaskDefineList(taskRelationList); } Map<Long, TaskDefinitionLog> taskDefinitionLogMap = taskDefinitionLogs.stream() .collect(Collectors.toMap(TaskDefinitionLog::getCode, taskDefinitionLog -> taskDefinitionLog)); List<TaskNode> taskNodeList = new ArrayList<>(); for (Entry<Long, List<Long>> code : taskCodeMap.entrySet()) { TaskDefinitionLog taskDefinitionLog = taskDefinitionLogMap.get(code.getKey()); if (taskDefinitionLog != null) { TaskNode taskNode = new TaskNode(); taskNode.setCode(taskDefinitionLog.getCode()); taskNode.setVersion(taskDefinitionLog.getVersion()); taskNode.setName(taskDefinitionLog.getName()); taskNode.setDesc(taskDefinitionLog.getDescription()); taskNode.setType(taskDefinitionLog.getTaskType().toUpperCase()); taskNode.setRunFlag(taskDefinitionLog.getFlag() == Flag.YES ? Constants.FLOWNODE_RUN_FLAG_NORMAL : Constants.FLOWNODE_RUN_FLAG_FORBIDDEN); taskNode.setMaxRetryTimes(taskDefinitionLog.getFailRetryTimes()); taskNode.setRetryInterval(taskDefinitionLog.getFailRetryInterval()); Map<String, Object> taskParamsMap = taskNode.taskParamsToJsonObj(taskDefinitionLog.getTaskParams()); taskNode.setConditionResult(JSONUtils.toJsonString(taskParamsMap.get(Constants.CONDITION_RESULT)));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
taskNode.setSwitchResult(JSONUtils.toJsonString(taskParamsMap.get(Constants.SWITCH_RESULT))); taskNode.setDependence(JSONUtils.toJsonString(taskParamsMap.get(Constants.DEPENDENCE))); taskParamsMap.remove(Constants.CONDITION_RESULT); taskParamsMap.remove(Constants.DEPENDENCE); taskNode.setParams(JSONUtils.toJsonString(taskParamsMap)); taskNode.setTaskInstancePriority(taskDefinitionLog.getTaskPriority()); taskNode.setWorkerGroup(taskDefinitionLog.getWorkerGroup()); taskNode.setEnvironmentCode(taskDefinitionLog.getEnvironmentCode()); taskNode.setTimeout(JSONUtils.toJsonString(new TaskTimeoutParameter(taskDefinitionLog.getTimeoutFlag() == TimeoutFlag.OPEN, taskDefinitionLog.getTimeoutNotifyStrategy(), taskDefinitionLog.getTimeout()))); taskNode.setDelayTime(taskDefinitionLog.getDelayTime()); taskNode.setPreTasks(JSONUtils.toJsonString(code.getValue().stream().map(taskDefinitionLogMap::get).map(TaskDefinition::getCode).collect(Collectors.toList()))); taskNode.setTaskGroupId(taskDefinitionLog.getTaskGroupId()); taskNode.setTaskGroupPriority(taskDefinitionLog.getTaskGroupPriority()); taskNodeList.add(taskNode); } } return taskNodeList; } @Override public Map<ProcessInstance, TaskInstance> notifyProcessList(int processId) { HashMap<ProcessInstance, TaskInstance> processTaskMap = new HashMap<>(); ProcessInstanceMap processInstanceMap = processInstanceMapMapper.queryBySubProcessId(processId); if (processInstanceMap == null) { return processTaskMap; } ProcessInstance fatherProcess = this.findProcessInstanceById(processInstanceMap.getParentProcessInstanceId()); TaskInstance fatherTask = this.findTaskInstanceById(processInstanceMap.getParentTaskInstanceId());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
if (fatherProcess != null) { processTaskMap.put(fatherProcess, fatherTask); } return processTaskMap; } @Override public DqExecuteResult getDqExecuteResultByTaskInstanceId(int taskInstanceId) { return dqExecuteResultMapper.getExecuteResultById(taskInstanceId); } @Override public int updateDqExecuteResultUserId(int taskInstanceId) { DqExecuteResult dqExecuteResult = dqExecuteResultMapper.selectOne(new QueryWrapper<DqExecuteResult>().eq(TASK_INSTANCE_ID, taskInstanceId)); if (dqExecuteResult == null) { return -1; } ProcessInstance processInstance = processInstanceMapper.selectById(dqExecuteResult.getProcessInstanceId()); if (processInstance == null) { return -1; } ProcessDefinition processDefinition = processDefineMapper.queryByCode(processInstance.getProcessDefinitionCode()); if (processDefinition == null) { return -1; } dqExecuteResult.setProcessDefinitionId(processDefinition.getId()); dqExecuteResult.setUserId(processDefinition.getUserId()); dqExecuteResult.setState(DqTaskState.DEFAULT.getCode()); return dqExecuteResultMapper.updateById(dqExecuteResult); } @Override
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
public int updateDqExecuteResultState(DqExecuteResult dqExecuteResult) { return dqExecuteResultMapper.updateById(dqExecuteResult); } @Override public int deleteDqExecuteResultByTaskInstanceId(int taskInstanceId) { return dqExecuteResultMapper.delete( new QueryWrapper<DqExecuteResult>() .eq(TASK_INSTANCE_ID, taskInstanceId)); } @Override public int deleteTaskStatisticsValueByTaskInstanceId(int taskInstanceId) { return dqTaskStatisticsValueMapper.delete( new QueryWrapper<DqTaskStatisticsValue>() .eq(TASK_INSTANCE_ID, taskInstanceId)); } @Override public DqRule getDqRule(int ruleId) { return dqRuleMapper.selectById(ruleId); } @Override public List<DqRuleInputEntry> getRuleInputEntry(int ruleId) { return DqRuleUtils.transformInputEntry(dqRuleInputEntryMapper.getRuleInputEntryList(ruleId)); } @Override public List<DqRuleExecuteSql> getDqExecuteSql(int ruleId) { return dqRuleExecuteSqlMapper.getExecuteSqlList(ruleId); } @Override public DqComparisonType getComparisonTypeById(int id) { return dqComparisonTypeMapper.selectById(id);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
} /** * the first time (when submit the task ) get the resource of the task group * * @param taskId task id */ @Override public boolean acquireTaskGroup(int taskId, String taskName, int groupId, int processId, int priority) { TaskGroup taskGroup = taskGroupMapper.selectById(groupId); if (taskGroup == null) { return true; } if (taskGroup.getStatus() == Flag.NO.getCode()) { return true; } TaskGroupQueue taskGroupQueue = this.taskGroupQueueMapper.queryByTaskId(taskId); if (taskGroupQueue == null) { taskGroupQueue = insertIntoTaskGroupQueue(taskId, taskName, groupId, processId, priority, TaskGroupQueueStatus.WAIT_QUEUE); } else { if (taskGroupQueue.getStatus() == TaskGroupQueueStatus.ACQUIRE_SUCCESS) { return true; } taskGroupQueue.setInQueue(Flag.NO.getCode()); taskGroupQueue.setStatus(TaskGroupQueueStatus.WAIT_QUEUE); this.taskGroupQueueMapper.updateById(taskGroupQueue); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
List<TaskGroupQueue> highPriorityTasks = taskGroupQueueMapper.queryHighPriorityTasks(groupId, priority, TaskGroupQueueStatus.WAIT_QUEUE.getCode()); if (CollectionUtils.isNotEmpty(highPriorityTasks)) { this.taskGroupQueueMapper.updateInQueue(Flag.NO.getCode(), taskGroupQueue.getId()); return false; } int count = taskGroupMapper.selectAvailableCountById(groupId); if (count == 1 && robTaskGroupResouce(taskGroupQueue)) { return true; } this.taskGroupQueueMapper.updateInQueue(Flag.NO.getCode(), taskGroupQueue.getId()); return false; } /** * try to get the task group resource(when other task release the resource) */ @Override public boolean robTaskGroupResouce(TaskGroupQueue taskGroupQueue) { TaskGroup taskGroup = taskGroupMapper.selectById(taskGroupQueue.getGroupId()); int affectedCount = taskGroupMapper.updateTaskGroupResource(taskGroup.getId(), taskGroupQueue.getId(), TaskGroupQueueStatus.WAIT_QUEUE.getCode()); if (affectedCount > 0) { taskGroupQueue.setStatus(TaskGroupQueueStatus.ACQUIRE_SUCCESS); this.taskGroupQueueMapper.updateById(taskGroupQueue); this.taskGroupQueueMapper.updateInQueue(Flag.NO.getCode(), taskGroupQueue.getId()); return true; } return false; } @Override
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
public boolean acquireTaskGroupAgain(TaskGroupQueue taskGroupQueue) { return robTaskGroupResouce(taskGroupQueue); } @Override public void releaseAllTaskGroup(int processInstanceId) { List<TaskInstance> taskInstances = this.taskInstanceMapper.loadAllInfosNoRelease(processInstanceId, TaskGroupQueueStatus.ACQUIRE_SUCCESS.getCode()); for (TaskInstance info : taskInstances) { releaseTaskGroup(info); } } /** * release the TGQ resource when the corresponding task is finished. * * @return the result code and msg */ @Override public TaskInstance releaseTaskGroup(TaskInstance taskInstance) { TaskGroup taskGroup = taskGroupMapper.selectById(taskInstance.getTaskGroupId()); if (taskGroup == null) { return null; } TaskGroupQueue thisTaskGroupQueue = this.taskGroupQueueMapper.queryByTaskId(taskInstance.getId()); if (thisTaskGroupQueue.getStatus() == TaskGroupQueueStatus.RELEASE) { return null; } try { while (taskGroupMapper.releaseTaskGroupResource(taskGroup.getId(), taskGroup.getUseSize() , thisTaskGroupQueue.getId(), TaskGroupQueueStatus.ACQUIRE_SUCCESS.getCode()) != 1) { thisTaskGroupQueue = this.taskGroupQueueMapper.queryByTaskId(taskInstance.getId()); if (thisTaskGroupQueue.getStatus() == TaskGroupQueueStatus.RELEASE) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
return null; } taskGroup = taskGroupMapper.selectById(taskInstance.getTaskGroupId()); } } catch (Exception e) { logger.error("release the task group error", e); } logger.info("updateTask:{}", taskInstance.getName()); changeTaskGroupQueueStatus(taskInstance.getId(), TaskGroupQueueStatus.RELEASE); TaskGroupQueue taskGroupQueue = this.taskGroupQueueMapper.queryTheHighestPriorityTasks(taskGroup.getId(), TaskGroupQueueStatus.WAIT_QUEUE.getCode(), Flag.NO.getCode(), Flag.NO.getCode()); if (taskGroupQueue == null) { return null; } while (this.taskGroupQueueMapper.updateInQueueCAS(Flag.NO.getCode(), Flag.YES.getCode(), taskGroupQueue.getId()) != 1) { taskGroupQueue = this.taskGroupQueueMapper.queryTheHighestPriorityTasks(taskGroup.getId(), TaskGroupQueueStatus.WAIT_QUEUE.getCode(), Flag.NO.getCode(), Flag.NO.getCode()); if (taskGroupQueue == null) { return null; } } return this.taskInstanceMapper.selectById(taskGroupQueue.getTaskId()); } /** * release the TGQ resource when the corresponding task is finished. * * @param taskId task id * @return the result code and msg */ @Override
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
public void changeTaskGroupQueueStatus(int taskId, TaskGroupQueueStatus status) { TaskGroupQueue taskGroupQueue = taskGroupQueueMapper.queryByTaskId(taskId); taskGroupQueue.setStatus(status); taskGroupQueue.setUpdateTime(new Date(System.currentTimeMillis())); taskGroupQueueMapper.updateById(taskGroupQueue); } /** * insert into task group queue * * @param taskId task id * @param taskName task name * @param groupId group id * @param processId process id * @param priority priority * @return result and msg code */ @Override public TaskGroupQueue insertIntoTaskGroupQueue(Integer taskId, String taskName, Integer groupId, Integer processId, Integer priority, TaskGroupQueueStatus status) { TaskGroupQueue taskGroupQueue = new TaskGroupQueue(taskId, taskName, groupId, processId, priority, status); taskGroupQueue.setCreateTime(new Date()); taskGroupQueue.setUpdateTime(new Date()); taskGroupQueueMapper.insert(taskGroupQueue); return taskGroupQueue; } @Override public int updateTaskGroupQueueStatus(Integer taskId, int status) { return taskGroupQueueMapper.updateStatusByTaskId(taskId, status); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java
@Override public int updateTaskGroupQueue(TaskGroupQueue taskGroupQueue) { return taskGroupQueueMapper.updateById(taskGroupQueue); } @Override public TaskGroupQueue loadTaskGroupQueue(int taskId) { return this.taskGroupQueueMapper.queryByTaskId(taskId); } @Override public void sendStartTask2Master(ProcessInstance processInstance, int taskId, org.apache.dolphinscheduler.remote.command.CommandType taskType) { String host = processInstance.getHost(); String address = host.split(":")[0]; int port = Integer.parseInt(host.split(":")[1]); TaskEventChangeCommand taskEventChangeCommand = new TaskEventChangeCommand( processInstance.getId(), taskId ); stateEventCallbackService.sendResult(address, port, taskEventChangeCommand.convert2Command(taskType)); } @Override public ProcessInstance loadNextProcess4Serial(long code, int state, int id) { return this.processInstanceMapper.loadNextProcess4Serial(code, state, id); } protected void deleteCommandWithCheck(int commandId) { int delete = this.commandMapper.deleteById(commandId); if (delete != 1) { throw new ServiceException("delete command fail, id:" + commandId); } } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.dolphinscheduler.service.process; import com.fasterxml.jackson.databind.JsonNode; import org.apache.dolphinscheduler.common.Constants; import org.apache.dolphinscheduler.common.enums.CommandType; import org.apache.dolphinscheduler.common.enums.Flag; import org.apache.dolphinscheduler.common.enums.ProcessExecutionTypeEnum; import org.apache.dolphinscheduler.common.enums.TaskGroupQueueStatus; import org.apache.dolphinscheduler.common.enums.UserType; import org.apache.dolphinscheduler.common.enums.WarningType; import org.apache.dolphinscheduler.common.graph.DAG; import org.apache.dolphinscheduler.common.model.TaskNode; import org.apache.dolphinscheduler.common.model.TaskNodeRelation; import org.apache.dolphinscheduler.common.utils.DateUtils; import org.apache.dolphinscheduler.common.utils.JSONUtils; import org.apache.dolphinscheduler.dao.entity.Command; import org.apache.dolphinscheduler.dao.entity.DqExecuteResult; import org.apache.dolphinscheduler.dao.entity.DqRule; import org.apache.dolphinscheduler.dao.entity.DqRuleExecuteSql; import org.apache.dolphinscheduler.dao.entity.DqRuleInputEntry; import org.apache.dolphinscheduler.dao.entity.ProcessDefinition; import org.apache.dolphinscheduler.dao.entity.ProcessDefinitionLog; import org.apache.dolphinscheduler.dao.entity.ProcessInstance; import org.apache.dolphinscheduler.dao.entity.ProcessInstanceMap; import org.apache.dolphinscheduler.dao.entity.ProcessTaskRelationLog;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
import org.apache.dolphinscheduler.dao.entity.Resource; import org.apache.dolphinscheduler.dao.entity.TaskDefinitionLog; import org.apache.dolphinscheduler.dao.entity.TaskGroupQueue; import org.apache.dolphinscheduler.dao.entity.TaskInstance; import org.apache.dolphinscheduler.dao.entity.User; import org.apache.dolphinscheduler.dao.mapper.CommandMapper; import org.apache.dolphinscheduler.dao.mapper.DqComparisonTypeMapper; import org.apache.dolphinscheduler.dao.mapper.DqExecuteResultMapper; import org.apache.dolphinscheduler.dao.mapper.DqRuleExecuteSqlMapper; import org.apache.dolphinscheduler.dao.mapper.DqRuleInputEntryMapper; import org.apache.dolphinscheduler.dao.mapper.DqRuleMapper; import org.apache.dolphinscheduler.dao.mapper.ErrorCommandMapper; import org.apache.dolphinscheduler.dao.mapper.ProcessDefinitionLogMapper; import org.apache.dolphinscheduler.dao.mapper.ProcessDefinitionMapper; import org.apache.dolphinscheduler.dao.mapper.ProcessInstanceMapper; import org.apache.dolphinscheduler.dao.mapper.ProcessTaskRelationLogMapper; import org.apache.dolphinscheduler.dao.mapper.ProcessTaskRelationMapper; import org.apache.dolphinscheduler.dao.mapper.ResourceMapper; import org.apache.dolphinscheduler.dao.mapper.ScheduleMapper; import org.apache.dolphinscheduler.dao.mapper.TaskDefinitionLogMapper; import org.apache.dolphinscheduler.dao.mapper.TaskDefinitionMapper; import org.apache.dolphinscheduler.dao.mapper.TaskGroupMapper; import org.apache.dolphinscheduler.dao.mapper.TaskGroupQueueMapper; import org.apache.dolphinscheduler.dao.mapper.TaskInstanceMapper; import org.apache.dolphinscheduler.dao.mapper.UserMapper; import org.apache.dolphinscheduler.plugin.task.api.enums.dp.DqTaskState; import org.apache.dolphinscheduler.plugin.task.api.enums.dp.ExecuteSqlType; import org.apache.dolphinscheduler.plugin.task.api.enums.dp.InputType; import org.apache.dolphinscheduler.plugin.task.api.enums.dp.OptionSourceType; import org.apache.dolphinscheduler.plugin.task.api.enums.dp.ValueType;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
import org.apache.dolphinscheduler.plugin.task.api.model.ResourceInfo; import org.apache.dolphinscheduler.service.exceptions.ServiceException; import org.apache.dolphinscheduler.service.quartz.cron.CronUtilsTest; import org.apache.dolphinscheduler.spi.params.base.FormType; import org.junit.Assert; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.Mockito; import org.mockito.junit.MockitoJUnitRunner; import org.powermock.reflect.Whitebox; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.ArrayList; import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import static org.apache.dolphinscheduler.common.Constants.CMD_PARAM_RECOVER_PROCESS_ID_STRING; import static org.apache.dolphinscheduler.common.Constants.CMD_PARAM_START_PARAMS; import static org.apache.dolphinscheduler.common.Constants.CMD_PARAM_SUB_PROCESS_DEFINE_CODE; import static org.mockito.ArgumentMatchers.any; /** * process service test */ @RunWith(MockitoJUnitRunner.Silent.class)
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
public class ProcessServiceTest { private static final Logger logger = LoggerFactory.getLogger(CronUtilsTest.class); @Rule public final ExpectedException exception = ExpectedException.none(); @InjectMocks private ProcessServiceImpl processService; @Mock private CommandMapper commandMapper; @Mock private ProcessTaskRelationLogMapper processTaskRelationLogMapper; @Mock private ErrorCommandMapper errorCommandMapper; @Mock private ProcessDefinitionMapper processDefineMapper; @Mock private ProcessInstanceMapper processInstanceMapper; @Mock private UserMapper userMapper; @Mock private TaskInstanceMapper taskInstanceMapper; @Mock private TaskDefinitionLogMapper taskDefinitionLogMapper; @Mock private TaskDefinitionMapper taskDefinitionMapper; @Mock private ProcessTaskRelationMapper processTaskRelationMapper; @Mock private ProcessDefinitionLogMapper processDefineLogMapper; @Mock private ResourceMapper resourceMapper;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
@Mock private TaskGroupMapper taskGroupMapper; @Mock private TaskGroupQueueMapper taskGroupQueueMapper; @Mock private DqExecuteResultMapper dqExecuteResultMapper; @Mock private DqRuleMapper dqRuleMapper; @Mock private DqRuleInputEntryMapper dqRuleInputEntryMapper; @Mock private DqRuleExecuteSqlMapper dqRuleExecuteSqlMapper; @Mock private DqComparisonTypeMapper dqComparisonTypeMapper; @Mock private ScheduleMapper scheduleMapper; @Test public void testCreateSubCommand() { ProcessInstance parentInstance = new ProcessInstance(); parentInstance.setWarningType(WarningType.SUCCESS); parentInstance.setWarningGroupId(0); TaskInstance task = new TaskInstance(); task.setTaskParams("{\"processDefinitionCode\":10}}"); task.setId(10); task.setTaskCode(1L); task.setTaskDefinitionVersion(1); ProcessInstance childInstance = null; ProcessInstanceMap instanceMap = new ProcessInstanceMap(); instanceMap.setParentProcessInstanceId(1); instanceMap.setParentTaskInstanceId(10);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
Command command; parentInstance.setHistoryCmd("START_PROCESS"); parentInstance.setCommandType(CommandType.START_PROCESS); ProcessDefinition processDefinition = new ProcessDefinition(); processDefinition.setCode(10L); Mockito.when(processDefineMapper.queryByDefineId(100)).thenReturn(processDefinition); Mockito.when(processDefineMapper.queryByCode(10L)).thenReturn(processDefinition); command = processService.createSubProcessCommand(parentInstance, childInstance, instanceMap, task); Assert.assertEquals(CommandType.START_PROCESS, command.getCommandType()); parentInstance.setCommandType(CommandType.START_FAILURE_TASK_PROCESS); parentInstance.setHistoryCmd("START_PROCESS,START_FAILURE_TASK_PROCESS"); command = processService.createSubProcessCommand(parentInstance, childInstance, instanceMap, task); Assert.assertEquals(CommandType.START_PROCESS, command.getCommandType()); parentInstance.setCommandType(CommandType.START_FAILURE_TASK_PROCESS); parentInstance.setHistoryCmd("SCHEDULER,START_FAILURE_TASK_PROCESS"); command = processService.createSubProcessCommand(parentInstance, childInstance, instanceMap, task); Assert.assertEquals(CommandType.SCHEDULER, command.getCommandType()); String startString = "2020-01-01 00:00:00"; String endString = "2020-01-10 00:00:00"; parentInstance.setCommandType(CommandType.START_FAILURE_TASK_PROCESS); parentInstance.setHistoryCmd("COMPLEMENT_DATA,START_FAILURE_TASK_PROCESS"); Map<String, String> complementMap = new HashMap<>(); complementMap.put(Constants.CMDPARAM_COMPLEMENT_DATA_START_DATE, startString); complementMap.put(Constants.CMDPARAM_COMPLEMENT_DATA_END_DATE, endString); parentInstance.setCommandParam(JSONUtils.toJsonString(complementMap)); command = processService.createSubProcessCommand(parentInstance, childInstance, instanceMap, task);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
Assert.assertEquals(CommandType.COMPLEMENT_DATA, command.getCommandType()); JsonNode complementDate = JSONUtils.parseObject(command.getCommandParam()); Date start = DateUtils.stringToDate(complementDate.get(Constants.CMDPARAM_COMPLEMENT_DATA_START_DATE).asText()); Date end = DateUtils.stringToDate(complementDate.get(Constants.CMDPARAM_COMPLEMENT_DATA_END_DATE).asText()); Assert.assertEquals(startString, DateUtils.dateToString(start)); Assert.assertEquals(endString, DateUtils.dateToString(end)); childInstance = new ProcessInstance(); parentInstance.setCommandType(CommandType.START_FAILURE_TASK_PROCESS); parentInstance.setHistoryCmd("START_PROCESS,START_FAILURE_TASK_PROCESS"); command = processService.createSubProcessCommand(parentInstance, childInstance, instanceMap, task); Assert.assertEquals(CommandType.START_FAILURE_TASK_PROCESS, command.getCommandType()); } @Test public void testVerifyIsNeedCreateCommand() { List<Command> commands = new ArrayList<>(); Command command = new Command(); command.setCommandType(CommandType.REPEAT_RUNNING); command.setCommandParam("{\"" + CMD_PARAM_RECOVER_PROCESS_ID_STRING + "\":\"111\"}"); commands.add(command); Mockito.when(commandMapper.selectList(null)).thenReturn(commands); Assert.assertFalse(processService.verifyIsNeedCreateCommand(command)); Command command1 = new Command(); command1.setCommandType(CommandType.REPEAT_RUNNING); command1.setCommandParam("{\"" + CMD_PARAM_RECOVER_PROCESS_ID_STRING + "\":\"222\"}"); Assert.assertTrue(processService.verifyIsNeedCreateCommand(command1)); Command command2 = new Command(); command2.setCommandType(CommandType.PAUSE); Assert.assertTrue(processService.verifyIsNeedCreateCommand(command2)); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
@Test public void testCreateRecoveryWaitingThreadCommand() { int id = 123; Mockito.when(commandMapper.deleteById(id)).thenReturn(1); ProcessInstance subProcessInstance = new ProcessInstance(); subProcessInstance.setIsSubProcess(Flag.YES); Command originCommand = new Command(); originCommand.setId(id); processService.createRecoveryWaitingThreadCommand(originCommand, subProcessInstance); ProcessInstance processInstance = new ProcessInstance(); processInstance.setId(111); processService.createRecoveryWaitingThreadCommand(null, subProcessInstance); Command recoverCommand = new Command(); recoverCommand.setCommandType(CommandType.RECOVER_WAITING_THREAD); processService.createRecoveryWaitingThreadCommand(recoverCommand, subProcessInstance); Command repeatRunningCommand = new Command(); recoverCommand.setCommandType(CommandType.REPEAT_RUNNING); processService.createRecoveryWaitingThreadCommand(repeatRunningCommand, subProcessInstance); ProcessInstance subProcessInstance2 = new ProcessInstance(); subProcessInstance2.setId(111); subProcessInstance2.setIsSubProcess(Flag.NO); processService.createRecoveryWaitingThreadCommand(repeatRunningCommand, subProcessInstance2); } @Test public void testHandleCommand() { String host = "127.0.0.1"; Command command = new Command(); command.setProcessDefinitionCode(222); command.setCommandType(CommandType.REPEAT_RUNNING);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
command.setCommandParam("{\"" + CMD_PARAM_RECOVER_PROCESS_ID_STRING + "\":\"111\",\"" + CMD_PARAM_SUB_PROCESS_DEFINE_CODE + "\":\"222\"}"); Assert.assertNull(processService.handleCommand(logger, host, command)); int definitionVersion = 1; long definitionCode = 123; int processInstanceId = 222; Command command1 = new Command(); command1.setId(1); command1.setProcessDefinitionCode(definitionCode); command1.setProcessDefinitionVersion(definitionVersion); command1.setCommandParam("{\"ProcessInstanceId\":222}"); command1.setCommandType(CommandType.START_PROCESS); Mockito.when(commandMapper.deleteById(1)).thenReturn(1); ProcessDefinition processDefinition = new ProcessDefinition(); processDefinition.setId(123); processDefinition.setName("test"); processDefinition.setVersion(definitionVersion); processDefinition.setCode(definitionCode); processDefinition.setGlobalParams("[{\"prop\":\"startParam1\",\"direct\":\"IN\",\"type\":\"VARCHAR\",\"value\":\"\"}]"); processDefinition.setExecutionType(ProcessExecutionTypeEnum.PARALLEL); ProcessInstance processInstance = new ProcessInstance(); processInstance.setId(222); processInstance.setProcessDefinitionCode(11L); processInstance.setHost("127.0.0.1:5678"); processInstance.setProcessDefinitionVersion(1); processInstance.setId(processInstanceId); processInstance.setProcessDefinitionCode(definitionCode); processInstance.setProcessDefinitionVersion(definitionVersion); Mockito.when(processDefineMapper.queryByCode(command1.getProcessDefinitionCode())).thenReturn(processDefinition);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
Mockito.when(processDefineLogMapper.queryByDefinitionCodeAndVersion(processInstance.getProcessDefinitionCode(), processInstance.getProcessDefinitionVersion())).thenReturn(new ProcessDefinitionLog(processDefinition)); Mockito.when(processInstanceMapper.queryDetailById(222)).thenReturn(processInstance); Assert.assertNotNull(processService.handleCommand(logger, host, command1)); Command command2 = new Command(); command2.setId(2); command2.setCommandParam("{\"ProcessInstanceId\":222,\"StartNodeIdList\":\"n1,n2\"}"); command2.setProcessDefinitionCode(definitionCode); command2.setProcessDefinitionVersion(definitionVersion); command2.setCommandType(CommandType.RECOVER_SUSPENDED_PROCESS); command2.setProcessInstanceId(processInstanceId); Mockito.when(commandMapper.deleteById(2)).thenReturn(1); Assert.assertNotNull(processService.handleCommand(logger, host, command2)); Command command3 = new Command(); command3.setId(3); command3.setProcessDefinitionCode(definitionCode); command3.setProcessDefinitionVersion(definitionVersion); command3.setProcessInstanceId(processInstanceId); command3.setCommandParam("{\"WaitingThreadInstanceId\":222}"); command3.setCommandType(CommandType.START_FAILURE_TASK_PROCESS); Mockito.when(commandMapper.deleteById(3)).thenReturn(1); Assert.assertNotNull(processService.handleCommand(logger, host, command3)); Command command4 = new Command(); command4.setId(4); command4.setProcessDefinitionCode(definitionCode); command4.setProcessDefinitionVersion(definitionVersion); command4.setCommandParam("{\"WaitingThreadInstanceId\":222,\"StartNodeIdList\":\"n1,n2\"}"); command4.setCommandType(CommandType.REPEAT_RUNNING); command4.setProcessInstanceId(processInstanceId); Mockito.when(commandMapper.deleteById(4)).thenReturn(1);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
Assert.assertNotNull(processService.handleCommand(logger, host, command4)); Command command5 = new Command(); command5.setId(5); command5.setProcessDefinitionCode(definitionCode); command5.setProcessDefinitionVersion(definitionVersion); HashMap<String, String> startParams = new HashMap<>(); startParams.put("startParam1", "testStartParam1"); HashMap<String, String> commandParams = new HashMap<>(); commandParams.put(CMD_PARAM_START_PARAMS, JSONUtils.toJsonString(startParams)); command5.setCommandParam(JSONUtils.toJsonString(commandParams)); command5.setCommandType(CommandType.START_PROCESS); command5.setDryRun(Constants.DRY_RUN_FLAG_NO); Mockito.when(commandMapper.deleteById(5)).thenReturn(1); ProcessInstance processInstance1 = processService.handleCommand(logger, host, command5); Assert.assertTrue(processInstance1.getGlobalParams().contains("\"testStartParam1\"")); ProcessDefinition processDefinition1 = new ProcessDefinition(); processDefinition1.setId(123); processDefinition1.setName("test"); processDefinition1.setVersion(1); processDefinition1.setCode(11L); processDefinition1.setVersion(1); processDefinition1.setExecutionType(ProcessExecutionTypeEnum.SERIAL_WAIT); List<ProcessInstance> lists = new ArrayList<>(); ProcessInstance processInstance11 = new ProcessInstance(); processInstance11.setId(222); processInstance11.setProcessDefinitionCode(11L); processInstance11.setProcessDefinitionVersion(1); processInstance11.setHost("127.0.0.1:5678"); lists.add(processInstance11); ProcessInstance processInstance2 = new ProcessInstance();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
processInstance2.setId(223); processInstance2.setProcessDefinitionCode(11L); processInstance2.setProcessDefinitionVersion(1); Mockito.when(processInstanceMapper.queryDetailById(223)).thenReturn(processInstance2); Mockito.when(processDefineMapper.queryByCode(11L)).thenReturn(processDefinition1); Mockito.when(commandMapper.deleteById(1)).thenReturn(1); Assert.assertNotNull(processService.handleCommand(logger, host, command1)); Command command6 = new Command(); command6.setId(6); command6.setProcessDefinitionCode(11L); command6.setCommandParam("{\"ProcessInstanceId\":223}"); command6.setCommandType(CommandType.RECOVER_SERIAL_WAIT); command6.setProcessDefinitionVersion(1); Mockito.when(processInstanceMapper.queryByProcessDefineCodeAndStatusAndNextId(11L, Constants.RUNNING_PROCESS_STATE, 223)).thenReturn(lists); Mockito.when(processInstanceMapper.updateNextProcessIdById(223, 222)).thenReturn(true); Mockito.when(commandMapper.deleteById(6)).thenReturn(1); ProcessInstance processInstance6 = processService.handleCommand(logger, host, command6); Assert.assertTrue(processInstance6 != null); processDefinition1.setExecutionType(ProcessExecutionTypeEnum.SERIAL_DISCARD); Mockito.when(processDefineMapper.queryByCode(11L)).thenReturn(processDefinition1); ProcessInstance processInstance7 = new ProcessInstance(); processInstance7.setId(224); processInstance7.setProcessDefinitionCode(11L); processInstance7.setProcessDefinitionVersion(1); Mockito.when(processInstanceMapper.queryDetailById(224)).thenReturn(processInstance7); Command command7 = new Command(); command7.setId(7); command7.setProcessDefinitionCode(11L); command7.setCommandParam("{\"ProcessInstanceId\":224}"); command7.setCommandType(CommandType.RECOVER_SERIAL_WAIT);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
command7.setProcessDefinitionVersion(1); Mockito.when(commandMapper.deleteById(7)).thenReturn(1); Mockito.when(processInstanceMapper.queryByProcessDefineCodeAndStatusAndNextId(11L, Constants.RUNNING_PROCESS_STATE, 224)).thenReturn(null); ProcessInstance processInstance8 = processService.handleCommand(logger, host, command7); Assert.assertTrue(processInstance8 == null); ProcessDefinition processDefinition2 = new ProcessDefinition(); processDefinition2.setId(123); processDefinition2.setName("test"); processDefinition2.setVersion(1); processDefinition2.setCode(12L); processDefinition2.setExecutionType(ProcessExecutionTypeEnum.SERIAL_PRIORITY); Mockito.when(processDefineMapper.queryByCode(12L)).thenReturn(processDefinition2); ProcessInstance processInstance9 = new ProcessInstance(); processInstance9.setId(225); processInstance9.setProcessDefinitionCode(11L); processInstance9.setProcessDefinitionVersion(1); Command command9 = new Command(); command9.setId(9); command9.setProcessDefinitionCode(12L); command9.setCommandParam("{\"ProcessInstanceId\":225}"); command9.setCommandType(CommandType.RECOVER_SERIAL_WAIT); command9.setProcessDefinitionVersion(1); Mockito.when(processInstanceMapper.queryDetailById(225)).thenReturn(processInstance9); Mockito.when(processInstanceMapper.queryByProcessDefineCodeAndStatusAndNextId(12L, Constants.RUNNING_PROCESS_STATE, 0)).thenReturn(lists); Mockito.when(processInstanceMapper.updateById(processInstance)).thenReturn(1); Mockito.when(commandMapper.deleteById(9)).thenReturn(1); ProcessInstance processInstance10 = processService.handleCommand(logger, host, command9); Assert.assertTrue(processInstance10 == null); } @Test(expected = ServiceException.class)
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
public void testDeleteNotExistCommand() { String host = "127.0.0.1"; int definitionVersion = 1; long definitionCode = 123; int processInstanceId = 222; Command command1 = new Command(); command1.setId(1); command1.setProcessDefinitionCode(definitionCode); command1.setProcessDefinitionVersion(definitionVersion); command1.setCommandParam("{\"ProcessInstanceId\":222}"); command1.setCommandType(CommandType.START_PROCESS); ProcessDefinition processDefinition = new ProcessDefinition(); processDefinition.setId(123); processDefinition.setName("test"); processDefinition.setVersion(definitionVersion); processDefinition.setCode(definitionCode); processDefinition.setGlobalParams("[{\"prop\":\"startParam1\",\"direct\":\"IN\",\"type\":\"VARCHAR\",\"value\":\"\"}]"); processDefinition.setExecutionType(ProcessExecutionTypeEnum.PARALLEL); ProcessInstance processInstance = new ProcessInstance(); processInstance.setId(222); processInstance.setProcessDefinitionCode(11L); processInstance.setHost("127.0.0.1:5678"); processInstance.setProcessDefinitionVersion(1); processInstance.setId(processInstanceId); processInstance.setProcessDefinitionCode(definitionCode); processInstance.setProcessDefinitionVersion(definitionVersion); Mockito.when(processDefineMapper.queryByCode(command1.getProcessDefinitionCode())).thenReturn(processDefinition); Mockito.when(processDefineLogMapper.queryByDefinitionCodeAndVersion(processInstance.getProcessDefinitionCode(), processInstance.getProcessDefinitionVersion())).thenReturn(new ProcessDefinitionLog(processDefinition)); Mockito.when(processInstanceMapper.queryDetailById(222)).thenReturn(processInstance);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
processService.handleCommand(logger, host, command1); } @Test public void testGetUserById() { User user = new User(); user.setId(123); Mockito.when(userMapper.selectById(123)).thenReturn(user); Assert.assertEquals(user, processService.getUserById(123)); } @Test public void testFormatTaskAppId() { TaskInstance taskInstance = new TaskInstance(); taskInstance.setId(333); taskInstance.setProcessInstanceId(222); Mockito.when(processService.findProcessInstanceById(taskInstance.getProcessInstanceId())).thenReturn(null); Assert.assertEquals("", processService.formatTaskAppId(taskInstance)); ProcessDefinition processDefinition = new ProcessDefinition(); processDefinition.setId(111); ProcessInstance processInstance = new ProcessInstance(); processInstance.setId(222); processInstance.setProcessDefinitionVersion(1); processInstance.setProcessDefinitionCode(1L); Mockito.when(processService.findProcessInstanceById(taskInstance.getProcessInstanceId())).thenReturn(processInstance); Assert.assertEquals("", processService.formatTaskAppId(taskInstance)); } @Test public void testRecurseFindSubProcessId() { int parentProcessDefineId = 1; long parentProcessDefineCode = 1L;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
int parentProcessDefineVersion = 1; ProcessDefinition processDefinition = new ProcessDefinition(); processDefinition.setCode(parentProcessDefineCode); processDefinition.setVersion(parentProcessDefineVersion); Mockito.when(processDefineMapper.selectById(parentProcessDefineId)).thenReturn(processDefinition); long postTaskCode = 2L; int postTaskVersion = 2; List<ProcessTaskRelationLog> relationLogList = new ArrayList<>(); ProcessTaskRelationLog processTaskRelationLog = new ProcessTaskRelationLog(); processTaskRelationLog.setPostTaskCode(postTaskCode); processTaskRelationLog.setPostTaskVersion(postTaskVersion); relationLogList.add(processTaskRelationLog); Mockito.when(processTaskRelationLogMapper.queryByProcessCodeAndVersion(parentProcessDefineCode , parentProcessDefineVersion)).thenReturn(relationLogList); List<TaskDefinitionLog> taskDefinitionLogs = new ArrayList<>(); TaskDefinitionLog taskDefinitionLog1 = new TaskDefinitionLog(); taskDefinitionLog1.setTaskParams("{\"processDefinitionCode\": 123L}"); taskDefinitionLogs.add(taskDefinitionLog1); Mockito.when(taskDefinitionLogMapper.queryByTaskDefinitions(Mockito.anySet())).thenReturn(taskDefinitionLogs); List<Long> ids = new ArrayList<>(); processService.recurseFindSubProcess(parentProcessDefineCode, ids); Assert.assertEquals(0, ids.size()); } @Test public void testSwitchVersion() { ProcessDefinition processDefinition = new ProcessDefinition(); processDefinition.setCode(1L); processDefinition.setProjectCode(1L); processDefinition.setId(123); processDefinition.setName("test");
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
processDefinition.setVersion(1); ProcessDefinitionLog processDefinitionLog = new ProcessDefinitionLog(); processDefinitionLog.setCode(1L); processDefinitionLog.setVersion(2); Assert.assertEquals(0, processService.switchVersion(processDefinition, processDefinitionLog)); } @Test public void getDqRule() { Mockito.when(dqRuleMapper.selectById(1)).thenReturn(new DqRule()); Assert.assertNotNull(processService.getDqRule(1)); } @Test public void getRuleInputEntry() { Mockito.when(dqRuleInputEntryMapper.getRuleInputEntryList(1)).thenReturn(getRuleInputEntryList()); Assert.assertNotNull(processService.getRuleInputEntry(1)); } @Test public void getDqExecuteSql() { Mockito.when(dqRuleExecuteSqlMapper.getExecuteSqlList(1)).thenReturn(getRuleExecuteSqlList()); Assert.assertNotNull(processService.getDqExecuteSql(1)); } private List<DqRuleInputEntry> getRuleInputEntryList() { List<DqRuleInputEntry> list = new ArrayList<>(); DqRuleInputEntry srcConnectorType = new DqRuleInputEntry(); srcConnectorType.setTitle("源数据类型"); srcConnectorType.setField("src_connector_type"); srcConnectorType.setType(FormType.SELECT.getFormType()); srcConnectorType.setCanEdit(true); srcConnectorType.setShow(true); srcConnectorType.setValue("JDBC");
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
srcConnectorType.setPlaceholder("Please select the source connector type"); srcConnectorType.setOptionSourceType(OptionSourceType.DEFAULT.getCode()); srcConnectorType.setOptions("[{\"label\":\"HIVE\",\"value\":\"HIVE\"},{\"label\":\"JDBC\",\"value\":\"JDBC\"}]"); srcConnectorType.setInputType(InputType.DEFAULT.getCode()); srcConnectorType.setValueType(ValueType.NUMBER.getCode()); srcConnectorType.setEmit(true); DqRuleInputEntry statisticsName = new DqRuleInputEntry(); statisticsName.setTitle("统计值名"); statisticsName.setField("statistics_name"); statisticsName.setType(FormType.INPUT.getFormType()); statisticsName.setCanEdit(true); statisticsName.setShow(true); statisticsName.setPlaceholder("Please enter statistics name, the alias in statistics execute sql"); statisticsName.setOptionSourceType(OptionSourceType.DEFAULT.getCode()); statisticsName.setInputType(InputType.DEFAULT.getCode()); statisticsName.setValueType(ValueType.STRING.getCode()); statisticsName.setEmit(false); DqRuleInputEntry statisticsExecuteSql = new DqRuleInputEntry(); statisticsExecuteSql.setTitle("统计值计算SQL"); statisticsExecuteSql.setField("statistics_execute_sql"); statisticsExecuteSql.setType(FormType.TEXTAREA.getFormType()); statisticsExecuteSql.setCanEdit(true); statisticsExecuteSql.setShow(true); statisticsExecuteSql.setPlaceholder("Please enter the statistics execute sql"); statisticsExecuteSql.setOptionSourceType(OptionSourceType.DEFAULT.getCode()); statisticsExecuteSql.setValueType(ValueType.LIKE_SQL.getCode()); statisticsExecuteSql.setEmit(false); list.add(srcConnectorType); list.add(statisticsName); list.add(statisticsExecuteSql);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
return list; } private List<DqRuleExecuteSql> getRuleExecuteSqlList() { List<DqRuleExecuteSql> list = new ArrayList<>(); DqRuleExecuteSql executeSqlDefinition = new DqRuleExecuteSql(); executeSqlDefinition.setIndex(0); executeSqlDefinition.setSql("SELECT COUNT(*) AS total FROM ${src_table} WHERE (${src_filter})"); executeSqlDefinition.setTableAlias("total_count"); executeSqlDefinition.setType(ExecuteSqlType.COMPARISON.getCode()); list.add(executeSqlDefinition); return list; } public DqExecuteResult getExecuteResult() { DqExecuteResult dqExecuteResult = new DqExecuteResult(); dqExecuteResult.setId(1); dqExecuteResult.setState(DqTaskState.FAILURE.getCode()); return dqExecuteResult; } public List<DqExecuteResult> getExecuteResultList() { List<DqExecuteResult> list = new ArrayList<>(); DqExecuteResult dqExecuteResult = new DqExecuteResult(); dqExecuteResult.setId(1); dqExecuteResult.setState(DqTaskState.FAILURE.getCode()); list.add(dqExecuteResult); return list; } public void testSaveTaskDefine() { User operator = new User(); operator.setId(-1); operator.setUserType(UserType.GENERAL_USER);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
long projectCode = 751485690568704L; String taskJson = "[{\"code\":751500437479424,\"name\":\"aa\",\"version\":1,\"description\":\"\",\"delayTime\":0," + "\"taskType\":\"SHELL\",\"taskParams\":{\"resourceList\":[],\"localParams\":[],\"rawScript\":\"sleep 1s\\necho 11\"," + "\"dependence\":{},\"conditionResult\":{\"successNode\":[\"\"],\"failedNode\":[\"\"]},\"waitStartTimeout\":{}}," + "\"flag\":\"YES\",\"taskPriority\":\"MEDIUM\",\"workerGroup\":\"yarn\",\"failRetryTimes\":0,\"failRetryInterval\":1," + "\"timeoutFlag\":\"OPEN\",\"timeoutNotifyStrategy\":\"FAILED\",\"timeout\":1,\"environmentCode\":751496815697920}," + "{\"code\":751516889636864,\"name\":\"bb\",\"description\":\"\",\"taskType\":\"SHELL\",\"taskParams\":{\"resourceList\":[]," + "\"localParams\":[],\"rawScript\":\"echo 22\",\"dependence\":{},\"conditionResult\":{\"successNode\":[\"\"],\"failedNode\":[\"\"]}," + "\"waitStartTimeout\":{}},\"flag\":\"YES\",\"taskPriority\":\"MEDIUM\",\"workerGroup\":\"default\",\"failRetryTimes\":\"0\"," + "\"failRetryInterval\":\"1\",\"timeoutFlag\":\"CLOSE\",\"timeoutNotifyStrategy\":\"\",\"timeout\":0,\"delayTime\":\"0\",\"environmentCode\":-1}]"; List<TaskDefinitionLog> taskDefinitionLogs = JSONUtils.toList(taskJson, TaskDefinitionLog.class); TaskDefinitionLog taskDefinition = new TaskDefinitionLog(); taskDefinition.setCode(751500437479424L); taskDefinition.setName("aa"); taskDefinition.setProjectCode(751485690568704L); taskDefinition.setTaskType("SHELL"); taskDefinition.setUserId(-1); taskDefinition.setVersion(1); taskDefinition.setCreateTime(new Date()); taskDefinition.setUpdateTime(new Date()); Mockito.when(taskDefinitionLogMapper.queryByDefinitionCodeAndVersion(taskDefinition.getCode(), taskDefinition.getVersion())).thenReturn(taskDefinition); Mockito.when(taskDefinitionLogMapper.queryMaxVersionForDefinition(taskDefinition.getCode())).thenReturn(1); Mockito.when(taskDefinitionMapper.queryByCode(taskDefinition.getCode())).thenReturn(taskDefinition); int result = processService.saveTaskDefine(operator, projectCode, taskDefinitionLogs, Boolean.TRUE); Assert.assertEquals(0, result); } @Test public void testGenDagGraph() { ProcessDefinition processDefinition = new ProcessDefinition(); processDefinition.setCode(1L);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
processDefinition.setId(123); processDefinition.setName("test"); processDefinition.setVersion(1); processDefinition.setCode(11L); ProcessTaskRelationLog processTaskRelation = new ProcessTaskRelationLog(); processTaskRelation.setName("def 1"); processTaskRelation.setProcessDefinitionVersion(1); processTaskRelation.setProjectCode(1L); processTaskRelation.setProcessDefinitionCode(1L); processTaskRelation.setPostTaskCode(3L); processTaskRelation.setPreTaskCode(2L); processTaskRelation.setUpdateTime(new Date()); processTaskRelation.setCreateTime(new Date()); List<ProcessTaskRelationLog> list = new ArrayList<>(); list.add(processTaskRelation); TaskDefinitionLog taskDefinition = new TaskDefinitionLog(); taskDefinition.setCode(3L); taskDefinition.setName("1-test"); taskDefinition.setProjectCode(1L); taskDefinition.setTaskType("SHELL"); taskDefinition.setUserId(1); taskDefinition.setVersion(2); taskDefinition.setCreateTime(new Date()); taskDefinition.setUpdateTime(new Date()); TaskDefinitionLog td2 = new TaskDefinitionLog(); td2.setCode(2L); td2.setName("unit-test"); td2.setProjectCode(1L); td2.setTaskType("SHELL"); td2.setUserId(1);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
td2.setVersion(1); td2.setCreateTime(new Date()); td2.setUpdateTime(new Date()); List<TaskDefinitionLog> taskDefinitionLogs = new ArrayList<>(); taskDefinitionLogs.add(taskDefinition); taskDefinitionLogs.add(td2); Mockito.when(taskDefinitionLogMapper.queryByTaskDefinitions(any())).thenReturn(taskDefinitionLogs); Mockito.when(processTaskRelationLogMapper.queryByProcessCodeAndVersion(Mockito.anyLong(), Mockito.anyInt())).thenReturn(list); DAG<String, TaskNode, TaskNodeRelation> stringTaskNodeTaskNodeRelationDAG = processService.genDagGraph(processDefinition); Assert.assertEquals(1, stringTaskNodeTaskNodeRelationDAG.getNodesCount()); } @Test public void testCreateCommand() { Command command = new Command(); command.setProcessDefinitionCode(123); command.setCommandParam("{\"ProcessInstanceId\":222}"); command.setCommandType(CommandType.START_PROCESS); int mockResult = 1; Mockito.when(commandMapper.insert(command)).thenReturn(mockResult); int exeMethodResult = processService.createCommand(command); Assert.assertEquals(mockResult, exeMethodResult); Mockito.verify(commandMapper, Mockito.times(1)).insert(command); } @Test public void testChangeOutParam() { TaskInstance taskInstance = new TaskInstance(); taskInstance.setProcessInstanceId(62); ProcessInstance processInstance = new ProcessInstance(); processInstance.setId(62); taskInstance.setVarPool("[{\"direct\":\"OUT\",\"prop\":\"test1\",\"type\":\"VARCHAR\",\"value\":\"\"}]");
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
taskInstance.setTaskParams("{\"type\":\"MYSQL\",\"datasource\":1,\"sql\":\"select id from tb_test limit 1\"," + "\"udfs\":\"\",\"sqlType\":\"0\",\"sendEmail\":false,\"displayRows\":10,\"title\":\"\"," + "\"groupId\":null,\"localParams\":[{\"prop\":\"test1\",\"direct\":\"OUT\",\"type\":\"VARCHAR\",\"value\":\"12\"}]," + "\"connParams\":\"\",\"preStatements\":[],\"postStatements\":[],\"conditionResult\":\"{\\\"successNode\\\":[\\\"\\\"]," + "\\\"failedNode\\\":[\\\"\\\"]}\",\"dependence\":\"{}\"}"); processService.changeOutParam(taskInstance); } @Test public void testUpdateResourceInfo() throws Exception { // test if input is null ceInfoNull = null; ResourceInfo updatedResourceInfo1 = Whitebox.invokeMethod(processService, "updateResourceInfo", resourceInfoNull); Assert.assertNull(updatedResourceInfo1); // test if resource id less than 1 ceInfoVoid = new ResourceInfo(); ResourceInfo updatedResourceInfo2 = Whitebox.invokeMethod(processService, "updateResourceInfo", resourceInfoVoid); Assert.assertNull(updatedResourceInfo2); // test normal situation ceInfoNormal = new ResourceInfo(); resourceInfoNormal.setId(1); Resource resource = new Resource(); resource.setId(1); resource.setFileName("test.txt"); resource.setFullName("/test.txt"); Mockito.when(resourceMapper.selectById(1)).thenReturn(resource); ResourceInfo updatedResourceInfo3 = Whitebox.invokeMethod(processService,
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
"updateResourceInfo", resourceInfoNormal); Assert.assertEquals(1, updatedResourceInfo3.getId()); Assert.assertEquals("test.txt", updatedResourceInfo3.getRes()); Assert.assertEquals("/test.txt", updatedResourceInfo3.getResourceName()); } @Test public void testCreateTaskGroupQueue() { Mockito.when(taskGroupQueueMapper.insert(Mockito.any(TaskGroupQueue.class))).thenReturn(1); TaskGroupQueue taskGroupQueue = processService.insertIntoTaskGroupQueue(1, "task name", 1, 1, 1, TaskGroupQueueStatus.WAIT_QUEUE); Assert.assertNotNull(taskGroupQueue); } @Test public void testDoRelease() { TaskGroupQueue taskGroupQueue = getTaskGroupQueue(); TaskInstance taskInstance = new TaskInstance(); taskInstance.setId(1); taskInstance.setProcessInstanceId(1); taskInstance.setTaskGroupId(taskGroupQueue.getGroupId()); Mockito.when(taskGroupQueueMapper.queryByTaskId(1)).thenReturn(taskGroupQueue); Mockito.when(taskGroupQueueMapper.updateById(taskGroupQueue)).thenReturn(1); processService.releaseTaskGroup(taskInstance); } @Test public void testFindTaskInstanceByIdList() { List<Integer> emptyList = new ArrayList<>(); Mockito.when(taskInstanceMapper.selectBatchIds(emptyList)).thenReturn(new ArrayList<>()); Assert.assertEquals(0, processService.findTaskInstanceByIdList(emptyList).size()); List<Integer> idList = Collections.singletonList(1); TaskInstance instance = new TaskInstance();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,868
[Bug-BE] Task flow definition cannot execute serial task flow while parallel serial alternate running.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task flow definition cannot execute serial task flow while parallel serial alternate running. ### What you expected to happen the task is running normally ### How to reproduce 1. create two shell node workflow 2. run four times in parallel 3. offline workflow 4. edit workflow 5. run four times in serial ### Anything else No Response ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9868
https://github.com/apache/dolphinscheduler/pull/9869
778018dcfb21420516b9194f77c199aaf4b56768
fb0f96ed946c89323ba347eb9d538a22b9be6e73
2022-05-03T07:44:53Z
java
2022-05-03T14:52:42Z
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
instance.setId(1); Mockito.when(taskInstanceMapper.selectBatchIds(idList)).thenReturn(Collections.singletonList(instance)); List<TaskInstance> taskInstanceByIdList = processService.findTaskInstanceByIdList(idList); Assert.assertEquals(1, taskInstanceByIdList.size()); Assert.assertEquals(instance.getId(), taskInstanceByIdList.get(0).getId()); } @Test public void testFindCommandPageBySlot() { int pageSize = 1; int pageNumber = 0; int masterCount = 0; int thisMasterSlot = 2; List<Command> commandList = processService.findCommandPageBySlot(pageSize, pageNumber, masterCount, thisMasterSlot); Assert.assertEquals(0, commandList.size()); } private TaskGroupQueue getTaskGroupQueue() { TaskGroupQueue taskGroupQueue = new TaskGroupQueue(); taskGroupQueue.setTaskName("task name"); taskGroupQueue.setId(1); taskGroupQueue.setGroupId(1); taskGroupQueue.setTaskId(1); taskGroupQueue.setPriority(1); taskGroupQueue.setStatus(TaskGroupQueueStatus.ACQUIRE_SUCCESS); Date date = new Date(System.currentTimeMillis()); taskGroupQueue.setUpdateTime(date); taskGroupQueue.setCreateTime(date); return taskGroupQueue; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,856
[Bug] [Api] Failed to upload the file because the full name was too long, but get misleading message
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened When the resource's fullname is longer than the max length of the field named "full_name" in t_ds_resources, the insert option will fail. But the misleading message "resource already exists, can't recreate" will be returned, which is not the root cause. ### What you expected to happen Add a validation of name length, before insert record into db. ### How to reproduce Create a folder with a name length of 64, then upload a file with a name length longer than 64 to that folder. ### Anything else It happens every time. ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9856
https://github.com/apache/dolphinscheduler/pull/9861
fb0f96ed946c89323ba347eb9d538a22b9be6e73
e41de35e17436646c3f551a93e53091e85d76d06
2022-04-30T09:40:37Z
java
2022-05-04T13:20:14Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.dolphinscheduler.api.enums; import java.util.Locale; import java.util.Optional; import org.springframework.context.i18n.LocaleContextHolder; /** * status enum // todo #4855 One category one interval */