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 9b9332069 [doc] recommended compression for the Append table is zstd
9b9332069 is described below

commit 9b933206951122c92ed73c6796daa41987e41022
Author: Jingsong <[email protected]>
AuthorDate: Tue May 21 22:54:30 2024 +0800

    [doc] recommended compression for the Append table is zstd
---
 docs/content/append-table/append-table.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/docs/content/append-table/append-table.md 
b/docs/content/append-table/append-table.md
index 45cb12dba..1e4dd4f5f 100644
--- a/docs/content/append-table/append-table.md
+++ b/docs/content/append-table/append-table.md
@@ -38,11 +38,15 @@ CREATE TABLE my_table (
     product_id BIGINT,
     price DOUBLE,
     sales BIGINT
+) WITH (
+    'file.compression' = 'zstd'
 );
 ```
 {{< /tab >}}
 {{< /tabs >}}
 
+The recommended compression for the Append table is `'zstd'`.
+
 ## Automatic small file merging
 
 In streaming writing job, without bucket definition, there is no compaction in 
writer, instead, will use

Reply via email to