gitfortian commented on code in PR #6732:
URL: https://github.com/apache/seatunnel/pull/6732#discussion_r1571691754


##########
docs/en/seatunnel-engine/checkpoint-storage.md:
##########
@@ -124,8 +124,32 @@ seatunnel:
           fs.s3a.aws.credentials.provider: 
org.apache.hadoop.fs.s3a.InstanceProfileCredentialsProvider
 ```
 
+If you want to use Minio that supports the S3 protocol as checkpoint storage, 
you should configure it this way:
+
+```yaml
+
+seatunnel:
+  engine:
+    checkpoint:
+      interval: 10000
+      timeout: 60000
+      storage:
+        type: hdfs
+        max-retained: 3
+        plugin-config:
+          storage.type: s3
+          fs.s3a.access.key: xxxxxxxxx # Access Key  of MinIO
+          fs.s3a.secret.key: xxxxxxxxxxxxxxxxxxxxx # Secret Key of MinIO
+          fs.s3a.endpoint: http://127.0.0.1:9000 # Minio HTTP service access 
address
+          s3.bucket: s3a://test # test is the bucket name which  storage the 
checkpoint file
+          fs.s3a.aws.credentials.provider: 
org.apache.hadoop.fs.s3a.SimpleAWSCredentialsProvider
+       # important: The user of this key needs to have write permission for 
the bucket, otherwise an exception of 403 will be returned
+```
+
 For additional reading on the Hadoop Credential Provider API see: [Credential 
Provider 
API](https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/CredentialProviderAPI.html).
 
+if
+

Review Comment:
   ha  i will remove it



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to