This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new d8a325705d fix bigquery_to_gcs documentation (#40219)
d8a325705d is described below
commit d8a325705d97cfb18ba3e2af186ce9aa3dc3628f
Author: Joonas Venäläinen <[email protected]>
AuthorDate: Fri Jun 14 17:14:19 2024 +0300
fix bigquery_to_gcs documentation (#40219)
Currently the documentation states Importing files and also suggest that
the file would be imported from GCS to BigQuery instead of what the operator
actually does which is exporting single BigQuery table to GCS
---
.../operators/transfer/bigquery_to_gcs.rst | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/docs/apache-airflow-providers-google/operators/transfer/bigquery_to_gcs.rst
b/docs/apache-airflow-providers-google/operators/transfer/bigquery_to_gcs.rst
index 6c6cfce638..b0eeb0ac5e 100644
---
a/docs/apache-airflow-providers-google/operators/transfer/bigquery_to_gcs.rst
+++
b/docs/apache-airflow-providers-google/operators/transfer/bigquery_to_gcs.rst
@@ -37,7 +37,7 @@ Prerequisite Tasks
Operator
^^^^^^^^
-File transfer from GCS to BigQuery is performed with the
+Table export from BigQuery to GCS is performed with the
:class:`~airflow.providers.google.cloud.transfers.bigquery_to_gcs.BigQueryToGCSOperator`
operator.
Use :ref:`Jinja templating <concepts:jinja-templating>` with
@@ -48,10 +48,10 @@ You may define multiple destination URIs, as well as other
settings such as ``co
``export_format``. For more information, please refer to the links above.
-Importing files
----------------
+Exporting tables
+----------------
-The following Operator imports one or more files from GCS into a BigQuery
table.
+The following Operator exports BigQuery table into a GCS.
.. exampleinclude::
/../../tests/system/providers/google/cloud/bigquery/example_bigquery_to_gcs.py
:language: python