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 4e7e4188e7 [doc] Correct description for 'clustering.strategy'
4e7e4188e7 is described below
commit 4e7e4188e78aa3e96fc53cfa8d1fb89af1c2a1da
Author: JingsongLi <[email protected]>
AuthorDate: Tue Sep 9 17:41:57 2025 +0800
[doc] Correct description for 'clustering.strategy'
---
docs/layouts/shortcodes/generated/core_configuration.html | 2 +-
paimon-api/src/main/java/org/apache/paimon/CoreOptions.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/layouts/shortcodes/generated/core_configuration.html
b/docs/layouts/shortcodes/generated/core_configuration.html
index 81a4c9990f..4273751caf 100644
--- a/docs/layouts/shortcodes/generated/core_configuration.html
+++ b/docs/layouts/shortcodes/generated/core_configuration.html
@@ -150,7 +150,7 @@ under the License.
<td><h5>clustering.strategy</h5></td>
<td style="word-wrap: break-word;">"auto"</td>
<td>String</td>
- <td>Specifies the comparison algorithm used for range
partitioning, including 'zorder', 'hilbert', and 'order', corresponding to the
z-order curve algorithm, hilbert curve algorithm, and basic type comparison
algorithm, respectively. When not configured, it will automatically determine
the algorithm based on the number of columns in 'sink.clustering.by-columns'.
'order' is used for 1 column, 'zorder' for less than 5 columns, and 'hilbert'
for 5 or more columns.</td>
+ <td>Specifies the comparison algorithm used for range
partitioning, including 'zorder', 'hilbert', and 'order', corresponding to the
z-order curve algorithm, hilbert curve algorithm, and basic type comparison
algorithm, respectively. When not configured, it will automatically determine
the algorithm based on the number of columns in 'clustering.by-columns'.
'order' is used for 1 column, 'zorder' for less than 5 columns, and 'hilbert'
for 5 or more columns.</td>
</tr>
<tr>
<td><h5>commit.callback.#.param</h5></td>
diff --git a/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
b/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
index 914c250151..05ff57a617 100644
--- a/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
+++ b/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
@@ -1920,7 +1920,7 @@ public class CoreOptions implements Serializable {
"Specifies the comparison algorithm used for range
partitioning, including 'zorder', 'hilbert', and 'order', "
+ "corresponding to the z-order curve
algorithm, hilbert curve algorithm, and basic type comparison algorithm, "
+ "respectively. When not configured, it
will automatically determine the algorithm based on the number of columns "
- + "in 'sink.clustering.by-columns'.
'order' is used for 1 column, 'zorder' for less than 5 columns, "
+ + "in 'clustering.by-columns'. 'order' is
used for 1 column, 'zorder' for less than 5 columns, "
+ "and 'hilbert' for 5 or more columns.");
@Immutable