airflow.providers.google.cloud.transfers.postgres_to_gcs
¶
PostgreSQL to GCS operator.
Module Contents¶
Classes¶
Copy data from Postgres to Google Cloud Storage in JSON or CSV format. |
- class airflow.providers.google.cloud.transfers.postgres_to_gcs.PostgresToGCSOperator(*, postgres_conn_id='postgres_default', use_server_side_cursor=False, cursor_itersize=2000, **kwargs)[source]¶
Bases:
airflow.providers.google.cloud.transfers.sql_to_gcs.BaseSQLToGCSOperator
Copy data from Postgres to Google Cloud Storage in JSON or CSV format.
- Parameters
postgres_conn_id -- Reference to a specific Postgres hook.
use_server_side_cursor -- If server-side cursor should be used for querying postgres. For detailed info, check https://www.psycopg.org/docs/usage.html#server-side-cursors
cursor_itersize -- How many records are fetched at a time in case of server-side cursor.