Source code for airflow.providers.microsoft.azure.transfers.oracle_to_azure_data_lake

#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

import os
from tempfile import TemporaryDirectory
from typing import Any, Optional, Union

import unicodecsv as csv

from airflow.models import BaseOperator
from airflow.providers.microsoft.azure.hooks.azure_data_lake import AzureDataLakeHook
from airflow.providers.oracle.hooks.oracle import OracleHook
from airflow.utils.decorators import apply_defaults


[docs]class OracleToAzureDataLakeOperator(BaseOperator): """ Moves data from Oracle to Azure Data Lake. The operator runs the query against Oracle and stores the file locally before loading it into Azure Data Lake. :param filename: file name to be used by the csv file. :type filename: str :param azure_data_lake_conn_id: destination azure data lake connection. :type azure_data_lake_conn_id: str :param azure_data_lake_path: destination path in azure data lake to put the file. :type azure_data_lake_path: str :param oracle_conn_id: source Oracle connection. :type oracle_conn_id: str :param sql: SQL query to execute against the Oracle database. (templated) :type sql: str :param sql_params: Parameters to use in sql query. (templated) :type sql_params: Optional[dict] :param delimiter: field delimiter in the file. :type delimiter: str :param encoding: encoding type for the file. :type encoding: str :param quotechar: Character to use in quoting. :type quotechar: str :param quoting: Quoting strategy. See unicodecsv quoting for more information. :type quoting: str """
[docs] template_fields = ('filename', 'sql', 'sql_params')
[docs] ui_color = '#e08c8c'
# pylint: disable=too-many-arguments @apply_defaults def __init__( self, *, filename: str, azure_data_lake_conn_id: str, azure_data_lake_path: str, oracle_conn_id: str, sql: str, sql_params: Optional[dict] = None, delimiter: str = ",", encoding: str = "utf-8", quotechar: str = '"', quoting: str = csv.QUOTE_MINIMAL, **kwargs, ) -> None: super().__init__(**kwargs) if sql_params is None: sql_params = {} self.filename = filename self.oracle_conn_id = oracle_conn_id self.sql = sql self.sql_params = sql_params self.azure_data_lake_conn_id = azure_data_lake_conn_id self.azure_data_lake_path = azure_data_lake_path self.delimiter = delimiter self.encoding = encoding self.quotechar = quotechar self.quoting = quoting
[docs] def _write_temp_file(self, cursor: Any, path_to_save: Union[str, bytes, int]) -> None: with open(path_to_save, 'wb') as csvfile: csv_writer = csv.writer( csvfile, delimiter=self.delimiter, encoding=self.encoding, quotechar=self.quotechar, quoting=self.quoting, ) csv_writer.writerow(map(lambda field: field[0], cursor.description)) csv_writer.writerows(cursor) csvfile.flush()
[docs] def execute(self, context: dict) -> None: oracle_hook = OracleHook(oracle_conn_id=self.oracle_conn_id) azure_data_lake_hook = AzureDataLakeHook(azure_data_lake_conn_id=self.azure_data_lake_conn_id) self.log.info("Dumping Oracle query results to local file") conn = oracle_hook.get_conn() cursor = conn.cursor() # type: ignore[attr-defined] cursor.execute(self.sql, self.sql_params) with TemporaryDirectory(prefix='airflow_oracle_to_azure_op_') as temp: self._write_temp_file(cursor, os.path.join(temp, self.filename)) self.log.info("Uploading local file to Azure Data Lake") azure_data_lake_hook.upload_file( os.path.join(temp, self.filename), os.path.join(self.azure_data_lake_path, self.filename) ) cursor.close() conn.close() # type: ignore[attr-defined]

Was this entry helpful?