You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2020/12/23 07:27:30 UTC

[GitHub] [incubator-doris] wuyunfeng commented on a change in pull request #5130: Update outfile(en) to support cos.md

wuyunfeng commented on a change in pull request #5130:
URL: https://github.com/apache/incubator-doris/pull/5130#discussion_r547750732



##########
File path: docs/en/administrator-guide/outfile.md
##########
@@ -156,7 +156,35 @@ WITH BROKER `broker_name`
     If the result is less than 1GB, file will be: `result_0.parquet`.
     
     If larger than 1GB, may be: `result_0.parquet, result_1.parquet, ...`.
+
+4. Example 4
+
+    Export simple query results to the file `cos://${bucket_name}/path/result.txt`. Specify the export format as CSV.
+    
+    ```
+   select k1,k2,v1 from tbl1 limit 100000
+   into outfile "s3a://my_bucket/export/my_file_"
+   FORMAT AS CSV
+   PROPERTIES
+   (
+       "broker.name" = "hdfs_broker",
+       "broker.fs.s3a.access.key" = "xxx",
+       "broker.fs.s3a.secret.key" = "xxxx",
+       "broker.fs.s3a.endpoint" = "https://cos.xxxxxx.myqcloud.com/",
+       "column_separator" = ",",
+       "line_delimiter" = "\n",
+       "max_file_size" = "1024MB"
+    )
+    ```
+    
+    If the result is less than 1GB, file will be: `my_file_0.csv`.
     
+    If larger than 1GB, may be: `my_file_0.csv, result_1.csv, ...`.
+    
+    Some notes: 

Review comment:
       Notes就行了 别这么硬




----------------------------------------------------------------
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.

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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org