You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxParameters.java
+31-17Lines changed: 31 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,11 @@ public class DataxParameters extends AbstractParameters {
95
95
*/
96
96
privateintjobSpeedRecord;
97
97
98
+
/**
99
+
* datax channel
100
+
*/
101
+
privateintjobChannel;
102
+
98
103
/**
99
104
* Xms memory
100
105
*/
@@ -206,6 +211,14 @@ public void setJobSpeedRecord(int jobSpeedRecord) {
206
211
this.jobSpeedRecord = jobSpeedRecord;
207
212
}
208
213
214
+
publicintgetJobChannel() {
215
+
returnjobChannel;
216
+
}
217
+
218
+
publicvoidsetJobChannel(intjobChannel) {
219
+
this.jobChannel = jobChannel;
220
+
}
221
+
209
222
publicintgetXms() {
210
223
returnxms;
211
224
}
@@ -249,23 +262,24 @@ public List<ResourceInfo> getResourceFilesList() {
Copy file name to clipboardExpand all lines: dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxTask.java
Copy file name to clipboardExpand all lines: dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/test/java/org/apache/dolphinscheduler/plugin/task/datax/DataxParametersTest.java
0 commit comments