Source code for airflow.providers.microsoft.azure.log.wasb_task_handler
## 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.from__future__importannotationsimportosimportshutilfromfunctoolsimportcached_propertyfrompathlibimportPathfromtypingimportTYPE_CHECKINGfromazure.core.exceptionsimportHttpResponseErrorfromairflow.configurationimportconffromairflow.providers.microsoft.azure.version_compatimportAIRFLOW_V_3_0_PLUSfromairflow.utils.log.file_task_handlerimportFileTaskHandlerfromairflow.utils.log.logging_mixinimportLoggingMixinifTYPE_CHECKING:importloggingfromairflow.models.taskinstanceimportTaskInstance
[docs]classWasbTaskHandler(FileTaskHandler,LoggingMixin):""" WasbTaskHandler is a python log handler that handles and reads task instance logs. It extends airflow FileTaskHandler and uploads to and reads from Wasb remote storage. """
[docs]defhook(self):"""Return WasbHook."""remote_conn_id=conf.get("logging","REMOTE_LOG_CONN_ID")try:fromairflow.providers.microsoft.azure.hooks.wasbimportWasbHookreturnWasbHook(remote_conn_id)exceptException:self.log.exception("Could not create a WasbHook with connection id '%s'. ""Do you have apache-airflow[azure] installed? ""Does connection the connection exist, and is it ""configured properly?",remote_conn_id,)returnNone
[docs]defset_context(self,ti:TaskInstance,*,identifier:str|None=None)->None:super().set_context(ti,identifier=identifier)# Local location and remote location is needed to open and# upload local log file to Wasb remote storage.ifTYPE_CHECKING:assertself.handlerisnotNonefull_path=self.handler.baseFilenameself.log_relative_path=Path(full_path).relative_to(self.local_base).as_posix()is_trigger_log_context=getattr(ti,"is_trigger_log_context",False)self.upload_on_close=is_trigger_log_contextornotgetattr(ti,"raw",None)
[docs]defclose(self)->None:"""Close and upload local log file to remote storage Wasb."""# When application exit, system shuts down all handlers by# calling close method. Here we check if logger is already# closed to prevent uploading the log to remote storage multiple# times when `logging.shutdown` is called.ifself.closed:returnsuper().close()ifnotself.upload_on_close:returnlocal_loc=os.path.join(self.local_base,self.log_relative_path)remote_loc=os.path.join(self.remote_base,self.log_relative_path)ifos.path.exists(local_loc):# read log and remove old logs to get just the latest additionswithopen(local_loc)aslogfile:log=logfile.read()wasb_write=self.wasb_write(log,remote_loc,append=True)ifwasb_writeandself.delete_local_copy:shutil.rmtree(os.path.dirname(local_loc))# Mark closed so we don't double write if close is called twiceself.closed=True
def_read_remote_logs(self,ti,try_number,metadata=None)->tuple[list[str],list[str]]:messages=[]logs=[]worker_log_relative_path=self._render_filename(ti,try_number)# TODO: fix this - "relative path" i.e currently REMOTE_BASE_LOG_FOLDER should start with "wasb"# unlike others with shceme in URL itself to identify the correct handler.# This puts limitations on ways users can name the base_path.prefix=os.path.join(self.remote_base,worker_log_relative_path)blob_names=[]try:blob_names=self.hook.get_blobs_list(container_name=self.wasb_container,prefix=prefix)exceptHttpResponseErrorase:messages.append(f"tried listing blobs with prefix={prefix} and container={self.wasb_container}")messages.append(f"could not list blobs {e}")self.log.exception("can't list blobs")ifblob_names:uris=[f"https://{self.wasb_container}.blob.core.windows.net/{b}"forbinblob_names]ifAIRFLOW_V_3_0_PLUS:messages=uriselse:messages.extend(["Found remote logs:",*[f" * {x}"forxinsorted(uris)]])else:ifnotAIRFLOW_V_3_0_PLUS:messages.append(f"No logs found in WASB; ti={ti}")fornameinsorted(blob_names):remote_log=""try:remote_log=self.hook.read_file(self.wasb_container,name)ifremote_log:logs.append(remote_log)exceptExceptionase:messages.append(f"Unable to read remote blob '{name}' in container '{self.wasb_container}'\n{e}")self.log.exception("Could not read blob")returnmessages,logs
[docs]defwasb_log_exists(self,remote_log_location:str)->bool:""" Check if remote_log_location exists in remote storage. :param remote_log_location: log's location in remote storage :return: True if location exists else False """try:returnself.hook.check_for_blob(self.wasb_container,remote_log_location)exceptExceptionase:self.log.debug('Exception when trying to check remote location: "%s"',e)returnFalse
[docs]defwasb_read(self,remote_log_location:str,return_error:bool=False):""" Return the log found at the remote_log_location. Returns '' if no logs are found or there is an error. :param remote_log_location: the log's location in remote storage :param return_error: if True, returns a string error message if an error occurs. Otherwise returns '' when an error occurs. """try:returnself.hook.read_file(self.wasb_container,remote_log_location)exceptException:msg=f"Could not read logs from {remote_log_location}"self.log.exception(msg)# return error if neededifreturn_error:returnmsgreturn""
[docs]defwasb_write(self,log:str,remote_log_location:str,append:bool=True)->bool:""" Write the log to the remote_log_location. Fails silently if no hook was created. :param log: the log to write to the remote_log_location :param remote_log_location: the log's location in remote storage :param append: if False, any existing log file is overwritten. If True, the new log is appended to any existing logs. """ifappendandself.wasb_log_exists(remote_log_location):old_log=self.wasb_read(remote_log_location)log=f"{old_log}\n{log}"ifold_logelselogtry:self.hook.load_string(log,self.wasb_container,remote_log_location,overwrite=True)exceptException:self.log.exception("Could not write logs to %s",remote_log_location)returnFalsereturnTrue