hailin0 commented on code in PR #5101:
URL: https://github.com/apache/seatunnel/pull/5101#discussion_r1289596298


##########
docs/en/connector-v2/source/S3File.md:
##########
@@ -300,9 +281,56 @@ Reader the sheet of the workbook,Only used when 
file_format_type is excel.
 
 ```
 
-### file_filter_pattern [string]
+3. Use `InstanceProfileCredentialsProvider` to authentication
+   The file type in S3 is json and has five fields (`id`, `name`, `age`, 
`sex`, `type`), so need config schema option.
+   In this job, we only need send `id` and `name` column to mysql.
 
-Filter pattern, which used for filtering files.
+```
+# Defining the runtime environment
+env {
+  # You can set flink configuration here
+  execution.parallelism = 1
+  job.mode = "BATCH"
+}
+
+source {
+  S3File {
+    path = "/seatunnel/json"
+    bucket = "s3a://seatunnel-test"
+    fs.s3a.endpoint="s3.cn-north-1.amazonaws.com.cn"
+    
fs.s3a.aws.credentials.provider="com.amazonaws.auth.InstanceProfileCredentialsProvider"
+    file_format_type = "json"
+    read_columns = ["id", "name"]
+    schema {
+      fields {
+        id = int 
+        name = string
+        age = int
+        sex = int
+        type = string
+      }
+    }
+  }
+}
+
+transform {
+  # If you would like to get more information about how to configure seatunnel 
and see full list of transform plugins,
+    # please go to https://seatunnel.apache.org/docs/category/transform-v2
+}
+
+sink {
+    jdbc {

Review Comment:
   What if the user only uses s3 file without installing the database



-- 
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: commits-unsubscr...@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to