Skip to content

Commit b0f4a4f

Browse files
authored
Merge pull request #57 from aliyun/feature/release-v1.1.10-2
release 1.1.10
2 parents 808f413 + 39bdbb3 commit b0f4a4f

File tree

118 files changed

+4999
-426
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+4999
-426
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Node is the definition of workflow node.
102102
| `runtimeResource` | [`RuntimeResource`](#runtimeResource) | No | runtime resource define or reference of the node |
103103
| `recurrence` | string | No | `recurrence` defines cycle schedule state of node, see enumerated values: [Recurrence](#recurrence) |
104104
| `priority` | integer | No | priority of the node, the larger the value, the higher the priority |
105-
| `timeout` | integer | No | timeout in seconds of the node, node instance will be killed when timed out after specified seconds |
105+
| `timeout` | integer | No | timeout in hours of the node, node instance will be killed when timed out after specified hours |
106106
| `instanceMode` | string | No | instance mode of the node, see enumerated values [InstanceMode](#instancemode) |
107107
| `rerunMode` | string | No | the rerun strategy of the node instance, see enumerated values [RerunMode](#rerunmode) |
108108

README_zh_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ ManualWorkflowSpec是手动触发工作流`ManualWorkflow`的定义描述
101101
| `runtimeResource` | [`RuntimeResource`](#runtimeResource) || 节点的运行时资源定义或引用 |
102102
| `recurrence` | string || `recurrence`定义周期调度节点的调度状态, 具体值参考枚举类型: [Recurrence](#recurrence) |
103103
| `priority` | integer || 定义节点的优先级, 数值越大优先级越高 |
104-
| `timeout` | integer || 定义节点的超时时间,运行超过指定时间后,节点将会被kill掉,单位为秒 |
104+
| `timeout` | integer || 定义节点的超时时间,运行超过指定时间后,节点将会被kill掉,单位为小时 |
105105
| `instanceMode` | string || 节点的实例化模式,具体值参考枚举类型:[InstanceMode](#instancemode) |
106106
| `rerunMode` | string || 节点重试策略,具体值参考枚举类型:[RerunMode](#rerunmode) |
107107

client/client-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.aliyun.dataworks</groupId>
66
<artifactId>client</artifactId>
7-
<version>1.1.9-16</version>
7+
<version>1.1.10-2</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

client/client-common/src/main/bin/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def run_command(app_type, main_class=None):
6363
"-DappType=" + app_type,
6464
"com.aliyun.dataworks.client.command.CommandAppEntrance" if not main_class else main_class
6565
]
66-
66+
print(cmd)
6767
verbose = True if 'CLIENT_VERBOSE' not in os.environ else bool(os.environ['CLIENT_VERBOSE'])
6868
if verbose:
6969
logging_file = os.path.abspath(os.path.join(get_log_path(), app_type + ".log"))

client/client-spark-utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.aliyun.dataworks</groupId>
66
<artifactId>client</artifactId>
7-
<version>1.1.9-16</version>
7+
<version>1.1.10-2</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

client/client-toolkits/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.aliyun.dataworks</groupId>
66
<artifactId>client</artifactId>
7-
<version>1.1.9-16</version>
7+
<version>1.1.10-2</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

client/migrationx/migrationx-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>migrationx</artifactId>
2424
<groupId>com.aliyun.dataworks</groupId>
25-
<version>1.1.9-16</version>
25+
<version>1.1.10-2</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

client/migrationx/migrationx-common/src/main/java/com/aliyun/migrationx/common/utils/Config.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import java.util.ArrayList;
44
import java.util.List;
5+
import java.util.Map;
56
import java.util.regex.Pattern;
67

78
import lombok.Data;
@@ -75,6 +76,10 @@ public boolean isVersion32() {
7576

7677
private boolean includeGlobalParam = true;
7778

79+
private String scriptDir;
80+
81+
private Map<String, String> postHandlers;
82+
7883
@Data
7984
public static class Replaced {
8085
private String taskType;

client/migrationx/migrationx-domain/migrationx-domain-adf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.aliyun.dataworks</groupId>
88
<artifactId>migrationx-domain</artifactId>
9-
<version>1.1.9-16</version>
9+
<version>1.1.10-2</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

client/migrationx/migrationx-domain/migrationx-domain-airflow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>migrationx-domain</artifactId>
2222
<groupId>com.aliyun.dataworks</groupId>
23-
<version>1.1.9-16</version>
23+
<version>1.1.10-2</version>
2424
<relativePath>../pom.xml</relativePath>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)