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

shenghang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new c67c534b9a [Improve][Docs][seatunnel-engine]add namespace to 
plugin-config (#10271)
c67c534b9a is described below

commit c67c534b9aa8b08e8ca342fd91e382ee25d407fd
Author: zhuxt2015 <[email protected]>
AuthorDate: Mon Jan 12 22:11:42 2026 +0800

    [Improve][Docs][seatunnel-engine]add namespace to plugin-config (#10271)
    
    Co-authored-by: corgy-w <[email protected]>
---
 docs/en/seatunnel-engine/checkpoint-storage.md | 26 ++++++++++++++++++--------
 docs/zh/seatunnel-engine/checkpoint-storage.md | 23 ++++++++++++++++-------
 2 files changed, 34 insertions(+), 15 deletions(-)

diff --git a/docs/en/seatunnel-engine/checkpoint-storage.md 
b/docs/en/seatunnel-engine/checkpoint-storage.md
index 973777c0f7..74051e1921 100644
--- a/docs/en/seatunnel-engine/checkpoint-storage.md
+++ b/docs/en/seatunnel-engine/checkpoint-storage.md
@@ -33,10 +33,10 @@ seatunnel:
     engine:
         checkpoint:
             storage:
-                type: hdfs #plugin name of checkpoint storage, we support 
hdfs(S3, local, hdfs), localfile (native local file) is the default, but this 
plugin is de
-              # plugin configuration
+                type: hdfs # plugin name of checkpoint storage, we support 
hdfs(S3, local, hdfs), localfile (native local file) is the default, but this 
plugin is deprecated
+                # plugin configuration
                 plugin-config: 
-                  namespace: #checkpoint storage parent path, the default 
value is /seatunnel/checkpoint/
+                  namespace: # checkpoint storage parent path, the default 
value is /seatunnel/checkpoint/
                   K1: V1 # plugin other configuration
                   K2: V2 # plugin other configuration   
 ```
@@ -62,6 +62,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # checkpoint storage parent path, the default value is 
/seatunnel/checkpoint/
           storage.type: oss
           oss.bucket: your-bucket
           fs.oss.accessKeyId: your-access-key
@@ -92,6 +93,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # checkpoint storage parent path, the default value is 
/seatunnel/checkpoint/
           storage.type: cos
           cos.bucket: cosn://your-bucket
           fs.cosn.credentials.provider: 
org.apache.hadoop.fs.cosn.auth.SimpleCredentialsProvider
@@ -129,11 +131,12 @@ seatunnel:
                 type: hdfs
                 max-retained: 3
                 plugin-config:
-                    storage.type: s3
-                    s3.bucket: your-bucket
-                    fs.s3a.access.key: your-access-key
-                    fs.s3a.secret.key: your-secret-key
-                    fs.s3a.aws.credentials.provider: 
org.apache.hadoop.fs.s3a.SimpleAWSCredentialsProvider
+                  namespace: # checkpoint storage parent path, the default 
value is /seatunnel/checkpoint/
+                  storage.type: s3
+                  s3.bucket: your-bucket
+                  fs.s3a.access.key: your-access-key
+                  fs.s3a.secret.key: your-secret-key
+                  fs.s3a.aws.credentials.provider: 
org.apache.hadoop.fs.s3a.SimpleAWSCredentialsProvider
                     
 
 ```
@@ -152,6 +155,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # checkpoint storage parent path, the default value is 
/seatunnel/checkpoint/
           storage.type: s3
           s3.bucket: your-bucket
           fs.s3a.endpoint: your-endpoint
@@ -171,6 +175,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # checkpoint storage parent path, the default value is 
/seatunnel/checkpoint/
           storage.type: s3
           fs.s3a.access.key: xxxxxxxxx # Access Key  of MinIO
           fs.s3a.secret.key: xxxxxxxxxxxxxxxxxxxxx # Secret Key of MinIO
@@ -194,6 +199,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # checkpoint storage parent path, the default value is 
/seatunnel/checkpoint/
           storage.type: hdfs
           fs.defaultFS: hdfs://localhost:9000
           // if you used kerberos, you can config like this:
@@ -213,6 +219,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # checkpoint storage parent path, the default value is 
/seatunnel/checkpoint/
           storage.type: hdfs
           fs.defaultFS: hdfs://usdp-bing
           seatunnel.hadoop.dfs.nameservices: usdp-bing
@@ -237,6 +244,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # checkpoint storage parent path, the default value is 
/seatunnel/checkpoint/
           storage.type: hdfs
           fs.defaultFS: file:/// # Ensure that the directory has written 
permission 
 
@@ -256,6 +264,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # checkpoint storage parent path, the default value is 
/seatunnel/checkpoint/
           storage.type: hdfs
           disable.cache: false
           fs.defaultFS: hdfs:///
@@ -274,6 +283,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # checkpoint storage parent path, the default value is 
/seatunnel/checkpoint/
           storage.type: hdfs
           disable.cache: false
           fs.defaultFS: file:///
diff --git a/docs/zh/seatunnel-engine/checkpoint-storage.md 
b/docs/zh/seatunnel-engine/checkpoint-storage.md
index 030789f006..4b5e06427e 100644
--- a/docs/zh/seatunnel-engine/checkpoint-storage.md
+++ b/docs/zh/seatunnel-engine/checkpoint-storage.md
@@ -31,8 +31,8 @@ seatunnel:
     engine:
         checkpoint:
             storage:
-                type: hdfs #检查点存储的插件名称,支持hdfs(S3, local, hdfs), 默认为localfile 
(本地文件), 但这种方式已弃用
-              # 插件配置
+                type: hdfs # 检查点存储的插件名称,支持hdfs(S3, local, hdfs), 默认为localfile 
(本地文件), 但这种方式已弃用
+                # 插件配置
                 plugin-config: 
                   namespace: #检查点存储父路径,默认值为/seatunnel/checkpoint/
                   K1: V1 # 插件其它配置
@@ -60,6 +60,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # 检查点存储父路径,默认值为/seatunnel/checkpoint/
           storage.type: oss
           oss.bucket: your-bucket
           fs.oss.accessKeyId: your-access-key
@@ -90,6 +91,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # 检查点存储父路径,默认值为/seatunnel/checkpoint/
           storage.type: cos
           cos.bucket: cosn://your-bucket
           fs.cosn.credentials.provider: 
org.apache.hadoop.fs.cosn.auth.SimpleCredentialsProvider
@@ -127,11 +129,12 @@ seatunnel:
                 type: hdfs
                 max-retained: 3
                 plugin-config:
-                    storage.type: s3
-                    s3.bucket: your-bucket
-                    fs.s3a.access.key: your-access-key
-                    fs.s3a.secret.key: your-secret-key
-                    fs.s3a.aws.credentials.provider: 
org.apache.hadoop.fs.s3a.SimpleAWSCredentialsProvider
+                  namespace: # 检查点存储父路径,默认值为/seatunnel/checkpoint/
+                  storage.type: s3
+                  s3.bucket: your-bucket
+                  fs.s3a.access.key: your-access-key
+                  fs.s3a.secret.key: your-secret-key
+                  fs.s3a.aws.credentials.provider: 
org.apache.hadoop.fs.s3a.SimpleAWSCredentialsProvider
                     
 
 ```
@@ -150,6 +153,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # 检查点存储父路径,默认值为/seatunnel/checkpoint/
           storage.type: s3
           s3.bucket: your-bucket
           fs.s3a.endpoint: your-endpoint
@@ -170,6 +174,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # 检查点存储父路径,默认值为/seatunnel/checkpoint/
           storage.type: hdfs
           fs.defaultFS: hdfs://localhost:9000
           // 如果您使用kerberos,您可以这样配置:
@@ -187,6 +192,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # 检查点存储父路径,默认值为/seatunnel/checkpoint/
           storage.type: hdfs
           fs.defaultFS: hdfs://usdp-bing
           seatunnel.hadoop.dfs.nameservices: usdp-bing
@@ -211,6 +217,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # 检查点存储父路径,默认值为/seatunnel/checkpoint/
           storage.type: hdfs
           fs.defaultFS: file:/// # 请确保该目录具有写权限
 
@@ -230,6 +237,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # 检查点存储父路径,默认值为/seatunnel/checkpoint/
           storage.type: hdfs
           disable.cache: false
           fs.defaultFS: hdfs:/// # Ensure that the directory has written 
permission
@@ -247,6 +255,7 @@ seatunnel:
         type: hdfs
         max-retained: 3
         plugin-config:
+          namespace: # 检查点存储父路径,默认值为/seatunnel/checkpoint/
           storage.type: hdfs
           disable.cache: false
           fs.defaultFS: file:/// 

Reply via email to