JingsongLi commented on code in PR #6556:
URL: https://github.com/apache/paimon/pull/6556#discussion_r2508796511
##########
paimon-api/src/main/java/org/apache/paimon/CoreOptions.java:
##########
@@ -3145,6 +3151,10 @@ public boolean formatTablePartitionOnlyValueInPath() {
return options.get(FORMAT_TABLE_PARTITION_ONLY_VALUE_IN_PATH);
}
+ public long formatTableSplitMaxSize() {
+ return options.get(FORMAT_TABLE_SPLIT_MAX_BYTES).getBytes();
Review Comment:
Similiar,
- if `format-table.split.target-size` configured, use it.
- if `source.split.target-size` configured, we can use it.
- then use default value of `format-table.split.target-size`.
--
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]