fuweng11 commented on code in PR #10371: URL: https://github.com/apache/inlong/pull/10371#discussion_r1629401071
########## inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/sort/node/base/ExtractNodeProvider.java: ########## @@ -131,6 +136,21 @@ default Format parsingFormat( case RAW: format = new RawFormat(); break; + case KV: + if (StringUtils.isNumeric(separatorStr)) { Review Comment: Fixed. ########## inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/kafka/KafkaSourceRequest.java: ########## @@ -80,10 +78,13 @@ public class KafkaSourceRequest extends SourceRequest { private String primaryKey; @ApiModelProperty(value = "Data encoding format: UTF-8, GBK") - private String dataEncoding = StandardCharsets.UTF_8.toString(); + private String dataEncoding; @ApiModelProperty(value = "Data separator") - private String dataSeparator = String.valueOf((int) '|'); + private String dataSeparator; + + @ApiModelProperty(value = "Kv separator") Review Comment: Fixed. -- 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: commits-unsubscr...@inlong.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org