Airflow Summit 2026 is coming August 31 - September 2 in Austin, TX. Register now to secure your spot!

Source code for airflow.providers.amazon.aws.log.cloudwatch_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__ import annotations

import contextlib
import copy
import json
import logging
import os
import shutil
from collections.abc import Generator
from datetime import date, datetime, timedelta, timezone
from functools import cached_property
from pathlib import Path
from typing import TYPE_CHECKING, Any

import attrs
import watchtower
from botocore.exceptions import ClientError

from airflow.providers.amazon.aws.hooks.logs import AwsLogsHook
from airflow.providers.amazon.aws.utils import datetime_to_epoch_utc_ms
from airflow.providers.common.compat.sdk import conf
from airflow.utils.log.file_task_handler import FileTaskHandler
from airflow.utils.log.logging_mixin import LoggingMixin

if TYPE_CHECKING:
    import structlog.typing

    from airflow.models.taskinstance import TaskInstance
    from airflow.providers.amazon.aws.hooks.logs import CloudWatchLogEvent
    from airflow.sdk.types import RuntimeTaskInstanceProtocol as RuntimeTI
    from airflow.utils.log.file_task_handler import (
        LogMessages,
        LogResponse,
        LogSourceInfo,
        RawLogStream,
        StreamingLogResponse,
    )


[docs] def json_serialize_legacy(value: Any) -> str | None: """ JSON serializer replicating legacy watchtower behavior. The legacy `watchtower@2.0.1` json serializer function that serialized datetime objects as ISO format and all other non-JSON-serializable to `null`. :param value: the object to serialize :return: string representation of `value` if it is an instance of datetime or `None` otherwise """ if isinstance(value, (date, datetime)): return value.isoformat() return None
[docs] def json_serialize(value: Any) -> str | None: """ JSON serializer replicating current watchtower behavior. This provides customers with an accessible import, `airflow.providers.amazon.aws.log.cloudwatch_task_handler.json_serialize` :param value: the object to serialize :return: string representation of `value` """ return watchtower._json_serialize_default(value)
@attrs.define(kw_only=True)
[docs] class CloudWatchRemoteLogIO(LoggingMixin): # noqa: D101
[docs] base_log_folder: Path = attrs.field(converter=Path)
[docs] remote_base: str = ""
[docs] delete_local_copy: bool = True
[docs] log_group_arn: str
[docs] log_stream_name: str = ""
[docs] log_group: str = attrs.field(init=False, repr=False)
[docs] region_name: str = attrs.field(init=False, repr=False)
_cached_handler: watchtower.CloudWatchLogHandler | None = attrs.field( init=False, default=None, repr=False ) _closed: bool = attrs.field(init=False, default=False, repr=False) @log_group.default def _(self): return self.log_group_arn.split(":")[6] @region_name.default def _(self): return self.log_group_arn.split(":")[3] @cached_property
[docs] def hook(self): """Returns AwsLogsHook.""" return AwsLogsHook( aws_conn_id=conf.get("logging", "remote_log_conn_id"), region_name=self.region_name )
def _build_handler(self) -> watchtower.CloudWatchLogHandler: _json_serialize = conf.getimport("aws", "cloudwatch_task_handler_json_serializer", fallback=None) return watchtower.CloudWatchLogHandler( log_group_name=self.log_group, log_stream_name=self.log_stream_name, use_queues=True, boto3_client=self.hook.get_conn(), json_serialize_default=_json_serialize or json_serialize_legacy, ) @property
[docs] def handler(self) -> watchtower.CloudWatchLogHandler: """ Return the streaming handler, rebuilding it if dictConfig closed it mid-task. dictConfig's non-incremental reset closes every handler in ``logging._handlerList``, leaving this one with ``shutting_down=True`` (it then silently drops every record). Rebuild only while the IO is live: once :meth:`close` has run, keep the closed handler so a late record is dropped instead of spawning an orphan handler and background thread. """ if self._cached_handler is None or (not self._closed and self._cached_handler.shutting_down): self._cached_handler = self._build_handler() return self._cached_handler
@cached_property
[docs] def processors(self) -> tuple[structlog.typing.Processor, ...]: from logging import getLogRecordFactory import structlog.stdlib logRecordFactory = getLogRecordFactory() # The handler MUST be initted here, before the processor is actually used to log anything. # Otherwise, logging that occurs during the creation of the handler can create infinite loops. _ = self.handler from airflow.sdk.log import relative_path_from_logger def proc(logger: structlog.typing.WrappedLogger, method_name: str, event: structlog.typing.EventDict): if not logger or not (stream_name := relative_path_from_logger(logger)): return event # Resolve the handler on every record: configure_logging() may have # closed the one built above, in which case ``handler`` rebuilds it. handler = self.handler # We can't set the log stream name in the above init handler because # the log path isn't known at that stage. # Instead, we should always rely on the path (log stream name) provided by the logger. handler.log_stream_name = stream_name.as_posix().replace(":", "_") name = event.get("logger_name") or event.get("logger", "") level = structlog.stdlib.NAME_TO_LEVEL.get(method_name.lower(), logging.INFO) msg = copy.copy(event) created = None if ts := msg.pop("timestamp", None): with contextlib.suppress(Exception): created = datetime.fromisoformat(ts) record = logRecordFactory( name, level, pathname="", lineno=0, msg=msg, args=(), exc_info=None, func=None, sinfo=None ) if created is not None: ct = created.timestamp() record.created = ct record.msecs = int((ct - int(ct)) * 1000) + 0.0 # Copied from stdlib logging handler.handle(record) return event return (proc,)
[docs] def close(self): """ Flush pending events one last time and mark the IO closed. Only ever called from :meth:`upload`. Mark the IO closed first so ``handler`` stops rebuilding: a record arriving after teardown must be dropped, not revive a fresh handler. Read the cached handler directly so we never build one just to flush it. """ self._closed = True handler = self._cached_handler if handler is None or handler.shutting_down: return handler.flush()
[docs] def upload(self, path: os.PathLike | str, ti: RuntimeTI | None = None) -> None: """Upload the given log path to the remote storage.""" # No batch upload — logs stream in real-time. Flush pending events and clean up. self.close() if self.delete_local_copy: base = self.base_log_folder.resolve() raw = Path(path) local_path = (raw if raw.is_absolute() else base / raw).resolve() try: local_path.relative_to(base) except ValueError: self.log.warning( "Skipping deletion: path %s is outside base_log_folder %s", local_path, base, ) return parent = local_path.parent if parent.exists(): shutil.rmtree(parent, ignore_errors=True) if parent.exists(): self.log.warning("Failed to delete local log dir: %s", parent)
[docs] def read(self, relative_path: str, ti: RuntimeTI) -> LogResponse: messages, logs = self.stream(relative_path, ti) str_logs: list[str] = [f"{msg}\n" for group in logs for msg in group] return messages, str_logs
[docs] def stream(self, relative_path: str, ti: RuntimeTI) -> StreamingLogResponse: logs: list[RawLogStream] = [] messages = [ f"Reading remote log from Cloudwatch log_group: {self.log_group} log_stream: {relative_path}" ] try: gen: RawLogStream = ( self._parse_log_event_as_dumped_json(event) for event in self.get_cloudwatch_logs(relative_path, ti) ) logs = [gen] except Exception as e: messages.append(str(e)) return messages, logs
[docs] def get_cloudwatch_logs( self, stream_name: str, task_instance: RuntimeTI ) -> Generator[CloudWatchLogEvent, None, None]: """ Return all logs from the given log stream. :param stream_name: name of the Cloudwatch log stream to get all logs from :param task_instance: the task instance to get logs about :return: string of all logs from the given log stream """ stream_name = stream_name.replace(":", "_") # If there is an end_date to the task instance, fetch logs until that date + 30 seconds # 30 seconds is an arbitrary buffer so that we don't miss any logs that were emitted end_time = ( None if (end_date := getattr(task_instance, "end_date", None)) is None else datetime_to_epoch_utc_ms(end_date + timedelta(seconds=30)) ) events = self.hook.get_log_events( log_group=self.log_group, log_stream_name=stream_name, end_time=end_time, ) def _iter_events() -> Generator[CloudWatchLogEvent, None, None]: try: yield from events except ClientError as e: # A missing log stream means no logs were written for this stream # (e.g. the task logged to stdout instead of remote storage, or has # not produced any logs). Surface a hint instead of a 500 error, and # instead of an empty view that looks like remote logging silently failed. if e.response.get("Error", {}).get("Code") != "ResourceNotFoundException": raise notice_ts = end_time or datetime_to_epoch_utc_ms(datetime.now(tz=timezone.utc)) yield { "timestamp": notice_ts, "ingestionTime": notice_ts, "message": ( f"No log stream found in CloudWatch (log_group={self.log_group}, " f"log_stream={stream_name}). The task may have logged to stdout only, " f"not produced any logs yet, or remote logging may be misconfigured." ), } return _iter_events()
def _parse_log_event_as_dumped_json(self, event: CloudWatchLogEvent) -> str: event_dt = datetime.fromtimestamp(event["timestamp"] / 1000.0, tz=timezone.utc).isoformat() event_msg = event["message"] try: message = json.loads(event_msg) message["timestamp"] = event_dt except Exception: message = {"timestamp": event_dt, "event": event_msg} return json.dumps(message)
[docs] class CloudwatchTaskHandler(FileTaskHandler, LoggingMixin): """ CloudwatchTaskHandler is a python log handler that handles and reads task instance logs. It extends airflow FileTaskHandler and uploads to and reads from Cloudwatch. :param base_log_folder: base folder to store logs locally :param log_group_arn: ARN of the Cloudwatch log group for remote log storage with format ``arn:aws:logs:{region name}:{account id}:log-group:{group name}`` """
[docs] trigger_should_wrap = True
def __init__( self, base_log_folder: str, log_group_arn: str, max_bytes: int = 0, backup_count: int = 0, delay: bool = False, **kwargs, ) -> None: # support log file size handling of FileTaskHandler super().__init__( base_log_folder=base_log_folder, max_bytes=max_bytes, backup_count=backup_count, delay=delay ) split_arn = log_group_arn.split(":")
[docs] self.handler = None
[docs] self.log_group = split_arn[6]
[docs] self.region_name = split_arn[3]
[docs] self.closed = False
[docs] self.log_relative_path: str = ""
[docs] self.io = CloudWatchRemoteLogIO( base_log_folder=base_log_folder, log_group_arn=log_group_arn, delete_local_copy=conf.getboolean("logging", "delete_local_logs"), )
@cached_property
[docs] def hook(self): """Returns AwsLogsHook.""" return AwsLogsHook( aws_conn_id=conf.get("logging", "REMOTE_LOG_CONN_ID"), region_name=self.region_name )
def _render_filename(self, ti, try_number): # Replace unsupported log group name characters return super()._render_filename(ti, try_number).replace(":", "_")
[docs] def set_context(self, ti: TaskInstance, *, identifier: str | None = None): super().set_context(ti) self.io.log_stream_name = self._render_filename(ti, ti.try_number) self.handler = self.io.handler self.ti = ti self.log_relative_path = self.io.log_stream_name
[docs] def close(self): """Close the handler responsible for the upload of the local log file to Cloudwatch.""" # 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. if self.closed: return # Close the handler the IO is actually using now, not the reference captured in # set_context(): dictConfig may have closed that one and the IO rebuilt since, and # closing the stale handler would leak the live handler's background thread. live_handler = self.io._cached_handler if live_handler is not None: live_handler.close() if hasattr(self, "ti"): try: self.io.upload(self.log_relative_path, self.ti) except Exception: self.log.exception("Failed to delete local log after streaming to CloudWatch") # Mark closed so we don't double write if close is called twice self.closed = True
def _read_remote_logs( self, task_instance, try_number, metadata=None ) -> tuple[LogSourceInfo, LogMessages]: stream_name = self._render_filename(task_instance, try_number) messages, logs = self.io.read(stream_name, task_instance) messages = [ f"Reading remote log from Cloudwatch log_group: {self.io.log_group} log_stream: {stream_name}" ] try: events = self.io.get_cloudwatch_logs(stream_name, task_instance) logs = ["\n".join(self._event_to_str(event) for event in events)] except Exception as e: logs = [] messages.append(str(e)) return messages, logs def _event_to_str(self, event: CloudWatchLogEvent) -> str: event_dt = datetime.fromtimestamp(event["timestamp"] / 1000.0, tz=timezone.utc) # Format a datetime object to a string in Zulu time without milliseconds. formatted_event_dt = event_dt.strftime("%Y-%m-%dT%H:%M:%SZ") message = event["message"] return f"[{formatted_event_dt}] {message}"

Was this entry helpful?