airflow.providers.google.cloud.transfers.bigquery_to_postgres

This module contains Google BigQuery to PostgreSQL operator.

Module Contents

Classes

BigQueryToPostgresOperator

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
template_fields: Sequence[str][source]
get_sql_hook()[source]

Return a concrete SQL Hook (a PostgresHook for instance).

Was this entry helpful?