This is an automated email from the ASF dual-hosted git repository. vernedeng pushed a commit to branch branch-1.8 in repository https://gitbox.apache.org/repos/asf/inlong.git
commit f48e05853e62e5540c4a74868ddc114a4cd2344f Author: fuweng11 <76141879+fuwen...@users.noreply.github.com> AuthorDate: Wed Jul 19 16:36:08 2023 +0800 [INLONG-8572][Manager] Fix missing information in InlongStreamBriefInfo (#8573) * [INLONG-8572][Manager] Fix missing information in InlongStreamBriefInfo (cherry picked from commit 489ee0d184cf68cbf14316b36bfd8c769308b16e) --- .../manager/pojo/stream/InlongStreamBriefInfo.java | 39 ++++++++++++++++++++++ inlong-manager/manager-service/pom.xml | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/stream/InlongStreamBriefInfo.java b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/stream/InlongStreamBriefInfo.java index 59d6aa9e3d..28dadc2b53 100644 --- a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/stream/InlongStreamBriefInfo.java +++ b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/stream/InlongStreamBriefInfo.java @@ -46,9 +46,48 @@ public class InlongStreamBriefInfo { @ApiModelProperty(value = "Inlong stream name") private String name; + @ApiModelProperty(value = "Inlong stream description") + private String description; + @ApiModelProperty(value = "MQ resource") private String mqResource; + @ApiModelProperty(value = "Data type, including: TEXT, KV, etc.") + private String dataType; + + @ApiModelProperty(value = "Data encoding format: UTF-8, GBK") + private String dataEncoding; + + @ApiModelProperty(value = "Data separator") + private String dataSeparator; + + @ApiModelProperty(value = "Data field escape symbol") + private String dataEscapeChar; + + @ApiModelProperty(value = "Whether to send synchronously, 0: no, 1: yes") + private Integer syncSend; + + @ApiModelProperty(value = "Number of access items per day, unit: 10,000 items per day") + private Integer dailyRecords; + + @ApiModelProperty(value = "Access size per day, unit: GB per day") + private Integer dailyStorage; + + @ApiModelProperty(value = "peak access per second, unit: bars per second") + private Integer peakRecords; + + @ApiModelProperty(value = "The maximum length of a single piece of data, unit: Byte") + private Integer maxLength; + + @ApiModelProperty(value = "Data storage period, unit: day") + private Integer storagePeriod; + + @ApiModelProperty(value = "Whether the message body wrapped with InlongMsg") + private Boolean wrapWithInlongMsg; + + @ApiModelProperty(value = "Whether to ignore the parse errors of field value") + private Boolean ignoreParseError; + @ApiModelProperty(value = "Status") private Integer status; diff --git a/inlong-manager/manager-service/pom.xml b/inlong-manager/manager-service/pom.xml index 01a5867766..be707469e9 100644 --- a/inlong-manager/manager-service/pom.xml +++ b/inlong-manager/manager-service/pom.xml @@ -672,7 +672,7 @@ <goals> <goal>copy</goal> </goals> - <phase>pre-integration-test</phase> + <phase>process-test-resources</phase> </execution> </executions> </plugin>