airflow.providers.google.cloud.transfers.bigquery_to_postgres
¶
This module contains Google BigQuery to PostgreSQL operator.
Module Contents¶
Classes¶
Fetch data from a BigQuery table (alternatively fetch selected columns) and insert into PostgreSQL table. |
- 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
Fetch data from a BigQuery table (alternatively fetch selected columns) and insert into 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.