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,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(code); if (processDefinition == null || projectCode != processDefinition.getProjectCode()) { putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(code)); return result; } if (loginUser.getId() != processDefinition.getUserId() && loginUser.getUserType() != UserType.ADMIN_USER) { putMsg(result, Status.USER_NO_OPERATION_PERM); return result; } if (processDefinition.getReleaseState() == ReleaseState.ONLINE) { putMsg(result, Status.PROCESS_DEFINE_STATE_ONLINE, String.valueOf(code)); return result; } List<ProcessInstance> processInstances = processInstanceService.queryByProcessDefineCodeAndStatus(processDefinition.getCode(), Constants.NOT_TERMINATED_STATES); if (CollectionUtils.isNotEmpty(processInstances)) { putMsg(result, Status.DELETE_PROCESS_DEFINITION_BY_CODE_FAIL, processInstances.size()); return result; } Schedule scheduleObj = scheduleMapper.queryByProcessDefinitionCode(code); if (scheduleObj != null) { if (scheduleObj.getReleaseState() == ReleaseState.OFFLINE) { int delete = scheduleMapper.deleteById(scheduleObj.getId());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
if (delete == 0) { putMsg(result, Status.DELETE_SCHEDULE_CRON_BY_ID_ERROR); throw new ServiceException(Status.DELETE_SCHEDULE_CRON_BY_ID_ERROR); } } if (scheduleObj.getReleaseState() == ReleaseState.ONLINE) { putMsg(result, Status.SCHEDULE_CRON_STATE_ONLINE, scheduleObj.getId()); return result; } } int delete = processDefinitionMapper.deleteById(processDefinition.getId()); if (delete == 0) { putMsg(result, Status.DELETE_PROCESS_DEFINE_BY_CODE_ERROR); throw new ServiceException(Status.DELETE_PROCESS_DEFINE_BY_CODE_ERROR); } int deleteRelation = processTaskRelationMapper.deleteByCode(project.getCode(), processDefinition.getCode()); if (deleteRelation == 0) { logger.warn("The process definition has not relation, it will be delete successfully"); } putMsg(result, Status.SUCCESS); return result; } /** * release process definition: online / offline * * @param loginUser login user * @param projectCode project code * @param code process definition code * @param releaseState release state * @return release result code
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
*/ @Override @Transactional(rollbackFor = RuntimeException.class) public Map<String, Object> releaseProcessDefinition(User loginUser, long projectCode, long code, ReleaseState releaseState) { Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } if (null == releaseState) { putMsg(result, Status.REQUEST_PARAMS_NOT_VALID_ERROR, RELEASESTATE); return result; } ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(code); if (processDefinition == null || projectCode != processDefinition.getProjectCode()) { putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(code)); return result; } switch (releaseState) { case ONLINE: List<ProcessTaskRelation> relationList = processService.findRelationByCode(code, processDefinition.getVersion()); if (CollectionUtils.isEmpty(relationList)) { putMsg(result, Status.PROCESS_DAG_IS_EMPTY); return result; } processDefinition.setReleaseState(releaseState); processDefinitionMapper.updateById(processDefinition); break;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
case OFFLINE: processDefinition.setReleaseState(releaseState); int updateProcess = processDefinitionMapper.updateById(processDefinition); Schedule schedule = scheduleMapper.queryByProcessDefinitionCode(code); if (updateProcess > 0 && schedule != null) { logger.info("set schedule offline, project code: {}, schedule id: {}, process definition code: {}", projectCode, schedule.getId(), code); schedule.setReleaseState(releaseState); int updateSchedule = scheduleMapper.updateById(schedule); if (updateSchedule == 0) { putMsg(result, Status.OFFLINE_SCHEDULE_ERROR); throw new ServiceException(Status.OFFLINE_SCHEDULE_ERROR); } schedulerService.deleteSchedule(project.getId(), schedule.getId()); } break; default: putMsg(result, Status.REQUEST_PARAMS_NOT_VALID_ERROR, RELEASESTATE); return result; } putMsg(result, Status.SUCCESS); return result; } /** * batch export process definition by codes */ @Override public void batchExportProcessDefinitionByCodes(User loginUser, long projectCode, String codes, HttpServletResponse response) { if (org.apache.commons.lang.StringUtils.isEmpty(codes)) { return;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
} Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return; } Set<Long> defineCodeSet = Lists.newArrayList(codes.split(Constants.COMMA)).stream().map(Long::parseLong).collect(Collectors.toSet()); List<ProcessDefinition> processDefinitionList = processDefinitionMapper.queryByCodes(defineCodeSet); if (CollectionUtils.isEmpty(processDefinitionList)) { return; } List<ProcessDefinition> processDefinitionListInProject = processDefinitionList.stream().filter(o -> projectCode == o.getProjectCode()).collect(Collectors.toList()); List<DagDataSchedule> dagDataSchedules = processDefinitionListInProject.stream().map(this::exportProcessDagData).collect(Collectors.toList()); if (CollectionUtils.isNotEmpty(dagDataSchedules)) { downloadProcessDefinitionFile(response, dagDataSchedules); } } /** * download the process definition file */ private void downloadProcessDefinitionFile(HttpServletResponse response, List<DagDataSchedule> dagDataSchedules) { response.setContentType(MediaType.APPLICATION_JSON_UTF8_VALUE); BufferedOutputStream buff = null; ServletOutputStream out = null; try { out = response.getOutputStream(); buff = new BufferedOutputStream(out); buff.write(JSONUtils.toJsonString(dagDataSchedules).getBytes(StandardCharsets.UTF_8));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
buff.flush(); buff.close(); } catch (IOException e) { logger.warn("export process fail", e); } finally { if (null != buff) { try { buff.close(); } catch (Exception e) { logger.warn("export process buffer not close", e); } } if (null != out) { try { out.close(); } catch (Exception e) { logger.warn("export process output stream not close", e); } } } } /** * get export process dag data * * @param processDefinition process definition * @return DagDataSchedule */ public DagDataSchedule exportProcessDagData(ProcessDefinition processDefinition) { Schedule scheduleObj = scheduleMapper.queryByProcessDefinitionCode(processDefinition.getCode()); DagDataSchedule dagDataSchedule = new DagDataSchedule(processService.genDagData(processDefinition));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
if (scheduleObj != null) { scheduleObj.setReleaseState(ReleaseState.OFFLINE); dagDataSchedule.setSchedule(scheduleObj); } return dagDataSchedule; } /** * import process definition * * @param loginUser login user * @param projectCode project code * @param file process metadata json file * @return import process */ @Override @Transactional(rollbackFor = RuntimeException.class) public Map<String, Object> importProcessDefinition(User loginUser, long projectCode, MultipartFile file) { Map<String, Object> result = new HashMap<>(); String dagDataScheduleJson = FileUtils.file2String(file); List<DagDataSchedule> dagDataScheduleList = JSONUtils.toList(dagDataScheduleJson, DagDataSchedule.class); if (CollectionUtils.isEmpty(dagDataScheduleList)) { putMsg(result, Status.DATA_IS_NULL, "fileContent"); return result; } for (DagDataSchedule dagDataSchedule : dagDataScheduleList) { if (!checkAndImport(loginUser, projectCode, result, dagDataSchedule)) { return result; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
return result; } @Override @Transactional(rollbackFor = RuntimeException.class) public Map<String, Object> importSqlProcessDefinition(User loginUser, long projectCode, MultipartFile file) { Map<String, Object> result = new HashMap<>(); String processDefinitionName = file.getOriginalFilename() == null ? file.getName() : file.getOriginalFilename(); int index = processDefinitionName.lastIndexOf("."); if (index > 0) { processDefinitionName = processDefinitionName.substring(0, index); } processDefinitionName = processDefinitionName + "_import_" + DateUtils.getCurrentTimeStamp(); ProcessDefinition processDefinition; List<TaskDefinitionLog> taskDefinitionList = new ArrayList<>(); List<ProcessTaskRelationLog> processTaskRelationList = new ArrayList<>(); final int THRESHOLD_ENTRIES = 10000; final int THRESHOLD_SIZE = 1000000000; final double THRESHOLD_RATIO = 10; int totalEntryArchive = 0; int totalSizeEntry = 0; Map<String, DataSource> dataSourceCache = new HashMap<>(1); Map<String, Long> taskNameToCode = new HashMap<>(16); Map<String, List<String>> taskNameToUpstream = new HashMap<>(16); try (ZipInputStream zIn = new ZipInputStream(file.getInputStream()); BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(zIn))) { processDefinition = new ProcessDefinition(projectCode, processDefinitionName,
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
CodeGenerateUtils.getInstance().genCode(), "", "[]", null, 0, loginUser.getId(), loginUser.getTenantId()); ZipEntry entry; while ((entry = zIn.getNextEntry()) != null) { totalEntryArchive++; int totalSizeArchive = 0; if (!entry.isDirectory()) { StringBuilder sql = new StringBuilder(); String taskName = null; String datasourceName = null; List<String> upstreams = Collections.emptyList(); String line; while ((line = bufferedReader.readLine()) != null) { int nBytes = line.getBytes(StandardCharsets.UTF_8).length; totalSizeEntry += nBytes; totalSizeArchive += nBytes; long compressionRatio = totalSizeEntry / entry.getCompressedSize(); if (compressionRatio > THRESHOLD_RATIO) { throw new IllegalStateException("ratio between compressed and uncompressed data is highly suspicious, looks like a Zip Bomb Attack"); } int commentIndex = line.indexOf("-- "); if (commentIndex >= 0) { int colonIndex = line.indexOf(":", commentIndex); if (colonIndex > 0) { String key = line.substring(commentIndex + 3, colonIndex).trim().toLowerCase(); String value = line.substring(colonIndex + 1).trim(); switch (key) { case "name":
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
taskName = value; line = line.substring(0, commentIndex); break; case "upstream": upstreams = Arrays.stream(value.split(",")).map(String::trim) .filter(s -> !"".equals(s)).collect(Collectors.toList()); line = line.substring(0, commentIndex); break; case "datasource": datasourceName = value; line = line.substring(0, commentIndex); break; default: break; } } } if (!"".equals(line)) { sql.append(line).append("\n"); } } if (taskName == null) { taskName = entry.getName(); index = taskName.indexOf("/"); if (index > 0) { taskName = taskName.substring(index + 1); } index = taskName.lastIndexOf("."); if (index > 0) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
taskName = taskName.substring(0, index); } } DataSource dataSource = dataSourceCache.get(datasourceName); if (dataSource == null) { dataSource = queryDatasourceByNameAndUser(datasourceName, loginUser); } if (dataSource == null) { putMsg(result, Status.DATASOURCE_NAME_ILLEGAL); return result; } dataSourceCache.put(datasourceName, dataSource); TaskDefinitionLog taskDefinition = buildNormalSqlTaskDefinition(taskName, dataSource, sql.substring(0, sql.length() - 1)); taskDefinitionList.add(taskDefinition); taskNameToCode.put(taskDefinition.getName(), taskDefinition.getCode()); taskNameToUpstream.put(taskDefinition.getName(), upstreams); } if (totalSizeArchive > THRESHOLD_SIZE) { throw new IllegalStateException("the uncompressed data size is too much for the application resource capacity"); } if (totalEntryArchive > THRESHOLD_ENTRIES) { throw new IllegalStateException("too much entries in this archive, can lead to inodes exhaustion of the system"); } } } catch (Exception e) { logger.error(e.getMessage(), e); putMsg(result, Status.IMPORT_PROCESS_DEFINE_ERROR); return result; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
for (Map.Entry<String, Long> entry : taskNameToCode.entrySet()) { List<String> upstreams = taskNameToUpstream.get(entry.getKey()); if (CollectionUtils.isEmpty(upstreams) || (upstreams.size() == 1 && upstreams.contains("root") && !taskNameToCode.containsKey("root"))) { ProcessTaskRelationLog processTaskRelation = buildNormalTaskRelation(0, entry.getValue()); processTaskRelationList.add(processTaskRelation); continue; } for (String upstream : upstreams) { ProcessTaskRelationLog processTaskRelation = buildNormalTaskRelation(taskNameToCode.get(upstream), entry.getValue()); processTaskRelationList.add(processTaskRelation); } } return createDagDefine(loginUser, processTaskRelationList, processDefinition, taskDefinitionList); } private ProcessTaskRelationLog buildNormalTaskRelation(long preTaskCode, long postTaskCode) { ProcessTaskRelationLog processTaskRelation = new ProcessTaskRelationLog(); processTaskRelation.setPreTaskCode(preTaskCode); processTaskRelation.setPreTaskVersion(0); processTaskRelation.setPostTaskCode(postTaskCode); processTaskRelation.setPostTaskVersion(0); processTaskRelation.setConditionType(ConditionType.NONE); processTaskRelation.setName(""); return processTaskRelation; } private DataSource queryDatasourceByNameAndUser(String datasourceName, User loginUser) { if (isAdmin(loginUser)) { List<DataSource> dataSources = dataSourceMapper.queryDataSourceByName(datasourceName); if (CollectionUtils.isNotEmpty(dataSources)) { return dataSources.get(0);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
} } else { return dataSourceMapper.queryDataSourceByNameAndUserId(loginUser.getId(), datasourceName); } return null; } private TaskDefinitionLog buildNormalSqlTaskDefinition(String taskName, DataSource dataSource, String sql) throws CodeGenerateException { TaskDefinitionLog taskDefinition = new TaskDefinitionLog(); taskDefinition.setName(taskName); taskDefinition.setFlag(Flag.YES); SqlParameters sqlParameters = new SqlParameters(); sqlParameters.setType(dataSource.getType().name()); sqlParameters.setDatasource(dataSource.getId()); sqlParameters.setSql(sql.substring(0, sql.length() - 1)); sqlParameters.setSqlType(SqlType.NON_QUERY.ordinal()); sqlParameters.setLocalParams(Collections.emptyList()); taskDefinition.setTaskParams(JSONUtils.toJsonString(sqlParameters)); taskDefinition.setCode(CodeGenerateUtils.getInstance().genCode()); taskDefinition.setTaskType(TASK_TYPE_SQL); taskDefinition.setFailRetryTimes(0); taskDefinition.setFailRetryInterval(0); taskDefinition.setTimeoutFlag(TimeoutFlag.CLOSE); taskDefinition.setWorkerGroup(DEFAULT_WORKER_GROUP); taskDefinition.setTaskPriority(Priority.MEDIUM); taskDefinition.setEnvironmentCode(-1); taskDefinition.setTimeout(0); taskDefinition.setDelayTime(0); taskDefinition.setTimeoutNotifyStrategy(TaskTimeoutStrategy.WARN); taskDefinition.setVersion(0);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
taskDefinition.setResourceIds(""); return taskDefinition; } /** * check and import */ private boolean checkAndImport(User loginUser, long projectCode, Map<String, Object> result, DagDataSchedule dagDataSchedule) { if (!checkImportanceParams(dagDataSchedule, result)) { return false; } ProcessDefinition processDefinition = dagDataSchedule.getProcessDefinition(); String processDefinitionName = recursionProcessDefinitionName(projectCode, processDefinition.getName(), 1); String importProcessDefinitionName = processDefinitionName + "_import_" + DateUtils.getCurrentTimeStamp(); Map<String, Object> checkResult = verifyProcessDefinitionName(loginUser, projectCode, importProcessDefinitionName); if (Status.SUCCESS.equals(checkResult.get(Constants.STATUS))) { putMsg(result, Status.SUCCESS); } else { result.putAll(checkResult); return false; } processDefinition.setName(importProcessDefinitionName); processDefinition.setId(0); processDefinition.setProjectCode(projectCode); processDefinition.setUserId(loginUser.getId()); try { processDefinition.setCode(CodeGenerateUtils.getInstance().genCode()); } catch (CodeGenerateException e) { putMsg(result, Status.CREATE_PROCESS_DEFINITION_ERROR);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
return false; } List<TaskDefinition> taskDefinitionList = dagDataSchedule.getTaskDefinitionList(); Map<Long, Long> taskCodeMap = new HashMap<>(); Date now = new Date(); List<TaskDefinitionLog> taskDefinitionLogList = new ArrayList<>(); for (TaskDefinition taskDefinition : taskDefinitionList) { TaskDefinitionLog taskDefinitionLog = new TaskDefinitionLog(taskDefinition); taskDefinitionLog.setName(taskDefinitionLog.getName() + "_import_" + DateUtils.getCurrentTimeStamp()); taskDefinitionLog.setProjectCode(projectCode); taskDefinitionLog.setUserId(loginUser.getId()); taskDefinitionLog.setVersion(Constants.VERSION_FIRST); taskDefinitionLog.setCreateTime(now); taskDefinitionLog.setUpdateTime(now); taskDefinitionLog.setOperator(loginUser.getId()); taskDefinitionLog.setOperateTime(now); try { long code = CodeGenerateUtils.getInstance().genCode(); taskCodeMap.put(taskDefinitionLog.getCode(), code); taskDefinitionLog.setCode(code); } catch (CodeGenerateException e) { logger.error("Task code get error, ", e); putMsg(result, Status.INTERNAL_SERVER_ERROR_ARGS, "Error generating task definition code"); return false; } taskDefinitionLogList.add(taskDefinitionLog); } int insert = taskDefinitionMapper.batchInsert(taskDefinitionLogList); int logInsert = taskDefinitionLogMapper.batchInsert(taskDefinitionLogList); if ((logInsert & insert) == 0) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
putMsg(result, Status.CREATE_TASK_DEFINITION_ERROR); throw new ServiceException(Status.CREATE_TASK_DEFINITION_ERROR); } List<ProcessTaskRelation> taskRelationList = dagDataSchedule.getProcessTaskRelationList(); List<ProcessTaskRelationLog> taskRelationLogList = new ArrayList<>(); for (ProcessTaskRelation processTaskRelation : taskRelationList) { ProcessTaskRelationLog processTaskRelationLog = new ProcessTaskRelationLog(processTaskRelation); if (taskCodeMap.containsKey(processTaskRelationLog.getPreTaskCode())) { processTaskRelationLog.setPreTaskCode(taskCodeMap.get(processTaskRelationLog.getPreTaskCode())); } if (taskCodeMap.containsKey(processTaskRelationLog.getPostTaskCode())) { processTaskRelationLog.setPostTaskCode(taskCodeMap.get(processTaskRelationLog.getPostTaskCode())); } processTaskRelationLog.setPreTaskVersion(Constants.VERSION_FIRST); processTaskRelationLog.setPostTaskVersion(Constants.VERSION_FIRST); taskRelationLogList.add(processTaskRelationLog); } if (StringUtils.isNotEmpty(processDefinition.getLocations()) && JSONUtils.checkJsonValid(processDefinition.getLocations())) { ArrayNode arrayNode = JSONUtils.parseArray(processDefinition.getLocations()); ArrayNode newArrayNode = JSONUtils.createArrayNode(); for (int i = 0; i < arrayNode.size(); i++) { ObjectNode newObjectNode = newArrayNode.addObject(); JsonNode jsonNode = arrayNode.get(i); Long taskCode = taskCodeMap.get(jsonNode.get("taskCode").asLong()); if (Objects.nonNull(taskCode)) { newObjectNode.put("taskCode", taskCode); newObjectNode.set("x", jsonNode.get("x")); newObjectNode.set("y", jsonNode.get("y")); } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
processDefinition.setLocations(newArrayNode.toString()); } processDefinition.setCreateTime(new Date()); processDefinition.setUpdateTime(new Date()); Map<String, Object> createDagResult = createDagDefine(loginUser, taskRelationLogList, processDefinition, Lists.newArrayList()); if (Status.SUCCESS.equals(createDagResult.get(Constants.STATUS))) { putMsg(createDagResult, Status.SUCCESS); } else { result.putAll(createDagResult); throw new ServiceException(Status.IMPORT_PROCESS_DEFINE_ERROR); } Schedule schedule = dagDataSchedule.getSchedule(); if (null != schedule) { ProcessDefinition newProcessDefinition = processDefinitionMapper.queryByCode(processDefinition.getCode()); schedule.setProcessDefinitionCode(newProcessDefinition.getCode()); schedule.setUserId(loginUser.getId()); schedule.setCreateTime(now); schedule.setUpdateTime(now); int scheduleInsert = scheduleMapper.insert(schedule); if (0 == scheduleInsert) { putMsg(result, Status.IMPORT_PROCESS_DEFINE_ERROR); throw new ServiceException(Status.IMPORT_PROCESS_DEFINE_ERROR); } } return true; } /** * check importance params */ private boolean checkImportanceParams(DagDataSchedule dagDataSchedule, Map<String, Object> result) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
if (dagDataSchedule.getProcessDefinition() == null) { putMsg(result, Status.DATA_IS_NULL, "ProcessDefinition"); return false; } if (CollectionUtils.isEmpty(dagDataSchedule.getTaskDefinitionList())) { putMsg(result, Status.DATA_IS_NULL, "TaskDefinitionList"); return false; } if (CollectionUtils.isEmpty(dagDataSchedule.getProcessTaskRelationList())) { putMsg(result, Status.DATA_IS_NULL, "ProcessTaskRelationList"); return false; } return true; } private String recursionProcessDefinitionName(long projectCode, String processDefinitionName, int num) { ProcessDefinition processDefinition = processDefinitionMapper.queryByDefineName(projectCode, processDefinitionName); if (processDefinition != null) { if (num > 1) { String str = processDefinitionName.substring(0, processDefinitionName.length() - 3); processDefinitionName = str + "(" + num + ")"; } else { processDefinitionName = processDefinition.getName() + "(" + num + ")"; } } else { return processDefinitionName; } return recursionProcessDefinitionName(projectCode, processDefinitionName, num + 1); } /** * check the process task relation json
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
* * @param processTaskRelationJson process task relation json * @return check result code */ @Override public Map<String, Object> checkProcessNodeList(String processTaskRelationJson, List<TaskDefinitionLog> taskDefinitionLogsList) { Map<String, Object> result = new HashMap<>(); try { if (processTaskRelationJson == null) { logger.error("process data is null"); putMsg(result, Status.DATA_IS_NOT_VALID, processTaskRelationJson); return result; } List<ProcessTaskRelation> taskRelationList = JSONUtils.toList(processTaskRelationJson, ProcessTaskRelation.class); List<TaskNode> taskNodes = processService.transformTask(taskRelationList, taskDefinitionLogsList); if (CollectionUtils.isEmpty(taskNodes)) { logger.error("process node info is empty"); putMsg(result, Status.PROCESS_DAG_IS_EMPTY); return result; } if (graphHasCycle(taskNodes)) { logger.error("process DAG has cycle"); putMsg(result, Status.PROCESS_NODE_HAS_CYCLE); return result; } for (TaskNode taskNode : taskNodes) { if (!taskPluginManager.checkTaskParameters(ParametersNode.builder()
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
.taskType(taskNode.getType()) .taskParams(taskNode.getTaskParams()) .dependence(taskNode.getDependence()) .switchResult(taskNode.getSwitchResult()) .build())) { logger.error("task node {} parameter invalid", taskNode.getName()); putMsg(result, Status.PROCESS_NODE_S_PARAMETER_INVALID, taskNode.getName()); return result; } CheckUtils.checkOtherParams(taskNode.getExtras()); } putMsg(result, Status.SUCCESS); } catch (Exception e) { result.put(Constants.STATUS, Status.INTERNAL_SERVER_ERROR_ARGS); putMsg(result, Status.INTERNAL_SERVER_ERROR_ARGS, e.getMessage()); logger.error(Status.INTERNAL_SERVER_ERROR_ARGS.getMsg(), e); } return result; } /** * get task node details based on process definition * * @param loginUser loginUser * @param projectCode project code * @param code process definition code * @return task node list */ @Override public Map<String, Object> getTaskNodeListByDefinitionCode(User loginUser, long projectCode, long code) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(code); if (processDefinition == null || projectCode != processDefinition.getProjectCode()) { logger.info("process define not exists"); putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(code)); return result; } DagData dagData = processService.genDagData(processDefinition); result.put(Constants.DATA_LIST, dagData.getTaskDefinitionList()); putMsg(result, Status.SUCCESS); return result; } /** * get task node details map based on process definition * * @param loginUser loginUser * @param projectCode project code * @param codes define codes * @return task node list */ @Override public Map<String, Object> getNodeListMapByDefinitionCodes(User loginUser, long projectCode, String codes) { Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } Set<Long> defineCodeSet = Lists.newArrayList(codes.split(Constants.COMMA)).stream().map(Long::parseLong).collect(Collectors.toSet()); List<ProcessDefinition> processDefinitionList = processDefinitionMapper.queryByCodes(defineCodeSet); if (CollectionUtils.isEmpty(processDefinitionList)) { logger.info("process definition not exists"); putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, codes); return result; } HashMap<Long, Project> userProjects = new HashMap<>(Constants.DEFAULT_HASH_MAP_SIZE); projectMapper.queryProjectCreatedAndAuthorizedByUserId(loginUser.getId()) .forEach(userProject -> userProjects.put(userProject.getCode(), userProject)); List<ProcessDefinition> processDefinitionListInProject = processDefinitionList.stream() .filter(o -> userProjects.containsKey(o.getProjectCode())).collect(Collectors.toList()); if (CollectionUtils.isEmpty(processDefinitionListInProject)) { putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, codes); return result; } Map<Long, List<TaskDefinition>> taskNodeMap = new HashMap<>(); for (ProcessDefinition processDefinition : processDefinitionListInProject) { DagData dagData = processService.genDagData(processDefinition); taskNodeMap.put(processDefinition.getCode(), dagData.getTaskDefinitionList()); } result.put(Constants.DATA_LIST, taskNodeMap); putMsg(result, Status.SUCCESS); return result; } /**
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
* query process definition all by project code * * @param loginUser loginUser * @param projectCode project code * @return process definitions in the project */ @Override public Map<String, Object> queryAllProcessDefinitionByProjectCode(User loginUser, long projectCode) { Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } List<ProcessDefinition> processDefinitions = processDefinitionMapper.queryAllDefinitionList(projectCode); List<DagData> dagDataList = processDefinitions.stream().map(processService::genDagData).collect(Collectors.toList()); result.put(Constants.DATA_LIST, dagDataList); putMsg(result, Status.SUCCESS); return result; } /** * query process definition list by project code * * @param projectCode project code * @return process definition list in the project */ @Override public Map<String, Object> queryProcessDefinitionListByProjectCode(long projectCode) { Map<String, Object> result = new HashMap<>(); List<DependentSimplifyDefinition> processDefinitions = processDefinitionMapper.queryDefinitionListByProjectCodeAndProcessDefinitionCodes(projectCode, null);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
result.put(Constants.DATA_LIST, processDefinitions); putMsg(result, Status.SUCCESS); return result; } /** * query process definition list by process definition code * * @param projectCode project code * @param processDefinitionCode process definition code * @return task definition list in the process definition */ @Override public Map<String, Object> queryTaskDefinitionListByProcessDefinitionCode(long projectCode, Long processDefinitionCode) { Map<String, Object> result = new HashMap<>(); Set<Long> definitionCodesSet = new HashSet<>(); definitionCodesSet.add(processDefinitionCode); List<DependentSimplifyDefinition> processDefinitions = processDefinitionMapper.queryDefinitionListByProjectCodeAndProcessDefinitionCodes(projectCode, definitionCodesSet); List<ProcessTaskRelation> processTaskRelations = processTaskRelationMapper.queryProcessTaskRelationsByProcessDefinitionCode( processDefinitions.get(0).getCode(), processDefinitions.get(0).getVersion()); List<TaskDefinitionLog> taskDefinitionLogsList = processService.genTaskDefineList(processTaskRelations); List<DependentSimplifyDefinition> taskDefinitionList = new ArrayList<>(); for (TaskDefinitionLog taskDefinitionLog : taskDefinitionLogsList) { DependentSimplifyDefinition dependentSimplifyDefinition = new DependentSimplifyDefinition(); dependentSimplifyDefinition.setCode(taskDefinitionLog.getCode()); dependentSimplifyDefinition.setName(taskDefinitionLog.getName()); dependentSimplifyDefinition.setVersion(taskDefinitionLog.getVersion()); taskDefinitionList.add(dependentSimplifyDefinition);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
} result.put(Constants.DATA_LIST, taskDefinitionList); putMsg(result, Status.SUCCESS); return result; } /** * Encapsulates the TreeView structure * * @param projectCode project code * @param code process definition code * @param limit limit * @return tree view json data */ @Override public Map<String, Object> viewTree(long projectCode, long code, Integer limit) { Map<String, Object> result = new HashMap<>(); ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(code); if (null == processDefinition || projectCode != processDefinition.getProjectCode()) { logger.info("process define not exists"); putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(code)); return result; } DAG<String, TaskNode, TaskNodeRelation> dag = processService.genDagGraph(processDefinition); Map<String, List<TreeViewDto>> runningNodeMap = new ConcurrentHashMap<>(); Map<String, List<TreeViewDto>> waitingRunningNodeMap = new ConcurrentHashMap<>(); List<ProcessInstance> processInstanceList = processInstanceService.queryByProcessDefineCode(code, limit); processInstanceList.forEach(processInstance -> processInstance.setDuration(DateUtils.format2Duration(processInstance.getStartTime(), processInstance.getEndTime())));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
List<TaskDefinitionLog> taskDefinitionList = processService.genTaskDefineList(processTaskRelationMapper.queryByProcessCode(processDefinition.getProjectCode(), processDefinition.getCode())); Map<Long, TaskDefinitionLog> taskDefinitionMap = taskDefinitionList.stream() .collect(Collectors.toMap(TaskDefinitionLog::getCode, taskDefinitionLog -> taskDefinitionLog)); if (limit > processInstanceList.size()) { limit = processInstanceList.size(); } TreeViewDto parentTreeViewDto = new TreeViewDto(); parentTreeViewDto.setName("DAG"); parentTreeViewDto.setType(""); parentTreeViewDto.setCode(0L); for (int i = limit - 1; i >= 0; i--) { ProcessInstance processInstance = processInstanceList.get(i); Date endTime = processInstance.getEndTime() == null ? new Date() : processInstance.getEndTime(); parentTreeViewDto.getInstances().add(new Instance(processInstance.getId(), processInstance.getName(), processInstance.getProcessDefinitionCode(), "", processInstance.getState().toString(), processInstance.getStartTime(), endTime, processInstance.getHost(), DateUtils.format2Readable(endTime.getTime() - processInstance.getStartTime().getTime()))); } List<TreeViewDto> parentTreeViewDtoList = new ArrayList<>(); parentTreeViewDtoList.add(parentTreeViewDto); for (String startNode : dag.getBeginNode()) { runningNodeMap.put(startNode, parentTreeViewDtoList); } while (Stopper.isRunning()) { Set<String> postNodeList; Iterator<Map.Entry<String, List<TreeViewDto>>> iter = runningNodeMap.entrySet().iterator(); while (iter.hasNext()) { Map.Entry<String, List<TreeViewDto>> en = iter.next(); String nodeCode = en.getKey();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
parentTreeViewDtoList = en.getValue(); TreeViewDto treeViewDto = new TreeViewDto(); TaskNode taskNode = dag.getNode(nodeCode); treeViewDto.setType(taskNode.getType()); treeViewDto.setCode(taskNode.getCode()); treeViewDto.setName(taskNode.getName()); for (int i = limit - 1; i >= 0; i--) { ProcessInstance processInstance = processInstanceList.get(i); TaskInstance taskInstance = taskInstanceMapper.queryByInstanceIdAndCode(processInstance.getId(), Long.parseLong(nodeCode)); if (taskInstance == null) { treeViewDto.getInstances().add(new Instance(-1, "not running", 0, "null")); } else { Date startTime = taskInstance.getStartTime() == null ? new Date() : taskInstance.getStartTime(); Date endTime = taskInstance.getEndTime() == null ? new Date() : taskInstance.getEndTime(); long subProcessCode = 0L; if (taskInstance.isSubProcess()) { TaskDefinition taskDefinition = taskDefinitionMap.get(taskInstance.getTaskCode()); subProcessCode = Integer.parseInt(JSONUtils.parseObject( taskDefinition.getTaskParams()).path(CMD_PARAM_SUB_PROCESS_DEFINE_CODE).asText()); } treeViewDto.getInstances().add(new Instance(taskInstance.getId(), taskInstance.getName(), taskInstance.getTaskCode(), taskInstance.getTaskType(), taskInstance.getState().toString(), taskInstance.getStartTime(), taskInstance.getEndTime(), taskInstance.getHost(), DateUtils.format2Readable(endTime.getTime() - startTime.getTime()), subProcessCode)); } } for (TreeViewDto pTreeViewDto : parentTreeViewDtoList) { pTreeViewDto.getChildren().add(treeViewDto); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
postNodeList = dag.getSubsequentNodes(nodeCode); if (CollectionUtils.isNotEmpty(postNodeList)) { for (String nextNodeCode : postNodeList) { List<TreeViewDto> treeViewDtoList = waitingRunningNodeMap.get(nextNodeCode); if (CollectionUtils.isEmpty(treeViewDtoList)) { treeViewDtoList = new ArrayList<>(); } treeViewDtoList.add(treeViewDto); waitingRunningNodeMap.put(nextNodeCode, treeViewDtoList); } } runningNodeMap.remove(nodeCode); } if (waitingRunningNodeMap.size() == 0) { break; } else { runningNodeMap.putAll(waitingRunningNodeMap); waitingRunningNodeMap.clear(); } } result.put(Constants.DATA_LIST, parentTreeViewDto); result.put(Constants.STATUS, Status.SUCCESS); result.put(Constants.MSG, Status.SUCCESS.getMsg()); return result; } /** * whether the graph has a ring * * @param taskNodeResponseList task node response list * @return if graph has cycle flag
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
*/ private boolean graphHasCycle(List<TaskNode> taskNodeResponseList) { DAG<String, TaskNode, String> graph = new DAG<>(); for (TaskNode taskNodeResponse : taskNodeResponseList) { graph.addNode(Long.toString(taskNodeResponse.getCode()), taskNodeResponse); } for (TaskNode taskNodeResponse : taskNodeResponseList) { List<String> preTasks = JSONUtils.toList(taskNodeResponse.getPreTasks(), String.class); if (CollectionUtils.isNotEmpty(preTasks)) { for (String preTask : preTasks) { if (!graph.addEdge(preTask, Long.toString(taskNodeResponse.getCode()))) { return true; } } } } return graph.hasCycle(); } /** * batch copy process definition * * @param loginUser loginUser * @param projectCode projectCode * @param codes processDefinitionCodes * @param targetProjectCode targetProjectCode */ @Override public Map<String, Object> batchCopyProcessDefinition(User loginUser,
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
long projectCode, String codes, long targetProjectCode) { Map<String, Object> result = checkParams(loginUser, projectCode, codes, targetProjectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } List<String> failedProcessList = new ArrayList<>(); doBatchOperateProcessDefinition(loginUser, targetProjectCode, failedProcessList, codes, result, true); if (result.get(Constants.STATUS) == Status.NOT_SUPPORT_COPY_TASK_TYPE) { return result; } checkBatchOperateResult(projectCode, targetProjectCode, result, failedProcessList, true); return result; } /** * batch move process definition * Will be deleted * @param loginUser loginUser * @param projectCode projectCode * @param codes processDefinitionCodes * @param targetProjectCode targetProjectCode */ @Override @Transactional(rollbackFor = RuntimeException.class) public Map<String, Object> batchMoveProcessDefinition(User loginUser, long projectCode, String codes, long targetProjectCode) { Map<String, Object> result = checkParams(loginUser, projectCode, codes, targetProjectCode);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } if (projectCode == targetProjectCode) { return result; } List<String> failedProcessList = new ArrayList<>(); doBatchOperateProcessDefinition(loginUser, targetProjectCode, failedProcessList, codes, result, false); checkBatchOperateResult(projectCode, targetProjectCode, result, failedProcessList, false); return result; } private Map<String, Object> checkParams(User loginUser, long projectCode, String processDefinitionCodes, long targetProjectCode) { Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } if (org.apache.commons.lang.StringUtils.isEmpty(processDefinitionCodes)) { putMsg(result, Status.PROCESS_DEFINITION_CODES_IS_EMPTY, processDefinitionCodes); return result; } if (projectCode != targetProjectCode) { Project targetProject = projectMapper.queryByCode(targetProjectCode); Map<String, Object> targetResult = projectService.checkProjectAndAuth(loginUser, targetProject, targetProjectCode); if (targetResult.get(Constants.STATUS) != Status.SUCCESS) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
return targetResult; } } return result; } private void doBatchOperateProcessDefinition(User loginUser, long targetProjectCode, List<String> failedProcessList, String processDefinitionCodes, Map<String, Object> result, boolean isCopy) { Set<Long> definitionCodes = Arrays.stream(processDefinitionCodes.split(Constants.COMMA)).map(Long::parseLong).collect(Collectors.toSet()); List<ProcessDefinition> processDefinitionList = processDefinitionMapper.queryByCodes(definitionCodes); Set<Long> queryCodes = processDefinitionList.stream().map(ProcessDefinition::getCode).collect(Collectors.toSet()); Set<Long> diffCode = definitionCodes.stream().filter(code -> !queryCodes.contains(code)).collect(Collectors.toSet()); diffCode.forEach(code -> failedProcessList.add(code + "[null]")); for (ProcessDefinition processDefinition : processDefinitionList) { List<ProcessTaskRelation> processTaskRelations = processTaskRelationMapper.queryByProcessCode(processDefinition.getProjectCode(), processDefinition.getCode()); List<ProcessTaskRelationLog> taskRelationList = processTaskRelations.stream().map(ProcessTaskRelationLog::new).collect(Collectors.toList()); processDefinition.setProjectCode(targetProjectCode); if (isCopy) { List<TaskDefinitionLog> taskDefinitionLogs = processService.genTaskDefineList(processTaskRelations); Map<Long, Long> taskCodeMap = new HashMap<>(); for (TaskDefinitionLog taskDefinitionLog : taskDefinitionLogs) { if (COMPLEX_TASK_TYPES.contains(taskDefinitionLog.getTaskType())) { putMsg(result, Status.NOT_SUPPORT_COPY_TASK_TYPE, taskDefinitionLog.getTaskType()); return; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
try { long taskCode = CodeGenerateUtils.getInstance().genCode(); taskCodeMap.put(taskDefinitionLog.getCode(), taskCode); taskDefinitionLog.setCode(taskCode); } catch (CodeGenerateException e) { putMsg(result, Status.INTERNAL_SERVER_ERROR_ARGS); throw new ServiceException(Status.INTERNAL_SERVER_ERROR_ARGS); } taskDefinitionLog.setProjectCode(targetProjectCode); taskDefinitionLog.setVersion(0); taskDefinitionLog.setName(taskDefinitionLog.getName() + "_copy_" + DateUtils.getCurrentTimeStamp()); } for (ProcessTaskRelationLog processTaskRelationLog : taskRelationList) { if (processTaskRelationLog.getPreTaskCode() > 0) { processTaskRelationLog.setPreTaskCode(taskCodeMap.get(processTaskRelationLog.getPreTaskCode())); } if (processTaskRelationLog.getPostTaskCode() > 0) { processTaskRelationLog.setPostTaskCode(taskCodeMap.get(processTaskRelationLog.getPostTaskCode())); } } try { processDefinition.setCode(CodeGenerateUtils.getInstance().genCode()); } catch (CodeGenerateException e) { putMsg(result, Status.INTERNAL_SERVER_ERROR_ARGS); throw new ServiceException(Status.INTERNAL_SERVER_ERROR_ARGS); } processDefinition.setId(0); processDefinition.setUserId(loginUser.getId()); processDefinition.setName(processDefinition.getName() + "_copy_" + DateUtils.getCurrentTimeStamp()); if (StringUtils.isNotBlank(processDefinition.getLocations())) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
ArrayNode jsonNodes = JSONUtils.parseArray(processDefinition.getLocations()); for (int i = 0; i < jsonNodes.size(); i++) { ObjectNode node = (ObjectNode) jsonNodes.path(i); node.put("taskCode", taskCodeMap.get(node.get("taskCode").asLong())); jsonNodes.set(i, node); } processDefinition.setLocations(JSONUtils.toJsonString(jsonNodes)); } try { result.putAll(createDagDefine(loginUser, taskRelationList, processDefinition, taskDefinitionLogs)); } catch (Exception e) { putMsg(result, Status.COPY_PROCESS_DEFINITION_ERROR); throw new ServiceException(Status.COPY_PROCESS_DEFINITION_ERROR); } } else { try { result.putAll(updateDagDefine(loginUser, taskRelationList, processDefinition, null, Lists.newArrayList())); } catch (Exception e) { putMsg(result, Status.MOVE_PROCESS_DEFINITION_ERROR); throw new ServiceException(Status.MOVE_PROCESS_DEFINITION_ERROR); } } if (result.get(Constants.STATUS) != Status.SUCCESS) { failedProcessList.add(processDefinition.getCode() + "[" + processDefinition.getName() + "]"); } } } /** * switch the defined process definition version *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
* @param loginUser login user * @param projectCode project code * @param code process definition code * @param version the version user want to switch * @return switch process definition version result code */ @Override @Transactional(rollbackFor = RuntimeException.class) public Map<String, Object> switchProcessDefinitionVersion(User loginUser, long projectCode, long code, int version) { Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(code); if (Objects.isNull(processDefinition) || projectCode != processDefinition.getProjectCode()) { putMsg(result, Status.SWITCH_PROCESS_DEFINITION_VERSION_NOT_EXIST_PROCESS_DEFINITION_ERROR, code); return result; } ProcessDefinitionLog processDefinitionLog = processDefinitionLogMapper.queryByDefinitionCodeAndVersion(code, version); if (Objects.isNull(processDefinitionLog)) { putMsg(result, Status.SWITCH_PROCESS_DEFINITION_VERSION_NOT_EXIST_PROCESS_DEFINITION_VERSION_ERROR, processDefinition.getCode(), version); return result; } int switchVersion = processService.switchVersion(processDefinition, processDefinitionLog); if (switchVersion <= 0) { putMsg(result, Status.SWITCH_PROCESS_DEFINITION_VERSION_ERROR); throw new ServiceException(Status.SWITCH_PROCESS_DEFINITION_VERSION_ERROR); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
putMsg(result, Status.SUCCESS); return result; } /** * check batch operate result * * @param srcProjectCode srcProjectCode * @param targetProjectCode targetProjectCode * @param result result * @param failedProcessList failedProcessList * @param isCopy isCopy */ private void checkBatchOperateResult(long srcProjectCode, long targetProjectCode, Map<String, Object> result, List<String> failedProcessList, boolean isCopy) { if (!failedProcessList.isEmpty()) { if (isCopy) { putMsg(result, Status.COPY_PROCESS_DEFINITION_ERROR, srcProjectCode, targetProjectCode, String.join(",", failedProcessList)); } else { putMsg(result, Status.MOVE_PROCESS_DEFINITION_ERROR, srcProjectCode, targetProjectCode, String.join(",", failedProcessList)); } } else { putMsg(result, Status.SUCCESS); } } /** * query the pagination versions info by one certain process definition code * * @param loginUser login user info to check auth * @param projectCode project code * @param pageNo page number
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
* @param pageSize page size * @param code process definition code * @return the pagination process definition versions info of the certain process definition */ @Override public Result queryProcessDefinitionVersions(User loginUser, long projectCode, int pageNo, int pageSize, long code) { Result result = new Result(); Project project = projectMapper.queryByCode(projectCode); Map<String, Object> checkResult = projectService.checkProjectAndAuth(loginUser, project, projectCode); Status resultStatus = (Status) checkResult.get(Constants.STATUS); if (resultStatus != Status.SUCCESS) { putMsg(result, resultStatus); return result; } PageInfo<ProcessDefinitionLog> pageInfo = new PageInfo<>(pageNo, pageSize); Page<ProcessDefinitionLog> page = new Page<>(pageNo, pageSize); IPage<ProcessDefinitionLog> processDefinitionVersionsPaging = processDefinitionLogMapper.queryProcessDefinitionVersionsPaging(page, code, projectCode); List<ProcessDefinitionLog> processDefinitionLogs = processDefinitionVersionsPaging.getRecords(); pageInfo.setTotalList(processDefinitionLogs); pageInfo.setTotal((int) processDefinitionVersionsPaging.getTotal()); result.setData(pageInfo); putMsg(result, Status.SUCCESS); return result; } /** * delete one certain process definition by version number and process definition code * * @param loginUser login user info to check auth * @param projectCode project code
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
* @param code process definition code * @param version version number * @return delete result code */ @Override @Transactional(rollbackFor = RuntimeException.class) public Map<String, Object> deleteProcessDefinitionVersion(User loginUser, long projectCode, long code, int version) { Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(code); if (processDefinition == null || projectCode != processDefinition.getProjectCode()) { putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(code)); } else { if (processDefinition.getVersion() == version) { putMsg(result, Status.MAIN_TABLE_USING_VERSION); return result; } int deleteLog = processDefinitionLogMapper.deleteByProcessDefinitionCodeAndVersion(code, version); int deleteRelationLog = processTaskRelationLogMapper.deleteByCode(code, version); if (deleteLog == 0 || deleteRelationLog == 0) { putMsg(result, Status.DELETE_PROCESS_DEFINE_BY_CODE_ERROR); throw new ServiceException(Status.DELETE_PROCESS_DEFINE_BY_CODE_ERROR); } putMsg(result, Status.SUCCESS); } return result;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
} /** * create empty process definition * * @param loginUser login user * @param projectCode project code * @param name process definition name * @param description description * @param globalParams globalParams * @param timeout timeout * @param tenantCode tenantCode * @param scheduleJson scheduleJson * @return process definition code */ @Override @Transactional(rollbackFor = RuntimeException.class) public Map<String, Object> createEmptyProcessDefinition(User loginUser, long projectCode, String name, String description, String globalParams, int timeout, String tenantCode, String scheduleJson, ProcessExecutionTypeEnum executionType) { Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
} ProcessDefinition definition = processDefinitionMapper.verifyByDefineName(project.getCode(), name); if (definition != null) { putMsg(result, Status.PROCESS_DEFINITION_NAME_EXIST, name); return result; } int tenantId = -1; if (!Constants.DEFAULT.equals(tenantCode)) { Tenant tenant = tenantMapper.queryByTenantCode(tenantCode); if (tenant == null) { putMsg(result, Status.TENANT_NOT_EXIST); return result; } tenantId = tenant.getId(); } long processDefinitionCode; try { processDefinitionCode = CodeGenerateUtils.getInstance().genCode(); } catch (CodeGenerateException e) { putMsg(result, Status.INTERNAL_SERVER_ERROR_ARGS); return result; } ProcessDefinition processDefinition = new ProcessDefinition(projectCode, name, processDefinitionCode, description, globalParams, "", timeout, loginUser.getId(), tenantId); processDefinition.setExecutionType(executionType); result = createEmptyDagDefine(loginUser, processDefinition); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
if (StringUtils.isBlank(scheduleJson)) { return result; } Map<String, Object> scheduleResult = createDagSchedule(loginUser, processDefinition, scheduleJson); if (scheduleResult.get(Constants.STATUS) != Status.SUCCESS) { Status scheduleResultStatus = (Status) scheduleResult.get(Constants.STATUS); putMsg(result, scheduleResultStatus); throw new ServiceException(scheduleResultStatus); } return result; } private Map<String, Object> createEmptyDagDefine(User loginUser, ProcessDefinition processDefinition) { Map<String, Object> result = new HashMap<>(); int insertVersion = processService.saveProcessDefine(loginUser, processDefinition, Boolean.TRUE, Boolean.TRUE); if (insertVersion == 0) { putMsg(result, Status.CREATE_PROCESS_DEFINITION_ERROR); throw new ServiceException(Status.CREATE_PROCESS_DEFINITION_ERROR); } putMsg(result, Status.SUCCESS); result.put(Constants.DATA_LIST, processDefinition); return result; } private Map<String, Object> createDagSchedule(User loginUser, ProcessDefinition processDefinition, String scheduleJson) { Map<String, Object> result = new HashMap<>(); Schedule scheduleObj = JSONUtils.parseObject(scheduleJson, Schedule.class); if (scheduleObj == null) { putMsg(result, Status.DATA_IS_NOT_VALID, scheduleJson); throw new ServiceException(Status.DATA_IS_NOT_VALID); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
Date now = new Date(); scheduleObj.setProcessDefinitionCode(processDefinition.getCode()); if (DateUtils.differSec(scheduleObj.getStartTime(), scheduleObj.getEndTime()) == 0) { logger.warn("The start time must not be the same as the end"); putMsg(result, Status.SCHEDULE_START_TIME_END_TIME_SAME); return result; } if (!org.quartz.CronExpression.isValidExpression(scheduleObj.getCrontab())) { logger.error("{} verify failure", scheduleObj.getCrontab()); putMsg(result, Status.REQUEST_PARAMS_NOT_VALID_ERROR, scheduleObj.getCrontab()); return result; } scheduleObj.setWarningType(scheduleObj.getWarningType() == null ? WarningType.NONE : scheduleObj.getWarningType()); scheduleObj.setWarningGroupId(scheduleObj.getWarningGroupId() == 0 ? 1 : scheduleObj.getWarningGroupId()); scheduleObj.setFailureStrategy(scheduleObj.getFailureStrategy() == null ? FailureStrategy.CONTINUE : scheduleObj.getFailureStrategy()); scheduleObj.setCreateTime(now); scheduleObj.setUpdateTime(now); scheduleObj.setUserId(loginUser.getId()); scheduleObj.setReleaseState(ReleaseState.OFFLINE); scheduleObj.setProcessInstancePriority(scheduleObj.getProcessInstancePriority() == null ? Priority.MEDIUM : scheduleObj.getProcessInstancePriority()); scheduleObj.setWorkerGroup(scheduleObj.getWorkerGroup() == null ? "default" : scheduleObj.getWorkerGroup()); scheduleObj.setEnvironmentCode(scheduleObj.getEnvironmentCode() == null ? -1 : scheduleObj.getEnvironmentCode()); scheduleMapper.insert(scheduleObj); putMsg(result, Status.SUCCESS); result.put("scheduleId", scheduleObj.getId()); return result; } /** * update process definition basic info *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
* @param loginUser login user * @param projectCode project code * @param name process definition name * @param code process definition code * @param description description * @param globalParams globalParams * @param timeout timeout * @param tenantCode tenantCode * @param scheduleJson scheduleJson * @param executionType executionType * @return update result code */ @Override @Transactional(rollbackFor = RuntimeException.class) public Map<String, Object> updateProcessDefinitionBasicInfo(User loginUser, long projectCode, String name, long code, String description, String globalParams, int timeout, String tenantCode, String scheduleJson, ProcessExecutionTypeEnum executionType) { Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
int tenantId = -1; if (!Constants.DEFAULT.equals(tenantCode)) { Tenant tenant = tenantMapper.queryByTenantCode(tenantCode); if (tenant == null) { putMsg(result, Status.TENANT_NOT_EXIST); return result; } tenantId = tenant.getId(); } ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(code); if (processDefinition == null || projectCode != processDefinition.getProjectCode()) { putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(code)); return result; } if (processDefinition.getReleaseState() == ReleaseState.ONLINE) { putMsg(result, Status.PROCESS_DEFINE_NOT_ALLOWED_EDIT, processDefinition.getName()); return result; } if (!name.equals(processDefinition.getName())) { ProcessDefinition definition = processDefinitionMapper.verifyByDefineName(project.getCode(), name); if (definition != null) { putMsg(result, Status.PROCESS_DEFINITION_NAME_EXIST, name); return result; } } ProcessDefinition processDefinitionDeepCopy = JSONUtils.parseObject(JSONUtils.toJsonString(processDefinition), ProcessDefinition.class); processDefinition.set(projectCode, name, description, globalParams, "", timeout, tenantId);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
processDefinition.setExecutionType(executionType); List<ProcessTaskRelationLog> taskRelationList = processTaskRelationLogMapper.queryByProcessCodeAndVersion(processDefinition.getCode(), processDefinition.getVersion()); result = updateDagDefine(loginUser, taskRelationList, processDefinition, processDefinitionDeepCopy, Lists.newArrayList()); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } if (StringUtils.isBlank(scheduleJson)) { return result; } Map<String, Object> scheduleResult = updateDagSchedule(loginUser, projectCode, code, scheduleJson); if (scheduleResult.get(Constants.STATUS) != Status.SUCCESS) { Status scheduleResultStatus = (Status) scheduleResult.get(Constants.STATUS); putMsg(result, scheduleResultStatus); throw new ServiceException(scheduleResultStatus); } return result; } private Map<String, Object> updateDagSchedule(User loginUser, long projectCode, long processDefinitionCode, String scheduleJson) { Map<String, Object> result = new HashMap<>(); Schedule schedule = JSONUtils.parseObject(scheduleJson, Schedule.class); if (schedule == null) { putMsg(result, Status.DATA_IS_NOT_VALID, scheduleJson); throw new ServiceException(Status.DATA_IS_NOT_VALID); } FailureStrategy failureStrategy = schedule.getFailureStrategy() == null ? FailureStrategy.CONTINUE : schedule.getFailureStrategy();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
WarningType warningType = schedule.getWarningType() == null ? WarningType.NONE : schedule.getWarningType(); Priority processInstancePriority = schedule.getProcessInstancePriority() == null ? Priority.MEDIUM : schedule.getProcessInstancePriority(); int warningGroupId = schedule.getWarningGroupId() == 0 ? 1 : schedule.getWarningGroupId(); String workerGroup = schedule.getWorkerGroup() == null ? "default" : schedule.getWorkerGroup(); long environmentCode = schedule.getEnvironmentCode() == null ? -1 : schedule.getEnvironmentCode(); ScheduleParam param = new ScheduleParam(); param.setStartTime(schedule.getStartTime()); param.setEndTime(schedule.getEndTime()); param.setCrontab(schedule.getCrontab()); param.setTimezoneId(schedule.getTimezoneId()); return schedulerService.updateScheduleByProcessDefinitionCode( loginUser, projectCode, processDefinitionCode, JSONUtils.toJsonString(param), warningType, warningGroupId, failureStrategy, processInstancePriority, workerGroup, environmentCode); } /** * release process definition and schedule * * @param loginUser login user * @param projectCode project code * @param code process definition code * @param releaseState releaseState * @return update result code
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
*/ @Transactional(rollbackFor = RuntimeException.class) @Override public Map<String, Object> releaseWorkflowAndSchedule(User loginUser, long projectCode, long code, ReleaseState releaseState) { Project project = projectMapper.queryByCode(projectCode); Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode); if (result.get(Constants.STATUS) != Status.SUCCESS) { return result; } if (null == releaseState) { putMsg(result, Status.REQUEST_PARAMS_NOT_VALID_ERROR, RELEASESTATE); return result; } ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(code); if (processDefinition == null) { putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(code)); return result; } Schedule scheduleObj = scheduleMapper.queryByProcessDefinitionCode(code); if (scheduleObj == null) { putMsg(result, Status.SCHEDULE_CRON_NOT_EXISTS, "processDefinitionCode:" + code); return result; } switch (releaseState) { case ONLINE: List<ProcessTaskRelation> relationList = processService.findRelationByCode(code, processDefinition.getVersion()); if (CollectionUtils.isEmpty(relationList)) { putMsg(result, Status.PROCESS_DAG_IS_EMPTY);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,754
[BUG-BE] SUB_PROCESS Failed to view tree view
### 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 Cannot view tree view after SUB_PROCESS task runs ### What you expected to happen This task can view the tree view normally. ### How to reproduce create then run it ### 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/9754
https://github.com/apache/dolphinscheduler/pull/9755
de50f43de63e42488cb38169cd56fba77dd24fc6
ea002452b0a5b95f17354482f5375eab0930fa66
2022-04-25T08:20:21Z
java
2022-04-25T09:07:15Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
return result; } processDefinition.setReleaseState(releaseState); processDefinitionMapper.updateById(processDefinition); schedulerService.setScheduleState(loginUser, projectCode, scheduleObj.getId(), ReleaseState.ONLINE); break; case OFFLINE: processDefinition.setReleaseState(releaseState); int updateProcess = processDefinitionMapper.updateById(processDefinition); if (updateProcess > 0) { logger.info("set schedule offline, project code: {}, schedule id: {}, process definition code: {}", projectCode, scheduleObj.getId(), code); scheduleObj.setReleaseState(ReleaseState.OFFLINE); int updateSchedule = scheduleMapper.updateById(scheduleObj); if (updateSchedule == 0) { putMsg(result, Status.OFFLINE_SCHEDULE_ERROR); throw new ServiceException(Status.OFFLINE_SCHEDULE_ERROR); } schedulerService.deleteSchedule(project.getId(), scheduleObj.getId()); } break; default: putMsg(result, Status.REQUEST_PARAMS_NOT_VALID_ERROR, RELEASESTATE); return result; } putMsg(result, Status.SUCCESS); return result; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.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. */
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
package org.apache.dolphinscheduler.api.service.impl; import org.apache.dolphinscheduler.api.dto.EnvironmentDto; import org.apache.dolphinscheduler.api.enums.Status; import org.apache.dolphinscheduler.api.service.EnvironmentService; import org.apache.dolphinscheduler.api.utils.PageInfo; import org.apache.dolphinscheduler.api.utils.Result; import org.apache.dolphinscheduler.common.Constants; import org.apache.dolphinscheduler.common.utils.CodeGenerateUtils; import org.apache.dolphinscheduler.common.utils.CodeGenerateUtils.CodeGenerateException; import org.apache.dolphinscheduler.common.utils.JSONUtils; import org.apache.dolphinscheduler.dao.entity.Environment; import org.apache.dolphinscheduler.dao.entity.EnvironmentWorkerGroupRelation; import org.apache.dolphinscheduler.dao.entity.TaskDefinition; import org.apache.dolphinscheduler.dao.entity.User; import org.apache.dolphinscheduler.dao.mapper.EnvironmentMapper; import org.apache.dolphinscheduler.dao.mapper.EnvironmentWorkerGroupRelationMapper; import org.apache.dolphinscheduler.dao.mapper.TaskDefinitionMapper; import org.apache.commons.collections.CollectionUtils; import org.apache.commons.collections4.SetUtils; import org.apache.commons.lang.StringUtils; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.Set; import java.util.TreeSet; import java.util.stream.Collectors; import org.slf4j.Logger;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
import org.slf4j.LoggerFactory; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.fasterxml.jackson.core.type.TypeReference; /** * task definition service impl */ @Service public class EnvironmentServiceImpl extends BaseServiceImpl implements EnvironmentService { private static final Logger logger = LoggerFactory.getLogger(EnvironmentServiceImpl.class); @Autowired private EnvironmentMapper environmentMapper; @Autowired private EnvironmentWorkerGroupRelationMapper relationMapper; @Autowired private TaskDefinitionMapper taskDefinitionMapper; /** * create environment * * @param loginUser login user * @param name environment name * @param config environment config * @param desc environment desc * @param workerGroups worker groups
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
*/ @Transactional(rollbackFor = RuntimeException.class) @Override public Map<String, Object> createEnvironment(User loginUser, String name, String config, String desc, String workerGroups) { Map<String, Object> result = new HashMap<>(); if (isNotAdmin(loginUser, result)) { return result; } Map<String, Object> checkResult = checkParams(name,config,workerGroups); if (checkResult.get(Constants.STATUS) != Status.SUCCESS) { return checkResult; } Environment environment = environmentMapper.queryByEnvironmentName(name); if (environment != null) { putMsg(result, Status.ENVIRONMENT_NAME_EXISTS, name); return result; } Environment env = new Environment(); env.setName(name); env.setConfig(config); env.setDescription(desc); env.setOperator(loginUser.getId()); env.setCreateTime(new Date()); env.setUpdateTime(new Date()); long code = 0L; try { code = CodeGenerateUtils.getInstance().genCode(); env.setCode(code); } catch (CodeGenerateException e) { logger.error("Environment code get error, ", e);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
} if (code == 0L) { putMsg(result, Status.INTERNAL_SERVER_ERROR_ARGS, "Error generating environment code"); return result; } if (environmentMapper.insert(env) > 0) { if (!StringUtils.isEmpty(workerGroups)) { List<String> workerGroupList = JSONUtils.parseObject(workerGroups, new TypeReference<List<String>>(){}); if (CollectionUtils.isNotEmpty(workerGroupList)) { workerGroupList.stream().forEach(workerGroup -> { if (!StringUtils.isEmpty(workerGroup)) { EnvironmentWorkerGroupRelation relation = new EnvironmentWorkerGroupRelation(); relation.setEnvironmentCode(env.getCode()); relation.setWorkerGroup(workerGroup); relation.setOperator(loginUser.getId()); relation.setCreateTime(new Date()); relation.setUpdateTime(new Date()); relationMapper.insert(relation); } }); } } result.put(Constants.DATA_LIST, env.getCode()); putMsg(result, Status.SUCCESS); } else { putMsg(result, Status.CREATE_ENVIRONMENT_ERROR); } return result; } /**
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
* query environment paging * * @param pageNo page number * @param searchVal search value * @param pageSize page size * @return environment list page */ @Override public Result queryEnvironmentListPaging(Integer pageNo, Integer pageSize, String searchVal) { Result result = new Result(); Page<Environment> page = new Page<>(pageNo, pageSize); IPage<Environment> environmentIPage = environmentMapper.queryEnvironmentListPaging(page, searchVal); PageInfo<EnvironmentDto> pageInfo = new PageInfo<>(pageNo, pageSize); pageInfo.setTotal((int) environmentIPage.getTotal()); if (CollectionUtils.isNotEmpty(environmentIPage.getRecords())) { Map<Long, List<String>> relationMap = relationMapper.selectList(null).stream() .collect(Collectors.groupingBy(EnvironmentWorkerGroupRelation::getEnvironmentCode,Collectors.mapping(EnvironmentWorkerGroupRelation::getWorkerGroup,Collectors.toList()))); List<EnvironmentDto> dtoList = environmentIPage.getRecords().stream().map(environment -> { EnvironmentDto dto = new EnvironmentDto(); BeanUtils.copyProperties(environment,dto); List<String> workerGroups = relationMap.getOrDefault(environment.getCode(),new ArrayList<String>()); dto.setWorkerGroups(workerGroups); return dto; }).collect(Collectors.toList()); pageInfo.setTotalList(dtoList); } else { pageInfo.setTotalList(new ArrayList<>()); } result.setData(pageInfo); putMsg(result, Status.SUCCESS);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
return result; } /** * query all environment * * @return all environment list */ @Override public Map<String, Object> queryAllEnvironmentList() { Map<String,Object> result = new HashMap<>(); List<Environment> environmentList = environmentMapper.queryAllEnvironmentList(); if (CollectionUtils.isNotEmpty(environmentList)) { Map<Long, List<String>> relationMap = relationMapper.selectList(null).stream() .collect(Collectors.groupingBy(EnvironmentWorkerGroupRelation::getEnvironmentCode,Collectors.mapping(EnvironmentWorkerGroupRelation::getWorkerGroup,Collectors.toList()))); List<EnvironmentDto> dtoList = environmentList.stream().map(environment -> { EnvironmentDto dto = new EnvironmentDto(); BeanUtils.copyProperties(environment,dto); List<String> workerGroups = relationMap.getOrDefault(environment.getCode(),new ArrayList<String>()); dto.setWorkerGroups(workerGroups); return dto; }).collect(Collectors.toList()); result.put(Constants.DATA_LIST,dtoList); } else { result.put(Constants.DATA_LIST, new ArrayList<>()); } putMsg(result,Status.SUCCESS); return result; } /** * query environment
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
* * @param code environment code */ @Override public Map<String, Object> queryEnvironmentByCode(Long code) { Map<String, Object> result = new HashMap<>(); Environment env = environmentMapper.queryByEnvironmentCode(code); if (env == null) { putMsg(result, Status.QUERY_ENVIRONMENT_BY_CODE_ERROR, code); } else { List<String> workerGroups = relationMapper.queryByEnvironmentCode(env.getCode()).stream() .map(item -> item.getWorkerGroup()) .collect(Collectors.toList()); EnvironmentDto dto = new EnvironmentDto(); BeanUtils.copyProperties(env,dto); dto.setWorkerGroups(workerGroups); result.put(Constants.DATA_LIST, dto); putMsg(result, Status.SUCCESS); } return result; } /** * query environment * * @param name environment name */ @Override public Map<String, Object> queryEnvironmentByName(String name) { Map<String, Object> result = new HashMap<>(); Environment env = environmentMapper.queryByEnvironmentName(name);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
if (env == null) { putMsg(result, Status.QUERY_ENVIRONMENT_BY_NAME_ERROR, name); } else { List<String> workerGroups = relationMapper.queryByEnvironmentCode(env.getCode()).stream() .map(item -> item.getWorkerGroup()) .collect(Collectors.toList()); EnvironmentDto dto = new EnvironmentDto(); BeanUtils.copyProperties(env,dto); dto.setWorkerGroups(workerGroups); result.put(Constants.DATA_LIST, dto); putMsg(result, Status.SUCCESS); } return result; } /** * delete environment * * @param loginUser login user * @param code environment code */ @Transactional(rollbackFor = RuntimeException.class) @Override public Map<String, Object> deleteEnvironmentByCode(User loginUser, Long code) { Map<String, Object> result = new HashMap<>(); if (isNotAdmin(loginUser, result)) { return result; } Integer relatedTaskNumber = taskDefinitionMapper .selectCount(new QueryWrapper<TaskDefinition>().lambda().eq(TaskDefinition::getEnvironmentCode,code)); if (relatedTaskNumber > 0) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
putMsg(result, Status.DELETE_ENVIRONMENT_RELATED_TASK_EXISTS); return result; } int delete = environmentMapper.deleteByCode(code); if (delete > 0) { relationMapper.delete(new QueryWrapper<EnvironmentWorkerGroupRelation>() .lambda() .eq(EnvironmentWorkerGroupRelation::getEnvironmentCode,code)); putMsg(result, Status.SUCCESS); } else { putMsg(result, Status.DELETE_ENVIRONMENT_ERROR); } return result; } /** * update environment * * @param loginUser login user * @param code environment code * @param name environment name * @param config environment config * @param desc environment desc * @param workerGroups worker groups */ @Transactional(rollbackFor = RuntimeException.class) @Override public Map<String, Object> updateEnvironmentByCode(User loginUser, Long code, String name, String config, String desc, String workerGroups) { Map<String, Object> result = new HashMap<>(); if (isNotAdmin(loginUser, result)) { return result;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
} Map<String, Object> checkResult = checkParams(name,config,workerGroups); if (checkResult.get(Constants.STATUS) != Status.SUCCESS) { return checkResult; } Environment environment = environmentMapper.queryByEnvironmentName(name); if (environment != null && !environment.getCode().equals(code)) { putMsg(result, Status.ENVIRONMENT_NAME_EXISTS, name); return result; } Set<String> workerGroupSet; if (!StringUtils.isEmpty(workerGroups)) { workerGroupSet = JSONUtils.parseObject(workerGroups, new TypeReference<Set<String>>() {}); } else { workerGroupSet = new TreeSet<>(); } Set<String> existWorkerGroupSet = relationMapper .queryByEnvironmentCode(code) .stream() .map(item -> item.getWorkerGroup()) .collect(Collectors.toSet()); Set<String> deleteWorkerGroupSet = SetUtils.difference(existWorkerGroupSet,workerGroupSet).toSet(); Set<String> addWorkerGroupSet = SetUtils.difference(workerGroupSet,existWorkerGroupSet).toSet(); checkResult = checkUsedEnvironmentWorkerGroupRelation(deleteWorkerGroupSet, name, code); if (checkResult.get(Constants.STATUS) != Status.SUCCESS) { return checkResult; } Environment env = new Environment(); env.setCode(code);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
env.setName(name); env.setConfig(config); env.setDescription(desc); env.setOperator(loginUser.getId()); env.setUpdateTime(new Date()); int update = environmentMapper.update(env, new UpdateWrapper<Environment>().lambda().eq(Environment::getCode, code)); if (update > 0) { deleteWorkerGroupSet.stream().forEach(key -> { if (StringUtils.isNotEmpty(key)) { relationMapper.delete(new QueryWrapper<EnvironmentWorkerGroupRelation>() .lambda() .eq(EnvironmentWorkerGroupRelation::getEnvironmentCode, code) .eq(EnvironmentWorkerGroupRelation::getWorkerGroup, key)); } }); addWorkerGroupSet.stream().forEach(key -> { if (StringUtils.isNotEmpty(key)) { EnvironmentWorkerGroupRelation relation = new EnvironmentWorkerGroupRelation(); relation.setEnvironmentCode(code); relation.setWorkerGroup(key); relation.setUpdateTime(new Date()); relation.setCreateTime(new Date()); relation.setOperator(loginUser.getId()); relationMapper.insert(relation); } }); putMsg(result, Status.SUCCESS); } else { putMsg(result, Status.UPDATE_ENVIRONMENT_ERROR, name); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
return result; } /** * verify environment name * * @param environmentName environment name * @return true if the environment name not exists, otherwise return false */ @Override public Map<String, Object> verifyEnvironment(String environmentName) { Map<String, Object> result = new HashMap<>(); if (StringUtils.isEmpty(environmentName)) { putMsg(result, Status.ENVIRONMENT_NAME_IS_NULL); return result; } Environment environment = environmentMapper.queryByEnvironmentName(environmentName); if (environment != null) { putMsg(result, Status.ENVIRONMENT_NAME_EXISTS, environmentName); return result; } result.put(Constants.STATUS, Status.SUCCESS); return result; } private Map<String, Object> checkUsedEnvironmentWorkerGroupRelation(Set<String> deleteKeySet,String environmentName, Long environmentCode) { Map<String, Object> result = new HashMap<>(); for (String workerGroup : deleteKeySet) { TaskDefinition taskDefinition = taskDefinitionMapper .selectOne(new QueryWrapper<TaskDefinition>().lambda() .eq(TaskDefinition::getEnvironmentCode,environmentCode) .eq(TaskDefinition::getWorkerGroup,workerGroup));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,751
[BUG-BE][Env Manage] Env Manage update failed
### 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 update env failed ### What you expected to happen update env failed ### How to reproduce ![image](https://user-images.githubusercontent.com/36755957/165038233-6afbc0e9-6e04-476d-b23a-7c1c2a61da5d.png) ![image](https://user-images.githubusercontent.com/36755957/165038262-6d6c2be0-dd84-4b31-aab3-b4c17fdb98e5.png) ### 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/9751
https://github.com/apache/dolphinscheduler/pull/9752
45b4445e121cc4f0da9e29935830f04cb3d1589b
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
2022-04-25T07:11:31Z
java
2022-04-25T09:46:36Z
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/EnvironmentServiceImpl.java
if (Objects.nonNull(taskDefinition)) { putMsg(result, Status.UPDATE_ENVIRONMENT_WORKER_GROUP_RELATION_ERROR,workerGroup,environmentName,taskDefinition.getName()); return result; } } result.put(Constants.STATUS, Status.SUCCESS); return result; } public Map<String, Object> checkParams(String name, String config, String workerGroups) { Map<String, Object> result = new HashMap<>(); if (StringUtils.isEmpty(name)) { putMsg(result, Status.ENVIRONMENT_NAME_IS_NULL); return result; } if (StringUtils.isEmpty(config)) { putMsg(result, Status.ENVIRONMENT_CONFIG_IS_NULL); return result; } if (!StringUtils.isEmpty(workerGroups)) { List<String> workerGroupList = JSONUtils.parseObject(workerGroups, new TypeReference<List<String>>(){}); if (Objects.isNull(workerGroupList)) { putMsg(result, Status.ENVIRONMENT_WORKER_GROUPS_IS_INVALID); return result; } } result.put(Constants.STATUS, Status.SUCCESS); return result; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,757
[BUG-BE] SUB_PROCESSS cannot view the log properly.
### 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 The SUB_PROCESS task is tested and works fine. However, going into the workflow details and viewing the node's log messages reports an exception. ### What you expected to happen The SUB_PROCESS task log can be viewed normally. ### How to reproduce Successfully execute a subtask component task and view its log ### 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/9757
https://github.com/apache/dolphinscheduler/pull/9758
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
897d7cb5558b581c9fc33e3faef3cefeb996f69d
2022-04-25T09:30:25Z
java
2022-04-25T10:17:48Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/SubTaskProcessor.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.server.master.runner.task; import com.fasterxml.jackson.core.type.TypeReference;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,757
[BUG-BE] SUB_PROCESSS cannot view the log properly.
### 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 The SUB_PROCESS task is tested and works fine. However, going into the workflow details and viewing the node's log messages reports an exception. ### What you expected to happen The SUB_PROCESS task log can be viewed normally. ### How to reproduce Successfully execute a subtask component task and view its log ### 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/9757
https://github.com/apache/dolphinscheduler/pull/9758
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
897d7cb5558b581c9fc33e3faef3cefeb996f69d
2022-04-25T09:30:25Z
java
2022-04-25T10:17:48Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/SubTaskProcessor.java
import com.google.auto.service.AutoService; import org.apache.commons.lang.StringUtils; import org.apache.dolphinscheduler.common.utils.JSONUtils; import org.apache.dolphinscheduler.dao.entity.ProcessInstance; import org.apache.dolphinscheduler.plugin.task.api.enums.Direct; import org.apache.dolphinscheduler.plugin.task.api.enums.ExecutionStatus; import org.apache.dolphinscheduler.plugin.task.api.enums.TaskTimeoutStrategy; import org.apache.dolphinscheduler.plugin.task.api.model.Property; import org.apache.dolphinscheduler.remote.command.StateEventChangeCommand; import org.apache.dolphinscheduler.remote.processor.StateEventCallbackService; import org.apache.dolphinscheduler.server.utils.LogUtils; import org.apache.dolphinscheduler.service.bean.SpringApplicationContext; import java.util.Date; import java.util.List; import java.util.Map; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; import java.util.stream.Collectors; import static org.apache.dolphinscheduler.common.Constants.LOCAL_PARAMS; import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.TASK_TYPE_SUB_PROCESS; /** * subtask processor */ @AutoService(ITaskProcessor.class) public class SubTaskProcessor extends BaseTaskProcessor { private ProcessInstance subProcessInstance = null; /** * run lock */ private final Lock runLock = new ReentrantLock();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,757
[BUG-BE] SUB_PROCESSS cannot view the log properly.
### 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 The SUB_PROCESS task is tested and works fine. However, going into the workflow details and viewing the node's log messages reports an exception. ### What you expected to happen The SUB_PROCESS task log can be viewed normally. ### How to reproduce Successfully execute a subtask component task and view its log ### 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/9757
https://github.com/apache/dolphinscheduler/pull/9758
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
897d7cb5558b581c9fc33e3faef3cefeb996f69d
2022-04-25T09:30:25Z
java
2022-04-25T10:17:48Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/SubTaskProcessor.java
private StateEventCallbackService stateEventCallbackService = SpringApplicationContext.getBean(StateEventCallbackService.class); @Override public boolean submitTask() { this.taskInstance = processService.submitTaskWithRetry(processInstance, taskInstance, maxRetryTimes, commitInterval); if (this.taskInstance == null) { return false; } this.setTaskExecutionLogger(); taskInstance.setLogPath(LogUtils.getTaskLogPath(taskInstance.getFirstSubmitTime(), processInstance.getProcessDefinitionCode(), processInstance.getProcessDefinitionVersion(), taskInstance.getProcessInstanceId(), taskInstance.getId())); return true; } @Override public boolean runTask() { try { this.runLock.lock(); if (setSubWorkFlow()) { updateTaskState(); } } catch (Exception e) { logger.error("work flow {} sub task {} exceptions", this.processInstance.getId(), this.taskInstance.getId(), e); } finally { this.runLock.unlock(); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,757
[BUG-BE] SUB_PROCESSS cannot view the log properly.
### 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 The SUB_PROCESS task is tested and works fine. However, going into the workflow details and viewing the node's log messages reports an exception. ### What you expected to happen The SUB_PROCESS task log can be viewed normally. ### How to reproduce Successfully execute a subtask component task and view its log ### 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/9757
https://github.com/apache/dolphinscheduler/pull/9758
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
897d7cb5558b581c9fc33e3faef3cefeb996f69d
2022-04-25T09:30:25Z
java
2022-04-25T10:17:48Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/SubTaskProcessor.java
return true; } @Override protected boolean dispatchTask() { return true; } @Override protected boolean taskTimeout() { TaskTimeoutStrategy taskTimeoutStrategy = taskInstance.getTaskDefine().getTimeoutNotifyStrategy(); if (TaskTimeoutStrategy.FAILED != taskTimeoutStrategy && TaskTimeoutStrategy.WARNFAILED != taskTimeoutStrategy) { return true; } logger.info("sub process task {} timeout, strategy {} ", taskInstance.getId(), taskTimeoutStrategy.getDescp()); killTask(); return true; } private void updateTaskState() { subProcessInstance = processService.findSubProcessInstance(processInstance.getId(), taskInstance.getId()); logger.info("work flow {} task {}, sub work flow: {} state: {}", this.processInstance.getId(), this.taskInstance.getId(), subProcessInstance.getId(), subProcessInstance.getState().getDescp()); if (subProcessInstance != null && subProcessInstance.getState().typeIsFinished()) { taskInstance.setState(subProcessInstance.getState()); taskInstance.setEndTime(new Date()); dealFinish(); processService.saveTaskInstance(taskInstance);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,757
[BUG-BE] SUB_PROCESSS cannot view the log properly.
### 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 The SUB_PROCESS task is tested and works fine. However, going into the workflow details and viewing the node's log messages reports an exception. ### What you expected to happen The SUB_PROCESS task log can be viewed normally. ### How to reproduce Successfully execute a subtask component task and view its log ### 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/9757
https://github.com/apache/dolphinscheduler/pull/9758
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
897d7cb5558b581c9fc33e3faef3cefeb996f69d
2022-04-25T09:30:25Z
java
2022-04-25T10:17:48Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/SubTaskProcessor.java
} } /** * get the params from subProcessInstance to this subProcessTask */ private void dealFinish() { String thisTaskInstanceVarPool = taskInstance.getVarPool(); if (StringUtils.isNotEmpty(thisTaskInstanceVarPool)) { String subProcessInstanceVarPool = subProcessInstance.getVarPool(); if (StringUtils.isNotEmpty(subProcessInstanceVarPool)) { List<Property> varPoolProperties = JSONUtils.toList(thisTaskInstanceVarPool, Property.class); Map<String, Object> taskParams = JSONUtils.parseObject(taskInstance.getTaskParams(), new TypeReference<Map<String, Object>>() { }); Object localParams = taskParams.get(LOCAL_PARAMS); if (localParams != null) { List<Property> properties = JSONUtils.toList(JSONUtils.toJsonString(localParams), Property.class); Map<String, String> subProcessParam = JSONUtils.toList(subProcessInstanceVarPool, Property.class).stream() .collect(Collectors.toMap(Property::getProp, Property::getValue)); List<Property> outProperties = properties.stream().filter(r -> Direct.OUT == r.getDirect()).collect(Collectors.toList()); for (Property info : outProperties) { info.setValue(subProcessParam.get(info.getProp())); varPoolProperties.add(info); } taskInstance.setVarPool(JSONUtils.toJsonString(varPoolProperties)); processService.changeOutParam(taskInstance); } } } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,757
[BUG-BE] SUB_PROCESSS cannot view the log properly.
### 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 The SUB_PROCESS task is tested and works fine. However, going into the workflow details and viewing the node's log messages reports an exception. ### What you expected to happen The SUB_PROCESS task log can be viewed normally. ### How to reproduce Successfully execute a subtask component task and view its log ### 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/9757
https://github.com/apache/dolphinscheduler/pull/9758
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
897d7cb5558b581c9fc33e3faef3cefeb996f69d
2022-04-25T09:30:25Z
java
2022-04-25T10:17:48Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/SubTaskProcessor.java
@Override protected boolean pauseTask() { pauseSubWorkFlow(); return true; } private boolean pauseSubWorkFlow() { ProcessInstance subProcessInstance = processService.findSubProcessInstance(processInstance.getId(), taskInstance.getId()); if (subProcessInstance == null || taskInstance.getState().typeIsFinished()) { return false; } subProcessInstance.setState(ExecutionStatus.READY_PAUSE); processService.updateProcessInstance(subProcessInstance); sendToSubProcess(); return true; } private boolean setSubWorkFlow() { logger.info("set work flow {} task {} running", this.processInstance.getId(), this.taskInstance.getId()); if (this.subProcessInstance != null) { return true; } subProcessInstance = processService.findSubProcessInstance(processInstance.getId(), taskInstance.getId()); if (subProcessInstance == null || taskInstance.getState().typeIsFinished()) { return false; } taskInstance.setState(ExecutionStatus.RUNNING_EXECUTION); taskInstance.setStartTime(new Date()); processService.updateTaskInstance(taskInstance); logger.info("set sub work flow {} task {} state: {}",
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,757
[BUG-BE] SUB_PROCESSS cannot view the log properly.
### 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 The SUB_PROCESS task is tested and works fine. However, going into the workflow details and viewing the node's log messages reports an exception. ### What you expected to happen The SUB_PROCESS task log can be viewed normally. ### How to reproduce Successfully execute a subtask component task and view its log ### 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/9757
https://github.com/apache/dolphinscheduler/pull/9758
8b3984b20e1e68b8c082693c6a7a8e0f39e82753
897d7cb5558b581c9fc33e3faef3cefeb996f69d
2022-04-25T09:30:25Z
java
2022-04-25T10:17:48Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/SubTaskProcessor.java
processInstance.getId(), taskInstance.getId(), taskInstance.getState()); return true; } @Override protected boolean killTask() { ProcessInstance subProcessInstance = processService.findSubProcessInstance(processInstance.getId(), taskInstance.getId()); if (subProcessInstance == null || taskInstance.getState().typeIsFinished()) { return false; } subProcessInstance.setState(ExecutionStatus.READY_STOP); processService.updateProcessInstance(subProcessInstance); sendToSubProcess(); return true; } private void sendToSubProcess() { StateEventChangeCommand stateEventChangeCommand = new StateEventChangeCommand( processInstance.getId(), taskInstance.getId(), subProcessInstance.getState(), subProcessInstance.getId(), 0 ); String address = subProcessInstance.getHost().split(":")[0]; int port = Integer.parseInt(subProcessInstance.getHost().split(":")[1]); this.stateEventCallbackService.sendResult(address, port, stateEventChangeCommand.convert2Command()); } @Override public String getType() { return TASK_TYPE_SUB_PROCESS; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.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.dao.mapper; import org.apache.dolphinscheduler.dao.entity.ExecuteStatusCount; import org.apache.dolphinscheduler.dao.entity.ProcessInstance; import org.apache.dolphinscheduler.plugin.task.api.enums.ExecutionStatus; import org.apache.ibatis.annotations.Param; import java.util.Date; import java.util.List; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; /** * process instance mapper interface */ public interface ProcessInstanceMapper extends BaseMapper<ProcessInstance> {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.java
/** * query process instance detail info by id * * @param processId processId * @return process instance */ ProcessInstance queryDetailById(@Param("processId") int processId); /** * query process instance by host and stateArray * * @param host host * @param stateArray stateArray * @return process instance list */ List<ProcessInstance> queryByHostAndStatus(@Param("host") String host, @Param("states") int[] stateArray); /** * query process instance host by stateArray * @param stateArray * @return
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.java
*/ List<String> queryNeedFailoverProcessInstanceHost(@Param("states") int[] stateArray); /** * query process instance by tenantId and stateArray * * @param tenantId tenantId * @param states states array * @return process instance list */ List<ProcessInstance> queryByTenantIdAndStatus(@Param("tenantId") int tenantId, @Param("states") int[] states); /** * @param workerGroupName workerGroupName * @param states states array * @return process instance list */ List<ProcessInstance> queryByWorkerGroupNameAndStatus(@Param("workerGroupName") String workerGroupName, @Param("states") int[] states); /** * process instance page * @param page page * @param projectId projectId * @param processDefinitionId processDefinitionId * @param searchVal searchVal * @param executorId executorId * @param statusArray statusArray * @param host host * @param startTime startTime * @param endTime endTime * @return process instance IPage
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.java
*/ /** * process instance page * * @param page page * @param projectCode projectCode * @param processDefinitionCode processDefinitionCode * @param searchVal searchVal * @param executorId executorId * @param statusArray statusArray * @param host host * @param startTime startTime * @param endTime endTime * @return process instance page */ IPage<ProcessInstance> queryProcessInstanceListPaging(Page<ProcessInstance> page, @Param("projectCode") Long projectCode, @Param("processDefinitionCode") Long processDefinitionCode, @Param("searchVal") String searchVal, @Param("executorId") Integer executorId, @Param("states") int[] statusArray, @Param("host") String host, @Param("startTime") Date startTime, @Param("endTime") Date endTime); /** * set failover by host and state array * * @param host host * @param stateArray stateArray * @return set result
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.java
*/ int setFailoverByHostAndStateArray(@Param("host") String host, @Param("states") int[] stateArray); /** * update process instance by state * * @param originState originState * @param destState destState * @return update result */ int updateProcessInstanceByState(@Param("originState") ExecutionStatus originState, @Param("destState") ExecutionStatus destState); /** * update process instance by tenantId * * @param originTenantId originTenantId * @param destTenantId destTenantId * @return update result */ int updateProcessInstanceByTenantId(@Param("originTenantId") int originTenantId, @Param("destTenantId") int destTenantId); /** * update process instance by worker groupId * * @param originWorkerGroupName originWorkerGroupName * @param destWorkerGroupName destWorkerGroupName * @return update result */ int updateProcessInstanceByWorkerGroupName(@Param("originWorkerGroupName") String originWorkerGroupName, @Param("destWorkerGroupName") String destWorkerGroupName);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.java
/** * Statistics process instance state by given project codes list * <p> * We only need project codes to determine whether the process instance belongs to the user or not. * * @param startTime startTime * @param endTime endTime * @param projectCodes projectCodes * @return ExecuteStatusCount list */ List<ExecuteStatusCount> countInstanceStateByProjectCodes( @Param("startTime") Date startTime, @Param("endTime") Date endTime, @Param("projectCodes") Long[] projectCodes); /** * query process instance by processDefinitionCode * * @param processDefinitionCode processDefinitionCode * @param size size * @return process instance list */ List<ProcessInstance> queryByProcessDefineCode(@Param("processDefinitionCode") Long processDefinitionCode, @Param("size") int size); /** * query last scheduler process instance * * @param definitionCode definitionCode * @param startTime startTime * @param endTime endTime * @return process instance
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.java
*/ ProcessInstance queryLastSchedulerProcess(@Param("processDefinitionCode") Long definitionCode, @Param("startTime") Date startTime, @Param("endTime") Date endTime); /** * query last running process instance * * @param definitionCode definitionCode * @param startTime startTime * @param endTime endTime * @param stateArray stateArray * @return process instance */ ProcessInstance queryLastRunningProcess(@Param("processDefinitionCode") Long definitionCode, @Param("startTime") Date startTime, @Param("endTime") Date endTime, @Param("states") int[] stateArray); /** * query last manual process instance * * @param definitionCode definitionCode * @param startTime startTime * @param endTime endTime * @return process instance */ ProcessInstance queryLastManualProcess(@Param("processDefinitionCode") Long definitionCode, @Param("startTime") Date startTime, @Param("endTime") Date endTime); /** * query top n process instance order by running duration
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.java
* * @param size size * @param startTime start time * @param startTime end time * @param status process instance status * @param projectCode project code * @return ProcessInstance list */ List<ProcessInstance> queryTopNProcessInstance(@Param("size") int size, @Param("startTime") Date startTime, @Param("endTime") Date endTime, @Param("status") ExecutionStatus status, @Param("projectCode") long projectCode); /** * query process instance by processDefinitionCode and stateArray * * @param processDefinitionCode processDefinitionCode * @param states states array * @return process instance list */ List<ProcessInstance> queryByProcessDefineCodeAndStatus(@Param("processDefinitionCode") Long processDefinitionCode, @Param("states") int[] states); List<ProcessInstance> queryByProcessDefineCodeAndStatusAndNextId(@Param("processDefinitionCode") Long processDefinitionCode, @Param("states") int[] states, @Param("id") int id); int updateGlobalParamsById(@Param("globalParams") String globalParams, @Param("id") int id); boolean updateNextProcessIdById(@Param("thisInstanceId") int thisInstanceId, @Param("runningInstanceId") int runningInstanceId); ProcessInstance loadNextProcess4Serial(@Param("processDefinitionCode") Long processDefinitionCode, @Param("state") int state); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
/* * Lcensed to the Apache Software Foundaton (ASF) under one or more * contrbutor lcense agreements. See the NOTICE fle dstrbuted wth * ths work for addtonal nformaton regardng copyrght ownershp.
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
* The ASF lcenses ths fle to You under the Apache Lcense, Verson 2.0 * (the "Lcense"); you may not use ths fle except n complance wth * the Lcense. You may obtan a copy of the Lcense at * * http://www.apache.org/lcenses/LICENSE-2.0 * * Unless requred by applcable law or agreed to n wrtng, software * dstrbuted under the Lcense s dstrbuted on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, ether express or mpled. * See the Lcense for the specfc language governng permssons and * lmtatons under the Lcense. */ package org.apache.dolphnscheduler.server.master.runner; mport statc org.apache.dolphnscheduler.common.Constants.CMDPARAM_COMPLEMENT_DATA_END_DATE; mport statc org.apache.dolphnscheduler.common.Constants.CMDPARAM_COMPLEMENT_DATA_START_DATE; mport statc org.apache.dolphnscheduler.common.Constants.CMD_PARAM_RECOVERY_START_NODE_STRING; mport statc org.apache.dolphnscheduler.common.Constants.CMD_PARAM_RECOVER_PROCESS_ID_STRING; mport statc org.apache.dolphnscheduler.common.Constants.CMD_PARAM_START_NODES; mport statc org.apache.dolphnscheduler.common.Constants.DEFAULT_WORKER_GROUP; mport statc org.apache.dolphnscheduler.plugn.task.ap.TaskConstants.TASK_TYPE_BLOCKING; mport org.apache.dolphnscheduler.common.Constants; mport org.apache.dolphnscheduler.common.enums.CommandType; mport org.apache.dolphnscheduler.common.enums.FalureStrategy; mport org.apache.dolphnscheduler.common.enums.Flag; mport org.apache.dolphnscheduler.common.enums.Prorty; mport org.apache.dolphnscheduler.common.enums.StateEvent; mport org.apache.dolphnscheduler.common.enums.StateEventType; mport org.apache.dolphnscheduler.common.enums.TaskDependType; mport org.apache.dolphnscheduler.common.enums.TaskGroupQueueStatus; mport org.apache.dolphnscheduler.common.enums.TmeoutFlag;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
mport org.apache.dolphnscheduler.common.graph.DAG; mport org.apache.dolphnscheduler.common.model.TaskNode; mport org.apache.dolphnscheduler.common.model.TaskNodeRelaton; mport org.apache.dolphnscheduler.common.process.ProcessDag; mport org.apache.dolphnscheduler.common.utls.DateUtls; mport org.apache.dolphnscheduler.common.utls.JSONUtls; mport org.apache.dolphnscheduler.common.utls.NetUtls; mport org.apache.dolphnscheduler.common.utls.ParameterUtls; mport org.apache.dolphnscheduler.dao.entty.Command; mport org.apache.dolphnscheduler.dao.entty.Envronment; mport org.apache.dolphnscheduler.dao.entty.ProcessDefnton; mport org.apache.dolphnscheduler.dao.entty.ProcessInstance; mport org.apache.dolphnscheduler.dao.entty.ProcessTaskRelaton; mport org.apache.dolphnscheduler.dao.entty.ProjectUser; mport org.apache.dolphnscheduler.dao.entty.Schedule; mport org.apache.dolphnscheduler.dao.entty.TaskDefntonLog; mport org.apache.dolphnscheduler.dao.entty.TaskGroupQueue; mport org.apache.dolphnscheduler.dao.entty.TaskInstance; mport org.apache.dolphnscheduler.dao.utls.DagHelper; mport org.apache.dolphnscheduler.plugn.task.ap.enums.DependResult; mport org.apache.dolphnscheduler.plugn.task.ap.enums.Drect; mport org.apache.dolphnscheduler.plugn.task.ap.enums.ExecutonStatus; mport org.apache.dolphnscheduler.plugn.task.ap.enums.TaskTmeoutStrategy; mport org.apache.dolphnscheduler.plugn.task.ap.model.Property; mport org.apache.dolphnscheduler.plugn.task.ap.parameters.BlockngParameters; mport org.apache.dolphnscheduler.remote.command.HostUpdateCommand; mport org.apache.dolphnscheduler.remote.utls.Host; mport org.apache.dolphnscheduler.server.master.confg.MasterConfg; mport org.apache.dolphnscheduler.server.master.dspatch.executor.NettyExecutorManager; mport org.apache.dolphnscheduler.server.master.runner.task.ITaskProcessor;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
mport org.apache.dolphnscheduler.server.master.runner.task.TaskActon; mport org.apache.dolphnscheduler.server.master.runner.task.TaskProcessorFactory; mport org.apache.dolphnscheduler.servce.alert.ProcessAlertManager; mport org.apache.dolphnscheduler.servce.process.ProcessServce; mport org.apache.dolphnscheduler.servce.quartz.cron.CronUtls; mport org.apache.dolphnscheduler.servce.queue.PeerTaskInstancePrortyQueue; mport org.apache.commons.collectons.CollectonUtls; mport org.apache.commons.lang.StrngUtls; mport org.apache.commons.lang.math.NumberUtls; mport java.utl.ArrayLst; mport java.utl.Arrays; mport java.utl.Collecton; mport java.utl.Date; mport java.utl.HashMap; mport java.utl.Iterator; mport java.utl.Lst; mport java.utl.Map; mport java.utl.Objects; mport java.utl.Set; mport java.utl.concurrent.ConcurrentHashMap; mport java.utl.concurrent.ConcurrentLnkedQueue; mport java.utl.concurrent.atomc.AtomcBoolean; mport java.utl.stream.Collectors; mport org.slf4j.Logger; mport org.slf4j.LoggerFactory; mport com.google.common.collect.Lsts; /** * master exec thread,splt dag */ publc class WorkflowExecuteThread {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
/** * logger of WorkflowExecuteThread */ prvate statc fnal Logger logger = LoggerFactory.getLogger(WorkflowExecuteThread.class); /** * master confg */ prvate MasterConfg masterConfg; /** * process servce */ prvate ProcessServce processServce; /** * alert manager */ prvate ProcessAlertManager processAlertManager; /** * netty executor manager */ prvate NettyExecutorManager nettyExecutorManager; /** * process nstance */ prvate ProcessInstance processInstance; /** * process defnton */ prvate ProcessDefnton processDefnton; /** * the object of DAG
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
*/ prvate DAG<Strng, TaskNode, TaskNodeRelaton> dag; /** * key of workflow */ prvate Strng key; /** * start flag, true: start nodes submt completely */ prvate boolean sStart = false; /** * submt falure nodes */ prvate boolean taskFaledSubmt = false; /** * task nstance hash map, taskId as key */ prvate Map<Integer, TaskInstance> taskInstanceMap = new ConcurrentHashMap<>(); /** * runnng taskProcessor, taskCode as key, taskProcessor as value * only on taskProcessor per taskCode */ prvate fnal Map<Long, ITaskProcessor> actveTaskProcessorMaps = new ConcurrentHashMap<>(); /** * vald task map, taskCode as key, taskId as value * n a DAG, only one taskInstance per taskCode s vald */ prvate Map<Long, Integer> valdTaskMap = new ConcurrentHashMap<>(); /** * error task map, taskCode as key, taskInstanceId as value
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
* n a DAG, only one taskInstance per taskCode s vald */ prvate Map<Long, Integer> errorTaskMap = new ConcurrentHashMap<>(); /** * complete task map, taskCode as key, taskInstanceId as value * n a DAG, only one taskInstance per taskCode s vald */ prvate Map<Long, Integer> completeTaskMap = new ConcurrentHashMap<>(); /** * depend faled task map, taskCode as key, taskId as value */ prvate Map<Long, Integer> dependFaledTaskMap = new ConcurrentHashMap<>(); /** * forbdden task map, code as key */ prvate Map<Long, TaskNode> forbddenTaskMap = new ConcurrentHashMap<>(); /** * skp task map, code as key */ prvate Map<Strng, TaskNode> skpTaskNodeMap = new ConcurrentHashMap<>(); /** * complement date lst */ prvate Lst<Date> complementLstDate = Lsts.newLnkedLst(); /** * state event queue */ prvate ConcurrentLnkedQueue<StateEvent> stateEvents = new ConcurrentLnkedQueue<>(); /** * ready to submt task queue
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
*/ prvate PeerTaskInstancePrortyQueue readyToSubmtTaskQueue = new PeerTaskInstancePrortyQueue(); /** * wat to retry taskInstance map, taskCode as key, taskInstance as value * before retry, the taskInstance d s 0 */ prvate Map<Long, TaskInstance> watToRetryTaskInstanceMap = new ConcurrentHashMap<>(); /** * state wheel execute thread */ prvate StateWheelExecuteThread stateWheelExecuteThread; /** * constructor of WorkflowExecuteThread * * @param processInstance processInstance * @param processServce processServce * @param nettyExecutorManager nettyExecutorManager * @param processAlertManager processAlertManager * @param masterConfg masterConfg * @param stateWheelExecuteThread stateWheelExecuteThread */ publc WorkflowExecuteThread(ProcessInstance processInstance , ProcessServce processServce , NettyExecutorManager nettyExecutorManager , ProcessAlertManager processAlertManager , MasterConfg masterConfg , StateWheelExecuteThread stateWheelExecuteThread) { ths.processServce = processServce; ths.processInstance = processInstance; ths.masterConfg = masterConfg;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
ths.nettyExecutorManager = nettyExecutorManager; ths.processAlertManager = processAlertManager; ths.stateWheelExecuteThread = stateWheelExecuteThread; } /** * the process start nodes are submtted completely. */ publc boolean sStart() { return ths.sStart; } /** * handle event */ publc vod handleEvents() { f (!sStart) { return; } whle (!ths.stateEvents.sEmpty()) { try { StateEvent stateEvent = ths.stateEvents.peek(); f (stateEventHandler(stateEvent)) { ths.stateEvents.remove(stateEvent); } } catch (Excepton e) { logger.error("state handle error:", e); } } } publc Strng getKey() { f (StrngUtls.sNotEmpty(key)
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
|| ths.processDefnton == null) { return key; } key = Strng.format("%d_%d_%d", ths.processDefnton.getCode(), ths.processDefnton.getVerson(), ths.processInstance.getId()); return key; } publc boolean addStateEvent(StateEvent stateEvent) { f (processInstance.getId() != stateEvent.getProcessInstanceId()) { logger.nfo("state event would be abounded :{}", stateEvent.toStrng()); return false; } ths.stateEvents.add(stateEvent); return true; } publc nt eventSze() { return ths.stateEvents.sze(); } publc ProcessInstance getProcessInstance() { return ths.processInstance; } prvate boolean stateEventHandler(StateEvent stateEvent) { logger.nfo("process event: {}", stateEvent.toStrng()); f (!checkProcessInstance(stateEvent)) { return false; } boolean result = false; swtch (stateEvent.getType()) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
case PROCESS_STATE_CHANGE: result = pr break; case TASK_STATE_CHANGE: result = taskStateChangeHandler(stateEvent); break; case PROCESS_TIMEOUT: result = processTmeout(); break; case TASK_TIMEOUT: result = taskTmeout(stateEvent); break; case WAIT_TASK_GROUP: result = checkForceStartAndWakeUp(stateEvent); break; case TASK_RETRY: result = taskRetryEventHandler(stateEvent); break; case PROCESS_BLOCKED: result = processBlockHandler(stateEvent); break; default: break; } f (result) { ths.stateEvents.remove(stateEvent); } return result; } prvate boolean checkForceStartAndWakeUp(StateEvent stateEvent) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
TaskGroupQueue taskGroupQueue = ths.processServce.loadTaskGroupQueue(stateEvent.getTaskInstanceId()); f (taskGroupQueue.getForceStart() == Flag.YES.getCode()) { TaskInstance taskInstance = ths.processServce.fndTaskInstanceById(stateEvent.getTaskInstanceId()); ITaskProcessor taskProcessor = actveTaskProcessorMaps.get(taskInstance.getTaskCode()); taskProcessor.acton(TaskActon.DISPATCH); ths.processServce.updateTaskGroupQueueStatus(taskGroupQueue.getId(), TaskGroupQueueStatus.ACQUIRE_SUCCESS.getCode()); return true; } f (taskGroupQueue.getInQueue() == Flag.YES.getCode()) { boolean acqureTaskGroup = processServce.acqureTaskGroupAgan(taskGroupQueue); f (acqureTaskGroup) { TaskInstance taskInstance = ths.processServce.fndTaskInstanceById(stateEvent.getTaskInstanceId()); ITaskProcessor taskProcessor = actveTaskProcessorMaps.get(taskInstance.getTaskCode()); taskProcessor.acton(TaskActon.DISPATCH); return true; } } return false; } prvate boolean taskTmeout(StateEvent stateEvent) { f (!checkTaskInstanceByStateEvent(stateEvent)) { return true; } TaskInstance taskInstance = taskInstanceMap.get(stateEvent.getTaskInstanceId()); f (TmeoutFlag.CLOSE == taskInstance.getTaskDefne().getTmeoutFlag()) { return true; } TaskTmeoutStrategy taskTmeoutStrategy = taskInstance.getTaskDefne().getTmeoutNotfyStrategy(); f (TaskTmeoutStrategy.FAILED == taskTmeoutStrategy || TaskTmeoutStrategy.WARNFAILED == taskTmeoutStrategy) { ITaskProcessor taskProcessor = actveTaskProcessorMaps.get(taskInstance.getTaskCode());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
taskProcessor.acton(TaskActon.TIMEOUT); } f (TaskTmeoutStrategy.WARN == taskTmeoutStrategy || TaskTmeoutStrategy.WARNFAILED == taskTmeoutStrategy) { ProjectUser projectUser = processServce.queryProjectWthUserByProcessInstanceId(processInstance.getId()); processAlertManager.sendTaskTmeoutAlert(processInstance, taskInstance, projectUser); } return true; } prvate boolean processTmeout() { ProjectUser projectUser = processServce.queryProjectWthUserByProcessInstanceId(processInstance.getId()); ths.processAlertManager.sendProcessTmeoutAlert(ths.processInstance, projectUser); return true; } prvate boolean taskStateChangeHandler(StateEvent stateEvent) { f (!checkTaskInstanceByStateEvent(stateEvent)) { return true; } TaskInstance task = getTaskInstance(stateEvent.getTaskInstanceId()); f (task.getState() == null) { logger.error("task state s null, state handler error: {}", stateEvent); return true; } f (task.getState().typeIsFnshed()) { f (completeTaskMap.contansKey(task.getTaskCode()) && completeTaskMap.get(task.getTaskCode()) == task.getId()) { return true; } taskFnshed(task); f (task.getTaskGroupId() > 0) { releaseTaskGroup(task); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return true; } f (actveTaskProcessorMaps.contansKey(task.getTaskCode())) { ITaskProcessor TaskProcessor = actveTaskProcessorMaps.get(task.getTaskCode()); TaskProcessor.acton(TaskActon.RUN); f (TaskProcessor.taskInstance().getState().typeIsFnshed()) { f (TaskProcessor.taskInstance().getState() != task.getState()) { task.setState(TaskProcessor.taskInstance().getState()); } taskFnshed(task); } return true; } logger.error("state handler error: {}", stateEvent); return true; } prvate vod taskFnshed(TaskInstance taskInstance) { logger.nfo("work flow {} task d:{} code:{} state:{} ", processInstance.getId(), taskInstance.getId(), taskInstance.getTaskCode(), taskInstance.getState()); actveTaskProcessorMaps.remove(taskInstance.getTaskCode()); stateWheelExecuteThread.removeTask4TmeoutCheck(processInstance, taskInstance); stateWheelExecuteThread.removeTask4RetryCheck(processInstance, taskInstance); stateWheelExecuteThread.removeTask4StateCheck(processInstance, taskInstance); f (taskInstance.getState().typeIsSuccess()) { completeTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); processInstance.setVarPool(taskInstance.getVarPool()); processServce.saveProcessInstance(processInstance);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
f (!processInstance.sBlocked()) { submtPostNode(Long.toStrng(taskInstance.getTaskCode())); } } else f (taskInstance.taskCanRetry() && processInstance.getState() != ExecutonStatus.READY_STOP) { retryTaskInstance(taskInstance); } else f (taskInstance.getState().typeIsFalure()) { completeTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); f (DagHelper.haveAllNodeAfterNode(Long.toStrng(taskInstance.getTaskCode()), dag) && processInstance.getFalureStrategy() == FalureStrategy.CONTINUE) { submtPostNode(Long.toStrng(taskInstance.getTaskCode())); } else { errorTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); f (processInstance.getFalureStrategy() == FalureStrategy.END) { kllAllTasks(); } } } else f (taskInstance.getState().typeIsFnshed()) { completeTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); } ths.updateProcessInstanceState(); } /** * release task group * * @param taskInstance */ prvate vod releaseTaskGroup(TaskInstance taskInstance) { f (taskInstance.getTaskGroupId() > 0) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
TaskInstance nextTaskInstance = ths.processServce.releaseTaskGroup(taskInstance); f (nextTaskInstance != null) { f (nextTaskInstance.getProcessInstanceId() == taskInstance.getProcessInstanceId()) { StateEvent nextEvent = new StateEvent(); nextEvent.setProcessInstanceId(ths.processInstance.getId()); nextEvent.setTaskInstanceId(nextTaskInstance.getId()); nextEvent.setType(StateEventType.WAIT_TASK_GROUP); ths.stateEvents.add(nextEvent); } else { ProcessInstance processInstance = ths.processServce.fndProcessInstanceById(nextTaskInstance.getProcessInstanceId()); ths.processServce.sendStartTask2Master(processInstance, nextTaskInstance.getId(), org.apache.dolphnscheduler.remote.command.CommandType.TASK_WAKEUP_EVENT_REQUEST); } } } } /** * crate new task nstance to retry, dfferent objects from the orgnal * * @param taskInstance */ prvate vod retryTaskInstance(TaskInstance taskInstance) { f (!taskInstance.taskCanRetry()) { return; } TaskInstance newTaskInstance = cloneRetryTaskInstance(taskInstance); f (newTaskInstance == null) { logger.error("retry fal, new taskInstancce s null, task code:{}, task d:{}", taskInstance.getTaskCode(), taskInstance.getId()); return; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
watToRetryTaskInstanceMap.put(newTaskInstance.getTaskCode(), newTaskInstance); f (!taskInstance.retryTaskIntervalOverTme()) { logger.nfo("falure task wll be submtted: process d: {}, task nstance code: {} state:{} retry tmes:{} / {}, nterval:{}", processInstance.getId(), newTaskInstance.getTaskCode(), newTaskInstance.getState(), newTaskInstance.getRetryTmes(), newTaskInstance.getMaxRetryTmes(), newTaskInstance.getRetryInterval()); stateWheelExecuteThread.addTask4TmeoutCheck(processInstance, newTaskInstance); stateWheelExecuteThread.addTask4RetryCheck(processInstance, newTaskInstance); } else { addTaskToStandByLst(newTaskInstance); submtStandByTask(); watToRetryTaskInstanceMap.remove(newTaskInstance.getTaskCode()); } } /** * handle task retry event * * @param stateEvent * @return */ prvate boolean taskRetryEventHandler(StateEvent stateEvent) { TaskInstance taskInstance = watToRetryTaskInstanceMap.get(stateEvent.getTaskCode()); addTaskToStandByLst(taskInstance); submtStandByTask(); watToRetryTaskInstanceMap.remove(stateEvent.getTaskCode()); return true; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
/** * update process nstance */ publc vod refreshProcessInstance(nt processInstanceId) { logger.nfo("process nstance update: {}", processInstanceId); processInstance = processServce.fndProcessInstanceById(processInstanceId); processDefnton = processServce.fndProcessDefnton(processInstance.getProcessDefntonCode(), processInstance.getProcessDefntonVerson()); processInstance.setProcessDefnton(processDefnton); } /** * update task nstance */ publc vod refreshTaskInstance(nt taskInstanceId) { logger.nfo("task nstance update: {} ", taskInstanceId); TaskInstance taskInstance = processServce.fndTaskInstanceById(taskInstanceId); f (taskInstance == null) { logger.error("can not fnd task nstance, d:{}", taskInstanceId); return; } processServce.packageTaskInstance(taskInstance, processInstance); taskInstanceMap.put(taskInstance.getId(), taskInstance); valdTaskMap.remove(taskInstance.getTaskCode()); f (Flag.YES == taskInstance.getFlag()) { valdTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); } } /** * check process nstance by state event */
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
publc boolean checkProcessInstance(StateEvent stateEvent) { f (ths.processInstance.getId() != stateEvent.getProcessInstanceId()) { logger.error("msmatch process nstance d: {}, state event:{}", ths.processInstance.getId(), stateEvent); return false; } return true; } /** * check f task nstance exst by state event */ publc boolean checkTaskInstanceByStateEvent(StateEvent stateEvent) { f (stateEvent.getTaskInstanceId() == 0) { logger.error("task nstance d null, state event:{}", stateEvent); return false; } f (!taskInstanceMap.contansKey(stateEvent.getTaskInstanceId())) { logger.error("msmatch task nstance d, event:{}", stateEvent); return false; } return true; } /** * check f task nstance exst by task code */ publc boolean checkTaskInstanceByCode(long taskCode) { f (taskInstanceMap == null || taskInstanceMap.sze() == 0) { return false; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
for (TaskInstance taskInstance : taskInstanceMap.values()) { f (taskInstance.getTaskCode() == taskCode) { return true; } } return false; } /** * check f task nstance exst by d */ publc boolean checkTaskInstanceById(nt taskInstanceId) { f (taskInstanceMap == null || taskInstanceMap.sze() == 0) { return false; } return taskInstanceMap.contansKey(taskInstanceId); } /** * get task nstance from memory */ publc TaskInstance getTaskInstance(nt taskInstanceId) { f (taskInstanceMap.contansKey(taskInstanceId)) { return taskInstanceMap.get(taskInstanceId); } return null; } publc TaskInstance getTaskInstance(long taskCode) { f (taskInstanceMap == null || taskInstanceMap.sze() == 0) { return null; } for (TaskInstance taskInstance : taskInstanceMap.values()) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
f (taskInstance.getTaskCode() == taskCode) { return taskInstance; } } return null; } publc TaskInstance getActveTaskInstanceByTaskCode(long taskCode) { f (actveTaskProcessorMaps.contansKey(taskCode)) { return actveTaskProcessorMaps.get(taskCode).taskInstance(); } return null; } publc TaskInstance getRetryTaskInstanceByTaskCode(long taskCode) { f (watToRetryTaskInstanceMap.contansKey(taskCode)) { return watToRetryTaskInstanceMap.get(taskCode); } return null; } prvate boolean processStateChangeHandler(StateEvent stateEvent) { try { logger.nfo("process:{} state {} change to {}", processInstance.getId(), processInstance.getState(), stateEvent.getExecutonStatus()); f (stateEvent.getExecutonStatus() == ExecutonStatus.STOP) { ths.updateProcessInstanceState(stateEvent); return true; } f (processComplementData()) { return true; } f (stateEvent.getExecutonStatus().typeIsFnshed()) { endProcess();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
} f (processInstance.getState() == ExecutonStatus.READY_STOP) { kllAllTasks(); } return true; } catch (Excepton e) { logger.error("process state change error:", e); } return true; } prvate boolean processBlockHandler(StateEvent stateEvent) { try { TaskInstance task = getTaskInstance(stateEvent.getTaskInstanceId()); f (!checkTaskInstanceByStateEvent(stateEvent)) { logger.error("task {} s not a blockng task", task.getTaskCode()); return false; } BlockngParameters parameters = JSONUtls.parseObject(task.getTaskParams(), BlockngParameters.class); f (parameters.sAlertWhenBlockng()) { ProjectUser projectUser = processServce.queryProjectWthUserByProcessInstanceId(processInstance.getId()); processAlertManager.sendProcessBlockngAlert(processInstance, projectUser); logger.nfo("processInstance {} block alert send successful!", processInstance.getId()); } } catch (Excepton e) { logger.error("sendng blockng message error:", e); } return true; } prvate boolean processComplementData() throws Excepton { f (!needComplementProcess()) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,776
[Bug-RD] Serial wait state task instance cannot be executed
### 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 Serial wait state task instance cannot be executed. Serial wait state task instance is missing instance ID parameter when querying ### What you expected to happen Serial wait state task instances can be executed normally. ### How to reproduce Create a task flow definition whose execution strategy is serial wait (nodes with wait time), execute multiple times. ### 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/9776
https://github.com/apache/dolphinscheduler/pull/9777
637028735dbf8a78efa63cf8358d2bead7bb5c6e
5c0be8a3d78bfb97fb4a599979ce3e77ee429784
2022-04-26T06:16:39Z
java
2022-04-26T07:47:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return false; } f (processInstance.getState() == ExecutonStatus.READY_STOP) { return false; } Date scheduleDate = processInstance.getScheduleTme(); f (scheduleDate == null) { scheduleDate = complementLstDate.get(0); } else f (processInstance.getState().typeIsFnshed()) { endProcess(); f (complementLstDate.sze() <= 0) { logger.nfo("process complement end. process d:{}", processInstance.getId()); return true; } nt ndex = complementLstDate.ndexOf(scheduleDate); f (ndex >= complementLstDate.sze() - 1 || !processInstance.getState().typeIsSuccess()) { logger.nfo("process complement end. process d:{}", processInstance.getId()); return true; } logger.nfo("process complement contnue. process d:{}, schedule tme:{} complementLstDate:{}", processInstance.getId(), processInstance.getScheduleTme(), complementLstDate.toStrng()); scheduleDate = complementLstDate.get(ndex + 1); } nt create = ths.createComplementDataCommand(scheduleDate); f (create > 0) { logger.nfo("create complement data command successfully.");