修改:hpc工作流完成通知优化
This commit is contained in:
@@ -2,8 +2,6 @@ package com.sdm.pbs.schedule.hpc.hander;
|
||||
|
||||
import com.alibaba.fastjson2.JSONObject;
|
||||
import com.sdm.common.common.SdmResponse;
|
||||
import com.sdm.common.entity.req.flowable.AsyncCallbackRequest;
|
||||
import com.sdm.common.feign.inter.flowable.IFlowableFeignClient;
|
||||
import com.sdm.common.log.CoreLogger;
|
||||
import com.sdm.common.utils.DateUtils;
|
||||
import com.sdm.common.utils.String2NumberUtil;
|
||||
@@ -28,9 +26,6 @@ public class FinishedStatusHandler implements JobStatusHandler {
|
||||
@Autowired
|
||||
private HpcInstructionService hpcInstructionService;
|
||||
|
||||
@Autowired
|
||||
private IFlowableFeignClient flowableFeignClient;
|
||||
|
||||
@Override
|
||||
public void handle(SimulationJob simJob, HpcJobStatusInfo statusInfo) {
|
||||
try {
|
||||
@@ -55,12 +50,6 @@ public class FinishedStatusHandler implements JobStatusHandler {
|
||||
// 通知成功修改状态
|
||||
newDbJob.setFileStatus("uploading");
|
||||
simulationJobService.updateById(newDbJob);
|
||||
// todo 先直接流程结束
|
||||
AsyncCallbackRequest asyncCallbackRequest = new AsyncCallbackRequest();
|
||||
asyncCallbackRequest.setAsyncTaskId(newDbJob.getJobId());
|
||||
asyncCallbackRequest.setResultJson("finished");
|
||||
SdmResponse sdmResponse = flowableFeignClient.asyncCallback(asyncCallbackRequest);
|
||||
CoreLogger.info("flowableFeignClient asyncCallback result:{}", JSONObject.toJSONString(sdmResponse));
|
||||
} catch (Exception e) {
|
||||
CoreLogger.error("HpcJobStatus finshed handle error:{},newDbJob:{},statusInfo:{}",e.getMessage(),
|
||||
JSONObject.toJSONString(simJob),JSONObject.toJSONString(statusInfo));
|
||||
|
||||
@@ -5,8 +5,10 @@ import com.baomidou.mybatisplus.extension.conditions.query.LambdaQueryChainWrapp
|
||||
import com.github.pagehelper.PageHelper;
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import com.sdm.common.common.SdmResponse;
|
||||
import com.sdm.common.entity.req.flowable.AsyncCallbackRequest;
|
||||
import com.sdm.common.entity.resp.PageDataResp;
|
||||
import com.sdm.common.entity.resp.pbs.hpc.FileNodeInfo;
|
||||
import com.sdm.common.feign.inter.flowable.IFlowableFeignClient;
|
||||
import com.sdm.common.log.CoreLogger;
|
||||
import com.sdm.common.utils.HpcCommandExcuteUtil;
|
||||
import com.sdm.common.utils.PageUtils;
|
||||
@@ -43,6 +45,9 @@ public class PbsServiceDecorator implements IPbsServiceDecorator {
|
||||
@Autowired
|
||||
private HpcCommandExcuteUtil hpcCommandExcuteUtil;
|
||||
|
||||
@Autowired
|
||||
private IFlowableFeignClient flowableFeignClient;
|
||||
|
||||
// 正则匹配%后的单词(\w+ 匹配字母、数字、下划线)
|
||||
private static final Pattern PLACEHOLDER_PATTERN = Pattern.compile("%(\\w+)");
|
||||
|
||||
@@ -319,7 +324,12 @@ public class PbsServiceDecorator implements IPbsServiceDecorator {
|
||||
newDbJob.setFileStatus("finished");
|
||||
newDbJob.setUpdateTime(LocalDateTime.now());
|
||||
simulationJobService.updateById(newDbJob);
|
||||
// 回调通知工作流节点,继续 todo
|
||||
// 回调通知工作流节点
|
||||
AsyncCallbackRequest asyncCallbackRequest = new AsyncCallbackRequest();
|
||||
asyncCallbackRequest.setAsyncTaskId(newDbJob.getJobId());
|
||||
asyncCallbackRequest.setResultJson("finished");
|
||||
SdmResponse sdmResponse = flowableFeignClient.asyncCallback(asyncCallbackRequest);
|
||||
CoreLogger.info("flowableFeignClient asyncCallback result:{}", JSONObject.toJSONString(sdmResponse));
|
||||
return SdmResponse.success(true);
|
||||
}
|
||||
return SdmResponse.success(false);
|
||||
|
||||
Reference in New Issue
Block a user