airflow.providers.google.cloud.transfers.bigquery_to_postgres¶
This module contains Google BigQuery to PostgreSQL operator.
Module Contents¶
Classes¶
| Fetches the data from a BigQuery table (alternatively fetch data for selected columns) | 
- class airflow.providers.google.cloud.transfers.bigquery_to_postgres.BigQueryToPostgresOperator(*, target_table_name, postgres_conn_id='postgres_default', **kwargs)[source]¶
- Bases: - airflow.providers.google.cloud.transfers.bigquery_to_sql.BigQueryToSqlBaseOperator- Fetches the data from a BigQuery table (alternatively fetch data for selected columns) and insert that data into a PostgreSQL table. - See also - For more information on how to use this operator, take a look at the guide: Operator - Parameters
- target_table_name (str) – target Postgres table (templated) 
- postgres_conn_id (str) – Reference to postgres connection id. 
 
 
