This is an automated email from the ASF dual-hosted git repository.
JingsongLi 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 65aaf6bfdc [core] Fix stale option key in clustering.strategy
description (#9602)
65aaf6bfdc is described below
commit 65aaf6bfdcf00ed11301cbc515eb9a72452a6bfa
Author: Eunbin Son <[email protected]>
AuthorDate: Mon Sep 7 23:44:33 2026 +0900
[core] Fix stale option key in clustering.strategy description (#9602)
---
docs/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/generated/core_configuration.html
b/docs/generated/core_configuration.html
index 329ea2e09e..270a363ec0 100644
--- a/docs/generated/core_configuration.html
+++ b/docs/generated/core_configuration.html
@@ -294,7 +294,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 '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.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 ba549628dc..c46ef4fb79 100644
--- a/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
+++ b/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
@@ -2450,7 +2450,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 'clustering.by-columns'. 'order' is
used for 1 column, 'zorder' for less than 5 columns, "
+ + "in 'clustering.columns'. 'order' is
used for 1 column, 'zorder' for less than 5 columns, "
+ "and 'hilbert' for 5 or more columns.");
public static final ConfigOption<Boolean> CLUSTERING_INCREMENTAL =