airflow.providers.google.cloud.transfers.bigquery_to_mssql
¶
This module contains Google BigQuery to MSSQL 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_mssql.BigQueryToMsSqlOperator(*, source_project_dataset_table, mssql_table, selected_fields=None, gcp_conn_id='google_cloud_default', mssql_conn_id='mssql_default', database=None, delegate_to=None, replace=False, batch_size=1000, location=None, impersonation_chain=None, **kwargs)[source]¶
Bases:
airflow.models.BaseOperator
Fetches the data from a BigQuery table (alternatively fetch data for selected columns) and insert that data into a MSSQL table.
Note
If you pass fields to
selected_fields
which are in different order than the order of columns already in BQ table, the data will still be in the order of BQ table. For example if the BQ table has 3 columns as[A,B,C]
and you pass 'B,A' in theselected_fields
the data would still be of the form'A,B'
and passed through this form to MSSQLExample:
transfer_data = BigQueryToMsSqlOperator( task_id='task_id', source_project_dataset_table='my-project.mydataset.mytable', mssql_table='dest_table_name', replace=True, )
- Parameters
source_project_dataset_table (str) -- A dotted
<project>.<dataset>.<table>
: the big query table of originselected_fields (Optional[Union[List[str], str]]) -- List of fields to return (comma-separated). If unspecified, all fields are returned.
gcp_conn_id (str) -- reference to a specific Google Cloud hook.
delegate_to (Optional[str]) -- The account to impersonate using domain-wide delegation of authority, if any. For this to work, the service account making the request must have domain-wide delegation enabled.
mssql_conn_id (str) -- reference to a specific mssql hook
database (Optional[str]) -- name of database which overwrite defined one in connection
replace (bool) -- Whether to replace instead of insert
batch_size (int) -- The number of rows to take in each batch
location (Optional[str]) -- The location used for the operation.
impersonation_chain (Optional[Union[str, Sequence[str]]]) -- Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated).