This is an automated email from the ASF dual-hosted git repository.

zouxxyy 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 76b8343966 [docs] Add missing PaimonSparkSessionExtensions to Spark 
configs (#6729)
76b8343966 is described below

commit 76b8343966a8188b267e27fda18c1e9e5c57b306
Author: Peng Lu <[email protected]>
AuthorDate: Wed Dec 3 10:25:45 2025 +0800

    [docs] Add missing PaimonSparkSessionExtensions to Spark configs (#6729)
    
    * [docs] Add missing PaimonSparkSessionExtensions to Spark configs
    
    * Update based on the comment
---
 docs/content/maintenance/filesystems.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/docs/content/maintenance/filesystems.md 
b/docs/content/maintenance/filesystems.md
index 9b7b5498b8..6a1e826f9e 100644
--- a/docs/content/maintenance/filesystems.md
+++ b/docs/content/maintenance/filesystems.md
@@ -242,6 +242,7 @@ Place `paimon-oss-{{< version >}}.jar` together with 
`paimon-spark-{{< version >
 
 ```shell
 spark-sql \
+  --conf 
spark.sql.extensions=org.apache.paimon.spark.extensions.PaimonSparkSessionExtensions
 \
   --conf spark.sql.catalog.paimon=org.apache.paimon.spark.SparkCatalog \
   --conf spark.sql.catalog.paimon.warehouse=oss://<bucket>/<path> \
   --conf spark.sql.catalog.paimon.fs.oss.endpoint=oss-cn-hangzhou.aliyuncs.com 
\
@@ -344,6 +345,7 @@ Place `paimon-s3-{{< version >}}.jar` together with 
`paimon-spark-{{< version >}
 
 ```shell
 spark-sql \
+  --conf 
spark.sql.extensions=org.apache.paimon.spark.extensions.PaimonSparkSessionExtensions
 \
   --conf spark.sql.catalog.paimon=org.apache.paimon.spark.SparkCatalog \
   --conf spark.sql.catalog.paimon.warehouse=s3://<bucket>/<path> \
   --conf spark.sql.catalog.paimon.s3.endpoint=your-endpoint-hostname \
@@ -498,6 +500,7 @@ Place `paimon-azure-{{< version >}}.jar` together with 
`paimon-spark-{{< version
 
 ```shell
 spark-sql \
+  --conf 
spark.sql.extensions=org.apache.paimon.spark.extensions.PaimonSparkSessionExtensions
 \
   --conf spark.sql.catalog.paimon=org.apache.paimon.spark.SparkCatalog \
   --conf 
spark.sql.catalog.paimon.warehouse=wasb://,<container>@<account>.blob.core.windows.net/<path>
 \
   --conf fs.azure.account.key.Account.blob.core.windows.net=yyy \
@@ -554,6 +557,7 @@ Place `paimon-obs-{{< version >}}.jar` together with 
`paimon-spark-{{< version >
 
 ```shell
 spark-sql \
+  --conf 
spark.sql.extensions=org.apache.paimon.spark.extensions.PaimonSparkSessionExtensions
 \
   --conf spark.sql.catalog.paimon=org.apache.paimon.spark.SparkCatalog \
   --conf spark.sql.catalog.paimon.warehouse=obs://<bucket>/<path> \
   --conf spark.sql.catalog.paimon.fs.obs.endpoint=obs-endpoint-hostname \

Reply via email to