Source code for airflow.providers.amazon.aws.hooks.rds
## 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."""Interact with AWS RDS."""from__future__importannotationsimporttimefromtypingimportTYPE_CHECKING,Callablefromairflow.exceptionsimportAirflowException,AirflowNotFoundExceptionfromairflow.providers.amazon.aws.hooks.base_awsimportAwsGenericHookfromairflow.providers.amazon.aws.utils.waiter_with_loggingimportwaitifTYPE_CHECKING:frommypy_boto3_rdsimportRDSClient# noqa: F401
[docs]classRdsHook(AwsGenericHook["RDSClient"]):""" Interact with Amazon Relational Database Service (RDS). Provide thin wrapper around :external+boto3:py:class:`boto3.client("rds") <RDS.Client>`. Additional arguments (such as ``aws_conn_id``) may be specified and are passed down to the underlying AwsBaseHook. .. seealso:: - :class:`airflow.providers.amazon.aws.hooks.base_aws.AwsBaseHook` - `Amazon RDS and Aurora Documentation \ <https://docs.aws.amazon.com/rds/index.html>`__ """def__init__(self,*args,**kwargs)->None:kwargs["client_type"]="rds"super().__init__(*args,**kwargs)
[docs]defget_db_snapshot_state(self,snapshot_id:str)->str:""" Get the current state of a DB instance snapshot. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_db_snapshots` :param snapshot_id: The ID of the target DB instance snapshot :return: Returns the status of the DB snapshot as a string (eg. "available") :raises AirflowNotFoundException: If the DB instance snapshot does not exist. """try:response=self.conn.describe_db_snapshots(DBSnapshotIdentifier=snapshot_id)exceptself.conn.exceptions.DBSnapshotNotFoundFaultase:raiseAirflowNotFoundException(e)returnresponse["DBSnapshots"][0]["Status"].lower()
[docs]defwait_for_db_snapshot_state(self,snapshot_id:str,target_state:str,check_interval:int=30,max_attempts:int=40)->None:""" Poll DB Snapshots until target_state is reached; raise AirflowException after max_attempts. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_db_snapshots` :param snapshot_id: The ID of the target DB instance snapshot :param target_state: Wait until this state is reached :param check_interval: The amount of time in seconds to wait between attempts :param max_attempts: The maximum number of attempts to be made """defpoke():returnself.get_db_snapshot_state(snapshot_id)target_state=target_state.lower()iftarget_statein("available","deleted","completed"):waiter=self.conn.get_waiter(f"db_snapshot_{target_state}")# type: ignorewaiter.wait(DBSnapshotIdentifier=snapshot_id,WaiterConfig={"Delay":check_interval,"MaxAttempts":max_attempts},)else:self._wait_for_state(poke,target_state,check_interval,max_attempts)self.log.info("DB snapshot '%s' reached the '%s' state",snapshot_id,target_state)
[docs]defget_db_cluster_snapshot_state(self,snapshot_id:str)->str:""" Get the current state of a DB cluster snapshot. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_db_cluster_snapshots` :param snapshot_id: The ID of the target DB cluster. :return: Returns the status of the DB cluster snapshot as a string (eg. "available") :raises AirflowNotFoundException: If the DB cluster snapshot does not exist. """try:response=self.conn.describe_db_cluster_snapshots(DBClusterSnapshotIdentifier=snapshot_id)exceptself.conn.exceptions.DBClusterSnapshotNotFoundFaultase:raiseAirflowNotFoundException(e)returnresponse["DBClusterSnapshots"][0]["Status"].lower()
[docs]defwait_for_db_cluster_snapshot_state(self,snapshot_id:str,target_state:str,check_interval:int=30,max_attempts:int=40)->None:""" Poll DB Cluster Snapshots until target_state is reached; raise AirflowException after a max_attempts. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_db_cluster_snapshots` :param snapshot_id: The ID of the target DB cluster snapshot :param target_state: Wait until this state is reached :param check_interval: The amount of time in seconds to wait between attempts :param max_attempts: The maximum number of attempts to be made """defpoke():returnself.get_db_cluster_snapshot_state(snapshot_id)target_state=target_state.lower()iftarget_statein("available","deleted"):waiter=self.conn.get_waiter(f"db_cluster_snapshot_{target_state}")# type: ignorewaiter.wait(DBClusterSnapshotIdentifier=snapshot_id,WaiterConfig={"Delay":check_interval,"MaxAttempts":max_attempts},)else:self._wait_for_state(poke,target_state,check_interval,max_attempts)self.log.info("DB cluster snapshot '%s' reached the '%s' state",snapshot_id,target_state)
[docs]defget_export_task_state(self,export_task_id:str)->str:""" Get the current state of an RDS snapshot export to Amazon S3. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_export_tasks` :param export_task_id: The identifier of the target snapshot export task. :return: Returns the status of the snapshot export task as a string (eg. "canceled") :raises AirflowNotFoundException: If the export task does not exist. """try:response=self.conn.describe_export_tasks(ExportTaskIdentifier=export_task_id)exceptself.conn.exceptions.ClientErrorase:ife.response["Error"]["Code"]in("ExportTaskNotFound","ExportTaskNotFoundFault"):raiseAirflowNotFoundException(e)raiseereturnresponse["ExportTasks"][0]["Status"].lower()
[docs]defwait_for_export_task_state(self,export_task_id:str,target_state:str,check_interval:int=30,max_attempts:int=40)->None:""" Poll export tasks until target_state is reached; raise AirflowException after max_attempts. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_export_tasks` :param export_task_id: The identifier of the target snapshot export task. :param target_state: Wait until this state is reached :param check_interval: The amount of time in seconds to wait between attempts :param max_attempts: The maximum number of attempts to be made """defpoke():returnself.get_export_task_state(export_task_id)target_state=target_state.lower()self._wait_for_state(poke,target_state,check_interval,max_attempts)self.log.info("export task '%s' reached the '%s' state",export_task_id,target_state)
[docs]defget_event_subscription_state(self,subscription_name:str)->str:""" Get the current state of an RDS snapshot export to Amazon S3. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_event_subscriptions` :param subscription_name: The name of the target RDS event notification subscription. :return: Returns the status of the event subscription as a string (eg. "active") :raises AirflowNotFoundException: If the event subscription does not exist. """try:response=self.conn.describe_event_subscriptions(SubscriptionName=subscription_name)exceptself.conn.exceptions.ClientErrorase:ife.response["Error"]["Code"]in("SubscriptionNotFoundFault","SubscriptionNotFound"):raiseAirflowNotFoundException(e)raiseereturnresponse["EventSubscriptionsList"][0]["Status"].lower()
[docs]defwait_for_event_subscription_state(self,subscription_name:str,target_state:str,check_interval:int=30,max_attempts:int=40)->None:""" Poll Event Subscriptions until target_state is reached; raise AirflowException after max_attempts. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_event_subscriptions` :param subscription_name: The name of the target RDS event notification subscription. :param target_state: Wait until this state is reached :param check_interval: The amount of time in seconds to wait between attempts :param max_attempts: The maximum number of attempts to be made """defpoke():returnself.get_event_subscription_state(subscription_name)target_state=target_state.lower()self._wait_for_state(poke,target_state,check_interval,max_attempts)self.log.info("event subscription '%s' reached the '%s' state",subscription_name,target_state)
[docs]defget_db_instance_state(self,db_instance_id:str)->str:""" Get the current state of a DB instance. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_db_instances` :param db_instance_id: The ID of the target DB instance. :return: Returns the status of the DB instance as a string (eg. "available") :raises AirflowNotFoundException: If the DB instance does not exist. """try:response=self.conn.describe_db_instances(DBInstanceIdentifier=db_instance_id)exceptself.conn.exceptions.DBInstanceNotFoundFaultase:raiseAirflowNotFoundException(e)returnresponse["DBInstances"][0]["DBInstanceStatus"].lower()
[docs]defwait_for_db_instance_state(self,db_instance_id:str,target_state:str,check_interval:int=30,max_attempts:int=40)->None:""" Poll DB Instances until target_state is reached; raise AirflowException after max_attempts. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_db_instances` :param db_instance_id: The ID of the target DB instance. :param target_state: Wait until this state is reached :param check_interval: The amount of time in seconds to wait between attempts :param max_attempts: The maximum number of attempts to be made """defpoke():returnself.get_db_instance_state(db_instance_id)target_state=target_state.lower()iftarget_statein("available","deleted","stopped"):waiter=self.conn.get_waiter(f"db_instance_{target_state}")# type: ignorewait(waiter=waiter,waiter_delay=check_interval,waiter_max_attempts=max_attempts,args={"DBInstanceIdentifier":db_instance_id},failure_message=f"Rdb DB instance failed to reach state {target_state}",status_message="Rds DB instance state is",status_args=["DBInstances[0].DBInstanceStatus"],)else:self._wait_for_state(poke,target_state,check_interval,max_attempts)self.log.info("DB cluster '%s' reached the '%s' state",db_instance_id,target_state)
[docs]defget_db_cluster_state(self,db_cluster_id:str)->str:""" Get the current state of a DB cluster. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_db_clusters` :param db_cluster_id: The ID of the target DB cluster. :return: Returns the status of the DB cluster as a string (eg. "available") :raises AirflowNotFoundException: If the DB cluster does not exist. """try:response=self.conn.describe_db_clusters(DBClusterIdentifier=db_cluster_id)exceptself.conn.exceptions.DBClusterNotFoundFaultase:raiseAirflowNotFoundException(e)returnresponse["DBClusters"][0]["Status"].lower()
[docs]defwait_for_db_cluster_state(self,db_cluster_id:str,target_state:str,check_interval:int=30,max_attempts:int=40)->None:""" Poll DB Clusters until target_state is reached; raise AirflowException after max_attempts. .. seealso:: - :external+boto3:py:meth:`RDS.Client.describe_db_clusters` :param db_cluster_id: The ID of the target DB cluster. :param target_state: Wait until this state is reached :param check_interval: The amount of time in seconds to wait between attempts :param max_attempts: The maximum number of attempts to be made """defpoke():returnself.get_db_cluster_state(db_cluster_id)target_state=target_state.lower()iftarget_statein("available","deleted","stopped"):waiter=self.conn.get_waiter(f"db_cluster_{target_state}")# type: ignorewaiter.wait(DBClusterIdentifier=db_cluster_id,WaiterConfig={"Delay":check_interval,"MaxAttempts":max_attempts},)else:self._wait_for_state(poke,target_state,check_interval,max_attempts)self.log.info("DB cluster snapshot '%s' reached the '%s' state",db_cluster_id,target_state)
def_wait_for_state(self,poke:Callable[...,str],target_state:str,check_interval:int,max_attempts:int,)->None:""" Poll the poke function for the current state until it reaches the target_state. :param poke: A function that returns the current state of the target resource as a string. :param target_state: Wait until this state is reached :param check_interval: The amount of time in seconds to wait between attempts :param max_attempts: The maximum number of attempts to be made """state=poke()tries=1whilestate!=target_state:self.log.info("Current state is %s",state)iftries>=max_attempts:raiseAirflowException("Max attempts exceeded")time.sleep(check_interval)state=poke()tries+=1