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 e3e2a3b16 [doc] Fix clustering is only supported the unaware-bucket
append table. (#4114)
e3e2a3b16 is described below
commit e3e2a3b1673ba193061816b449568f3608e6ad95
Author: HunterXHunter <[email protected]>
AuthorDate: Tue Sep 3 16:58:32 2024 +0800
[doc] Fix clustering is only supported the unaware-bucket append table.
(#4114)
---
docs/content/flink/sql-write.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/flink/sql-write.md b/docs/content/flink/sql-write.md
index 2c496c849..008fe4983 100644
--- a/docs/content/flink/sql-write.md
+++ b/docs/content/flink/sql-write.md
@@ -53,7 +53,7 @@ For multiple jobs to write the same table, you can refer to
[dedicated compactio
In Paimon, clustering is a feature that allows you to cluster data in your
[Append Table]({{< ref "append-table/overview" >}})
based on the values of certain columns during the write process. This
organization of data can significantly enhance the efficiency of downstream
-tasks when reading the data, as it enables faster and more targeted data
retrieval. This feature is only supported for [Append Table]({{< ref
"append-table/overview" >}})
+tasks when reading the data, as it enables faster and more targeted data
retrieval. This feature is only supported for [Append Table]({{< ref
"append-table/overview" >}})(bucket = -1)
and batch execution mode.
To utilize clustering, you can specify the columns you want to cluster when
creating or writing to a table. Here's a simple example of how to enable
clustering: