This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new bda0f79bb [doc] Fix list texts for target-file-size
bda0f79bb is described below
commit bda0f79bb482ff0eed614bf8f3b805b542b38feb
Author: Jingsong <[email protected]>
AuthorDate: Fri Jul 12 10:15:49 2024 +0800
[doc] Fix list texts for target-file-size
---
docs/layouts/shortcodes/generated/core_configuration.html | 2 +-
paimon-common/src/main/java/org/apache/paimon/CoreOptions.java | 5 +++--
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/docs/layouts/shortcodes/generated/core_configuration.html
b/docs/layouts/shortcodes/generated/core_configuration.html
index 2e1cca93a..ed9fdb53c 100644
--- a/docs/layouts/shortcodes/generated/core_configuration.html
+++ b/docs/layouts/shortcodes/generated/core_configuration.html
@@ -784,7 +784,7 @@ If the data size allocated for the sorting task is
uneven,which may lead to perf
<td><h5>target-file-size</h5></td>
<td style="word-wrap: break-word;">(none)</td>
<td>MemorySize</td>
- <td>Target size of a file.<ul><li>primary key table: the default
value is 128 MB.</li></ul><ul><li>append table: the default value is 256
MB.</li></ul></td>
+ <td>Target size of a file.<ul><li>primary key table: the default
value is 128 MB.</li><li>append table: the default value is 256
MB.</li></ul></td>
</tr>
<tr>
<td><h5>write-buffer-for-append</h5></td>
diff --git a/paimon-common/src/main/java/org/apache/paimon/CoreOptions.java
b/paimon-common/src/main/java/org/apache/paimon/CoreOptions.java
index 20f7dc652..3c286ecd2 100644
--- a/paimon-common/src/main/java/org/apache/paimon/CoreOptions.java
+++ b/paimon-common/src/main/java/org/apache/paimon/CoreOptions.java
@@ -444,8 +444,9 @@ public class CoreOptions implements Serializable {
.withDescription(
Description.builder()
.text("Target size of a file.")
- .list(text("primary key table: the default
value is 128 MB."))
- .list(text("append table: the default
value is 256 MB."))
+ .list(
+ text("primary key table: the
default value is 128 MB."),
+ text("append table: the default
value is 256 MB."))
.build());
public static final ConfigOption<Integer>
NUM_SORTED_RUNS_COMPACTION_TRIGGER =