Source code for astronomer.providers.apache.hive.sensors.named_hive_partition

from typing import Dict, Optional

from airflow.exceptions import AirflowException
from airflow.providers.apache.hive.sensors.named_hive_partition import (
    NamedHivePartitionSensor,
)
from airflow.utils.context import Context

from astronomer.providers.apache.hive.triggers.named_hive_partition import (
    NamedHivePartitionTrigger,
)


[docs]class NamedHivePartitionSensorAsync(NamedHivePartitionSensor): """ Waits asynchronously for a set of partitions to show up in Hive. :param partition_names: List of fully qualified names of the partitions to wait for. A fully qualified name is of the form ``schema.table/pk1=pv1/pk2=pv2``, for example, default.users/ds=2016-01-01. :param metastore_conn_id: Metastore thrift service connection id. """
[docs] def execute(self, context: "Context") -> None: """Submit a job to Hive and defer""" if not self.partition_names: raise ValueError("Partition array can't be empty") self.defer( timeout=self.execution_timeout, trigger=NamedHivePartitionTrigger( partition_names=self.partition_names, metastore_conn_id=self.metastore_conn_id, polling_interval=self.poke_interval, ), method_name="execute_complete", )
[docs] def execute_complete(self, context: "Context", event: Optional[Dict[str, str]] = None) -> None: """ Callback for when the trigger fires - returns immediately. Relies on trigger to throw an exception, otherwise it assumes execution was successful. """ if event: if event["status"] == "success": self.log.info(event["message"]) else: raise AirflowException(event["message"]) else: raise AirflowException("No event received in trigger callback")