ruanwenjun commented on code in PR #11690:
URL: https://github.com/apache/dolphinscheduler/pull/11690#discussion_r957444062
##########
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/TaskInstance.java:
##########
@@ -308,15 +308,17 @@ public void init(String host, Date startTime, String
executePath) {
public DependentParameters getDependency() {
if (this.dependency == null) {
- Map<String, Object> taskParamsMap =
- JSONUtils.parseObject(this.getTaskParams(), new
TypeReference<Map<String, Object>>() {
- });
- this.dependency =
- JSONUtils.parseObject((String)
taskParamsMap.get(Constants.DEPENDENCE), DependentParameters.class);
+ Map<String, Object> taskParamsMap =
JSONUtils.parseObject(this.getTaskParams(), new TypeReference<Map<String,
Object>>() {
+ });
+ this.dependency = JSONUtils.parseObject((String)
taskParamsMap.get(Constants.DEPENDENCE), DependentParameters.class);
+ if (taskParamsMap.get(Constants.OTHER_PARAMS) != null){
+ this.dependency.setOtherParams((Map<String, Object>)
taskParamsMap.get(Constants.OTHER_PARAMS));
Review Comment:
if the `this.dependency == null` this will throw NPE, and why you transform
the dependent params from taskParmas, you can directly set in
`Constants.DEPENDENCE`.
##########
dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/parameters/DependentParameters.java:
##########
@@ -23,13 +23,15 @@
import org.apache.dolphinscheduler.plugin.task.api.model.DependentTaskModel;
import java.util.List;
+import java.util.Map;
@Data
@EqualsAndHashCode(callSuper = true)
public class DependentParameters extends AbstractParameters {
private List<DependentTaskModel> dependTaskList;
private DependentRelation relation;
+ private Map<String, Object> otherParams;
Review Comment:
Please don't add this kind of parameters.
And I don't see we have used this in DS.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]