airflow.providers.google.cloud.transfers.bigquery_to_postgres

This module contains Google BigQuery to PostgreSQL operator.

Module Contents

Classes

BigQueryToPostgresOperator

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
get_sql_hook()[source]

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

Was this entry helpful?