fuweng11 commented on code in PR #10137:
URL: https://github.com/apache/inlong/pull/10137#discussion_r1592388378
##########
inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/cluster/ClusterTagResponse.java:
##########
@@ -50,6 +50,9 @@ public class ClusterTagResponse {
@ApiModelProperty(value = "Extended params")
private String extParams;
+ @ApiModelProperty(value = "The compression type used for dataproxy and
sort side data transmission to reduce the network IO overhead")
+ private String inlongCompressType;
Review Comment:
This name is used to distinguish it from other compress types, such as
hive's compress type.
##########
inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/repository/DataProxyConfigRepository.java:
##########
@@ -99,6 +100,7 @@ public class DataProxyConfigRepository implements
IRepository {
public static final String KEY_DATA_NODE_NAME = "defaultDataNodeName";
public static final String KEY_SORT_CONSUMER_GROUP =
"defaultSortConsumerGroup";
public static final String KEY_SINK_NAME = "defaultSinkName";
+ public static final String KEY_INLONG_COMPRESS_TYPE = "inlongCompressType";
Review Comment:
This name is used to distinguish it from other compress types, such as
hive's compress type.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]