Source code for airflow.providers.amazon.aws.triggers.redshift_cluster

# 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

from typing import Any, AsyncIterator

from airflow.compat.functools import cached_property
from airflow.providers.amazon.aws.hooks.redshift_cluster import RedshiftAsyncHook, RedshiftHook
from airflow.triggers.base import BaseTrigger, TriggerEvent


[docs]class RedshiftClusterTrigger(BaseTrigger): """AWS Redshift trigger""" def __init__( self, task_id: str, aws_conn_id: str, cluster_identifier: str, operation_type: str, attempts: int, poll_interval: float = 5.0, ): super().__init__() self.task_id = task_id self.poll_interval = poll_interval self.aws_conn_id = aws_conn_id self.cluster_identifier = cluster_identifier self.operation_type = operation_type self.attempts = attempts
[docs] def serialize(self) -> tuple[str, dict[str, Any]]: return ( "airflow.providers.amazon.aws.triggers.redshift_cluster.RedshiftClusterTrigger", { "task_id": self.task_id, "poll_interval": self.poll_interval, "aws_conn_id": self.aws_conn_id, "cluster_identifier": self.cluster_identifier, "attempts": self.attempts, "operation_type": self.operation_type,
}, )
[docs] async def run(self) -> AsyncIterator[TriggerEvent]: hook = RedshiftAsyncHook(aws_conn_id=self.aws_conn_id) while self.attempts >= 1: self.attempts = self.attempts - 1 try: if self.operation_type == "pause_cluster": response = await hook.pause_cluster( cluster_identifier=self.cluster_identifier, poll_interval=self.poll_interval, ) if response.get("status") == "success": yield TriggerEvent(response) else: if self.attempts < 1: yield TriggerEvent({"status": "error", "message": f"{self.task_id} failed"}) elif self.operation_type == "resume_cluster": response = await hook.resume_cluster( cluster_identifier=self.cluster_identifier, polling_period_seconds=self.poll_interval, ) if response: yield TriggerEvent(response) else: error_message = f"{self.task_id} failed" yield TriggerEvent({"status": "error", "message": error_message}) else: yield TriggerEvent(f"{self.operation_type} is not supported") except Exception as e: if self.attempts < 1: yield TriggerEvent({"status": "error", "message": str(e)})
[docs]class RedshiftCreateClusterTrigger(BaseTrigger): """ Trigger for RedshiftCreateClusterOperator. The trigger will asynchronously poll the boto3 API and wait for the Redshift cluster to be in the `available` state. :param cluster_identifier: A unique identifier for the cluster. :param poll_interval: The amount of time in seconds to wait between attempts. :param max_attempt: The maximum number of attempts to be made. :param aws_conn_id: The Airflow connection used for AWS credentials. """ def __init__( self, cluster_identifier: str, poll_interval: int, max_attempt: int, aws_conn_id: str, ): self.cluster_identifier = cluster_identifier self.poll_interval = poll_interval self.max_attempt = max_attempt self.aws_conn_id = aws_conn_id
[docs] def serialize(self) -> tuple[str, dict[str, Any]]: return ( "airflow.providers.amazon.aws.triggers.redshift_cluster.RedshiftCreateClusterTrigger", { "cluster_identifier": str(self.cluster_identifier), "poll_interval": str(self.poll_interval), "max_attempt": str(self.max_attempt), "aws_conn_id": str(self.aws_conn_id),
}, ) @cached_property
[docs] def hook(self) -> RedshiftHook: return RedshiftHook(aws_conn_id=self.aws_conn_id)
[docs] async def run(self): async with self.hook.async_conn as client: await client.get_waiter("cluster_available").wait( ClusterIdentifier=self.cluster_identifier, WaiterConfig={ "Delay": int(self.poll_interval), "MaxAttempts": int(self.max_attempt), }, ) yield TriggerEvent({"status": "success", "message": "Cluster Created"})

Was this entry helpful?