KassieZ commented on code in PR #2325:
URL: https://github.com/apache/doris-website/pull/2325#discussion_r2059751416


##########
docs/data-operate/import/data-source/bigquery.md:
##########
@@ -100,20 +100,24 @@ PROPERTIES (
 
 ## 2. Export BigQuery Data
 
-1. **Export to GCS Parquet format file through Export method**
-  ```sql
-    EXPORT DATA
-      OPTIONS (
-        uri = 'gs://mybucket/export/sales_data/*.parquet',
-        format = 'PARQUET')
-    AS (
-      SELECT *
-      FROM test.sales_data 
-    );
-  ```
-2. **View the exported files on GCS**
-  The above command will export the data of sales_data to GCS, and each 
partition will generate one or more files with increasing file names. For 
details, please refer to 
[exporting-data](https://cloud.google.com/bigquery/docs/exporting-data#exporting_data_into_one_or_more_files),
 as follows:
-  ![img](/images/data-operate/gcs_export.png)
+2.1. **Export to GCS Parquet format file through Export method**
+
+   ```sql
+   EXPORT DATA
+     OPTIONS (
+       uri = 'gs://mybucket/export/sales_data/*.parquet',
+       format = 'PARQUET')
+   AS (
+     SELECT *
+     FROM test.sales_data 
+   );
+   ```
+    
+2.2. **View the exported files on GCS**
+
+   The above command will export the data of sales_data to GCS, and each 
partition will generate one or more files with increasing file names. For 
details, please refer to 
[exporting-data](https://cloud.google.com/bigquery/docs/exporting-data#exporting_data_into_one_or_more_files),
 as follows:
+
+   ![img](/images/data-operate/gcs_export.png)

Review Comment:
   `![img]` the alt descriiption should be related to the content, such as : 
gcs_export



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to