vamsikarnika commented on code in PR #639:
URL: https://github.com/apache/incubator-xtable/pull/639#discussion_r1942721982
##########
xtable-hive-metastore/src/main/java/org/apache/xtable/hms/HMSCatalogConfig.java:
##########
@@ -43,6 +45,15 @@ public class HMSCatalogConfig {
@JsonProperty("externalCatalog.hms.serverUrl")
private final String serverUrl;
+ @JsonProperty("externalCatalog.hms.schema_string_length_thresh")
+ private int schemaLengthThreshold = 4000;
+
+ @JsonProperty("externalCatalog.hms.partition_extractor_class")
+ private String partitionExtractorClass =
MultiPartKeysValueExtractor.class.getName();
+
+ @JsonProperty("externalCatalog.hms.max_partitions_per_request")
+ private int maxPartitionsPerRequest = 1000;
Review Comment:
schemaLengthThreshold - max length of schema to store in a single catalog
table property
partitionExtractorClass - Hudi's partition value extractor class to use to
extract partition from path
maxPartitionsPerRequest - max partitions to sync in a single batch
These are configs used HivePartitionSyncTool in hudi repo.
--
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]