feat(all): flink job增加tags属性
flink job级别增加标签属性,用于区分调用测试包和非测试包
This commit is contained in:
@@ -264,6 +264,7 @@ public class RuntimeInfo {
|
||||
|
||||
public static final class HudiInfo {
|
||||
private String appHdfsPath;
|
||||
private String appTestHdfsPath;
|
||||
private String archiveHdfsPath;
|
||||
private String victoriaPushUrl;
|
||||
|
||||
@@ -275,6 +276,14 @@ public class RuntimeInfo {
|
||||
this.appHdfsPath = appHdfsPath;
|
||||
}
|
||||
|
||||
public String getAppTestHdfsPath() {
|
||||
return appTestHdfsPath;
|
||||
}
|
||||
|
||||
public void setAppTestHdfsPath(String appTestHdfsPath) {
|
||||
this.appTestHdfsPath = appTestHdfsPath;
|
||||
}
|
||||
|
||||
public String getArchiveHdfsPath() {
|
||||
return archiveHdfsPath;
|
||||
}
|
||||
@@ -295,6 +304,7 @@ public class RuntimeInfo {
|
||||
public String toString() {
|
||||
return "HudiInfo{" +
|
||||
"appHdfsPath='" + appHdfsPath + '\'' +
|
||||
", appTestHdfsPath='" + appTestHdfsPath + '\'' +
|
||||
", archiveHdfsPath='" + archiveHdfsPath + '\'' +
|
||||
", victoriaPushUrl='" + victoriaPushUrl + '\'' +
|
||||
'}';
|
||||
|
||||
Reference in New Issue
Block a user