airflow.providers.teradata.transfers.azure_blob_to_teradata
¶
Module Contents¶
Classes¶
Loads CSV, JSON and Parquet format data from Azure Blob Storage to Teradata. |
- class airflow.providers.teradata.transfers.azure_blob_to_teradata.AzureBlobStorageToTeradataOperator(*, blob_source_key, azure_conn_id='azure_default', teradata_table, teradata_conn_id='teradata_default', **kwargs)[source]¶
Bases:
airflow.models.BaseOperator
Loads CSV, JSON and Parquet format data from Azure Blob Storage to Teradata.
See also
For more information on how to use this operator, take a look at the guide: AzureBlobStorageToTeradataOperator
- Parameters
blob_source_key (str) – The URI format specifying the location of the Azure blob object store.(templated) The URI format is /az/YOUR-STORAGE-ACCOUNT.blob.core.windows.net/YOUR-CONTAINER/YOUR-BLOB-LOCATION. Refer to https://docs.teradata.com/search/documents?query=native+object+store&sort=last_update&virtual-field=title_only&content-lang=en-US
azure_conn_id (str) – The Airflow WASB connection used for azure blob credentials.
teradata_table (str) – The name of the teradata table to which the data is transferred.(templated)
teradata_conn_id (str) – The connection ID used to connect to Teradata Teradata connection
Note that
blob_source_key
andteradata_table
are templated, so you can use variables in them if you wish.