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.providers.amazon.aws.hooks.redshift_cluster import RedshiftAsyncHook
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"}) 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)})

Was this entry helpful?