Source code for airflow.providers.amazon.aws.sensors.sqs
## 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."""Reads and then deletes the message from SQS queue"""importjsonimportwarningsfromtypingimportTYPE_CHECKING,Any,Optional,Sequencefromjsonpath_ngimportparsefromtyping_extensionsimportLiteralfromairflow.exceptionsimportAirflowExceptionfromairflow.providers.amazon.aws.hooks.sqsimportSqsHookfromairflow.sensors.baseimportBaseSensorOperatorifTYPE_CHECKING:fromairflow.utils.contextimportContext
[docs]classSqsSensor(BaseSensorOperator):""" Get messages from an SQS queue and then deletes the message from the SQS queue. If deletion of messages fails an AirflowException is thrown otherwise, the message is pushed through XCom with the key ``messages``. :param aws_conn_id: AWS connection id :param sqs_queue: The SQS queue url (templated) :param max_messages: The maximum number of messages to retrieve for each poke (templated) :param wait_time_seconds: The time in seconds to wait for receiving messages (default: 1 second) :param visibility_timeout: Visibility timeout, a period of time during which Amazon SQS prevents other consumers from receiving and processing the message. :param message_filtering: Specified how received messages should be filtered. Supported options are: `None` (no filtering, default), `'literal'` (message Body literal match) or `'jsonpath'` (message Body filtered using a JSONPath expression). You may add further methods by overriding the relevant class methods. :param message_filtering_match_values: Optional value/s for the message filter to match on. For example, with literal matching, if a message body matches any of the specified values then it is included. For JSONPath matching, the result of the JSONPath expression is used and may match any of the specified values. :param message_filtering_config: Additional configuration to pass to the message filter. For example with JSONPath filtering you can pass a JSONPath expression string here, such as `'foo[*].baz'`. Messages with a Body which does not match are ignored. :param delete_message_on_reception: Default to `True`, the messages are deleted from the queue as soon as being consumed. Otherwise, the messages remain in the queue after consumption and should be deleted manually. """
def__init__(self,*,sqs_queue,aws_conn_id:str='aws_default',max_messages:int=5,wait_time_seconds:int=1,visibility_timeout:Optional[int]=None,message_filtering:Optional[Literal["literal","jsonpath"]]=None,message_filtering_match_values:Any=None,message_filtering_config:Any=None,delete_message_on_reception:bool=True,**kwargs,):super().__init__(**kwargs)self.sqs_queue=sqs_queueself.aws_conn_id=aws_conn_idself.max_messages=max_messagesself.wait_time_seconds=wait_time_secondsself.visibility_timeout=visibility_timeoutself.message_filtering=message_filteringself.delete_message_on_reception=delete_message_on_receptionifmessage_filtering_match_valuesisnotNone:ifnotisinstance(message_filtering_match_values,set):message_filtering_match_values=set(message_filtering_match_values)self.message_filtering_match_values=message_filtering_match_valuesifself.message_filtering=='literal':ifself.message_filtering_match_valuesisNone:raiseTypeError('message_filtering_match_values must be specified for literal matching')self.message_filtering_config=message_filtering_configself.hook:Optional[SqsHook]=None
[docs]defpoke(self,context:'Context'):""" Check for message on subscribed queue and write to xcom the message with key ``messages`` :param context: the context object :return: ``True`` if message is available or ``False`` """sqs_conn=self.get_hook().get_conn()self.log.info('SqsSensor checking for message on queue: %s',self.sqs_queue)receive_message_kwargs={'QueueUrl':self.sqs_queue,'MaxNumberOfMessages':self.max_messages,'WaitTimeSeconds':self.wait_time_seconds,}ifself.visibility_timeoutisnotNone:receive_message_kwargs['VisibilityTimeout']=self.visibility_timeoutresponse=sqs_conn.receive_message(**receive_message_kwargs)if"Messages"notinresponse:returnFalsemessages=response['Messages']num_messages=len(messages)self.log.info("Received %d messages",num_messages)ifnotnum_messages:returnFalseifself.message_filtering:messages=self.filter_messages(messages)num_messages=len(messages)self.log.info("There are %d messages left after filtering",num_messages)ifnotself.delete_message_on_reception:context['ti'].xcom_push(key='messages',value=messages)returnTrueifnotnum_messages:returnFalseself.log.info("Deleting %d messages",num_messages)entries=[{'Id':message['MessageId'],'ReceiptHandle':message['ReceiptHandle']}formessageinmessages]response=sqs_conn.delete_message_batch(QueueUrl=self.sqs_queue,Entries=entries)if'Successful'inresponse:context['ti'].xcom_push(key='messages',value=messages)returnTrueelse:raiseAirflowException('Delete SQS Messages failed '+str(response)+' for messages '+str(messages)
)
[docs]defget_hook(self)->SqsHook:"""Create and return an SqsHook"""ifself.hook:returnself.hookself.hook=SqsHook(aws_conn_id=self.aws_conn_id)returnself.hook
[docs]deffilter_messages(self,messages):ifself.message_filtering=='literal':returnself.filter_messages_literal(messages)ifself.message_filtering=='jsonpath':returnself.filter_messages_jsonpath(messages)else:raiseNotImplementedError('Override this method to define custom filters')
[docs]deffilter_messages_jsonpath(self,messages):jsonpath_expr=parse(self.message_filtering_config)filtered_messages=[]formessageinmessages:body=message['Body']# Body is a string, deserialize to an object and then parsebody=json.loads(body)results=jsonpath_expr.find(body)ifnotresults:continueifself.message_filtering_match_valuesisNone:filtered_messages.append(message)continueforresultinresults:ifresult.valueinself.message_filtering_match_values:filtered_messages.append(message)breakreturnfiltered_messages
[docs]classSQSSensor(SqsSensor):""" This sensor is deprecated. Please use :class:`airflow.providers.amazon.aws.sensors.sqs.SqsSensor`. """def__init__(self,*args,**kwargs):warnings.warn("This class is deprecated. Please use `airflow.providers.amazon.aws.sensors.sqs.SqsSensor`.",DeprecationWarning,stacklevel=2,)super().__init__(*args,**kwargs)