Skip to content

Commit a76b9b0

Browse files
Optimize the getAppConnNodeUrl in workflow server to bring flowId info in request body.
1 parent 1f6a3ad commit a76b9b0

File tree

4 files changed

+39
-27
lines changed

4 files changed

+39
-27
lines changed

dss-apps/dss-apiservice-server/src/main/java/com/webank/wedatasphere/dss/apiservice/core/util/ApiUtils.java

+4-15
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import com.webank.wedatasphere.dss.apiservice.core.exception.*;
2020
import com.webank.wedatasphere.dss.apiservice.core.vo.MessageVo;
21+
import org.apache.commons.lang3.exception.ExceptionUtils;
2122
import org.apache.linkis.common.exception.WarnException;
2223
import org.apache.linkis.server.Message;
2324
import org.slf4j.Logger;
@@ -39,27 +40,15 @@ public static Message doAndResponse(TryOperation tryOperation, String method, St
3940
try {
4041
Message message = tryOperation.operateAndGetMessage();
4142
return setMethod(message, method);
42-
} catch (ConstraintViolationException e) {
43-
LOG.error("api error, method: " + method, e);
44-
return Message.error(e.getMessage());
4543
} catch (WarnException e) {
4644
LOG.error("api error, method: " + method, e);
4745
return setMethod(Message.warn(e.getMessage()), method);
48-
} catch (AssertException e) {
46+
} catch (AssertException | ApiExecuteException | ApiServiceQueryException e) {
4947
LOG.error("api error, method: " + method, e);
5048
return setMethod(Message.error(e.getMessage()), method);
51-
52-
} catch (ApiExecuteException e) {
53-
LOG.error("api error, method: " + method, e);
54-
return setMethod(Message.error(e.getMessage()), method);
55-
}
56-
catch (ApiServiceQueryException e) {
57-
LOG.error("api error, method: " + method, e);
58-
return setMethod(Message.error(e.getMessage()), method);
59-
}
60-
catch (Exception e) {
49+
} catch (Exception e) {
6150
LOG.error("api error, method: " + method, e);
62-
return Message.error(e.getMessage());
51+
return Message.error(ExceptionUtils.getRootCauseMessage(e));
6352
}
6453
}
6554

dss-orchestrator/orchestrators/dss-workflow/dss-workflow-server/src/main/java/com/webank/wedatasphere/dss/workflow/entity/request/AppConnNodeUrlRequest.java

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
public class AppConnNodeUrlRequest {
88

99
private Long projectID;
10+
private Long flowId;
1011
private String nodeType;
1112
private Map<String, Object> params;
1213
private LabelRouteVO labels;
@@ -42,4 +43,13 @@ public LabelRouteVO getLabels() {
4243
public void setLabels(LabelRouteVO labels) {
4344
this.labels = labels;
4445
}
46+
47+
public Long getFlowId() {
48+
return flowId;
49+
}
50+
51+
public void setFlowId(Long flowId) {
52+
this.flowId = flowId;
53+
}
54+
4555
}

dss-orchestrator/orchestrators/dss-workflow/dss-workflow-server/src/main/java/com/webank/wedatasphere/dss/workflow/restful/NodeRestfulApi.java

+16-6
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ public Message createExternalNode(HttpServletRequest req, @RequestBody CreateExt
163163
Map<String, Object> params = createExternalNodeRequest.getParams();
164164
String nodeId = createExternalNodeRequest.getNodeID();
165165

166-
logger.info("try to create a {} node for workflow {}, params is {}.", nodeType, flowId, params);
166+
logger.info("User {} try to create a {} node for workflow {} in projectId {}, params is {}.",
167+
userName, nodeType, flowId, projectId, params);
167168
CommonAppConnNode node = new CommonAppConnNode();
168169
node.setNodeType(nodeType);
169170
node.setFlowId(flowId);
@@ -209,13 +210,15 @@ public Message updateExternalNode(HttpServletRequest req, @RequestBody UpdateExt
209210
String userName = SecurityFilter.getLoginUsername(req);
210211
Workspace workspace = SSOHelper.getWorkspace(req);
211212
Long projectId = updateExternalNodeRequest.getProjectID();
213+
Long flowId = updateExternalNodeRequest.getFlowID();
212214
String nodeType = updateExternalNodeRequest.getNodeType();
213215
Map<String, Object> params = updateExternalNodeRequest.getParams();
214-
logger.info("UpdateExternalNode request params is " + params + ", nodeType:" + nodeType);
216+
logger.info("User {} try to update ExternalNode request with projectId {}, flowId {}, params is {}, nodeType: {}.",
217+
userName, projectId, flowId, params, nodeType);
215218
CommonAppConnNode node = new CommonAppConnNode();
216219
node.setProjectId(projectId);
217220
node.setNodeType(nodeType);
218-
node.setFlowId(updateExternalNodeRequest.getFlowID());
221+
node.setFlowId(flowId);
219222
String label = updateExternalNodeRequest.getLabels().getRoute();
220223
node.setDssLabels(Collections.singletonList(new EnvDSSLabel(label)));
221224
node.setWorkspace(workspace);
@@ -230,16 +233,19 @@ public Message deleteExternalNode(HttpServletRequest req, @RequestBody UpdateExt
230233
String userName = SecurityFilter.getLoginUsername(req);
231234
Workspace workspace = SSOHelper.getWorkspace(req);
232235
Long projectId = updateExternalNodeRequest.getProjectID();
236+
Long flowId = updateExternalNodeRequest.getFlowID();
233237
String nodeType = updateExternalNodeRequest.getNodeType();
234238
Map<String, Object> params = updateExternalNodeRequest.getParams();
239+
logger.info("User {} with the workflow {} in project {} try to delete externalNode with params: {}, nodeType: {}.",
240+
userName, flowId, projectId, params, nodeType);
235241
CommonAppConnNode node = new CommonAppConnNode();
236242
String label = updateExternalNodeRequest.getLabels().getRoute();
237243
node.setDssLabels(Collections.singletonList(new EnvDSSLabel(label)));
238244
node.setWorkspace(workspace);
239245
node.setProjectId(projectId);
240246
node.setNodeType(nodeType);
241247
node.setJobContent(params);
242-
node.setFlowId(updateExternalNodeRequest.getFlowID());
248+
node.setFlowId(flowId);
243249
node.setName(updateExternalNodeRequest.getName());
244250
workflowNodeService.deleteNode(userName, node);
245251
return Message.ok().data("result", node.getJobContent());
@@ -255,7 +261,8 @@ public Message batchDeleteAppConnNode(HttpServletRequest req, @RequestBody Batch
255261
String nodeType = json.get("nodeType").toString();
256262
Long flowId = (Long) json.get("flowID");
257263
Map<String, Object> params = (Map<String, Object>) json.get("params");
258-
logger.info("DeletepExternalNode request params is " + params + ", nodeType:" + nodeType);
264+
logger.info("User {} try to delete ExternalNode with projectId {}, flowId {}, params is {}, nodeType: {}.",
265+
userName, projectId, flowId, params, nodeType);
259266
CommonAppConnNode node = new CommonAppConnNode();
260267
String label = ((Map<String, Object>) json.get("labels")).get("route").toString();
261268
node.setDssLabels(Collections.singletonList(new EnvDSSLabel(label)));
@@ -275,14 +282,17 @@ public Message getAppConnNodeUrl(HttpServletRequest req, @RequestBody AppConnNod
275282
String userName = SecurityFilter.getLoginUsername(req);
276283
Workspace workspace = SSOHelper.getWorkspace(req);
277284
Long projectId = appConnNodeUrlRequest.getProjectID();
285+
Long flowId = appConnNodeUrlRequest.getFlowId();
278286
String nodeType = appConnNodeUrlRequest.getNodeType();
279287
Map<String, Object> params = appConnNodeUrlRequest.getParams();
280-
logger.info("getAppConnNodeUrl request params is " + params + ", nodeType:" + nodeType);
288+
logger.info("User {} with the workflow {} in project {} try to getAppConnNodeUrl with params: {}, nodeType: {}.",
289+
userName, flowId, projectId, params, nodeType);
281290
CommonAppConnNode node = new CommonAppConnNode();
282291
node.setWorkspace(workspace);
283292
node.setProjectId(projectId);
284293
node.setNodeType(nodeType);
285294
node.setJobContent(params);
295+
node.setFlowId(flowId);
286296
String label = appConnNodeUrlRequest.getLabels().getRoute();
287297
node.setDssLabels(Collections.singletonList(new EnvDSSLabel(label)));
288298
String jumpUrl = workflowNodeService.getNodeJumpUrl(params, node, userName);

dss-orchestrator/orchestrators/dss-workflow/dss-workflow-server/src/main/java/com/webank/wedatasphere/dss/workflow/service/impl/WorkflowNodeServiceImpl.java

+9-6
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private <K extends DevelopmentRequestRef, V extends ResponseRef> V tryNodeOperat
141141
dssJobContentRequestRef.setDSSJobContent(new HashMap<>());
142142
String orcVersion;
143143
try {
144-
orcVersion = getOrcVersion(node.getFlowId());
144+
orcVersion = getOrcVersion(node);
145145
} catch (Exception e) {
146146
throw new ExternalOperationFailedException(50205, "get workflow version failed.", e);
147147
}
@@ -203,7 +203,7 @@ public Map<String, Object> refresh(String userName, CommonAppConnNode node) {
203203
public Map<String, Object> copyNode(String userName, CommonAppConnNode newNode,
204204
CommonAppConnNode oldNode, String orcVersion) throws IOException, DSSErrorException {
205205
if (StringUtils.isBlank(orcVersion)) {
206-
orcVersion = getOrcVersion(oldNode.getFlowId());
206+
orcVersion = getOrcVersion(oldNode);
207207
}
208208
String finalOrcVersion = orcVersion;
209209
RefJobContentResponseRef responseRef = tryNodeOperation(userName, oldNode,
@@ -272,11 +272,14 @@ public String getNodeJumpUrl(Map<String, Object> params, CommonAppConnNode node,
272272
}
273273
}
274274

275-
private String getOrcVersion(Long flowId) throws IOException {
276-
if (flowId == null) {
277-
return null;
275+
private String getOrcVersion(CommonAppConnNode node) throws IOException {
276+
if (node.getFlowId() == null) {
277+
throw new NullPointerException("The flowId is null, please ask admin for help!");
278+
}
279+
DSSFlow dssFlow = dssFlowService.getFlow(node.getFlowId());
280+
if(StringUtils.isBlank(node.getFlowName())) {
281+
node.setFlowName(dssFlow.getName());
278282
}
279-
DSSFlow dssFlow = dssFlowService.getFlow(flowId);
280283
return workFlowParser.getValueWithKey(dssFlow.getFlowJson(), DSSJobContentConstant.ORC_VERSION_KEY);
281284
}
282285

0 commit comments

Comments
 (0)