blob: ef2576a1f5413d254eb4f1327070bf0814f567bb [file] [log] [blame]
.. 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.
==========
AWS Lambda
==========
With `AWS Lambda <https://aws.amazon.com/lambda/>`__, you can run code without provisioning or managing servers.
You pay only for the compute time that you consumethere's no charge when your code isn't running.
You can run code for virtually any type of application or backend serviceall with zero administration.
Just upload your code and Lambda takes care of everything required to run and scale your code with high availability.
You can set up your code to automatically trigger from other AWS services or call it directly from any web or mobile app.
Prerequisite Tasks
------------------
.. include:: ../_partials/prerequisite_tasks.rst
Generic Parameters
------------------
.. include:: ../_partials/generic_parameters.rst
Operators
---------
.. _howto/operator:LambdaCreateFunctionOperator:
Create an AWS Lambda function
=============================
To create an AWS lambda function you can use
:class:`~airflow.providers.amazon.aws.operators.lambda_function.LambdaCreateFunctionOperator`.
This operator can be run in deferrable mode by passing ``deferrable=True`` as a parameter. This requires
the aiobotocore module to be installed.
.. exampleinclude:: /../../tests/system/providers/amazon/aws/example_lambda.py
:language: python
:dedent: 4
:start-after: [START howto_operator_create_lambda_function]
:end-before: [END howto_operator_create_lambda_function]
.. _howto/operator:LambdaInvokeFunctionOperator:
Invoke an AWS Lambda function
=============================
To invoke an AWS lambda function you can use
:class:`~airflow.providers.amazon.aws.operators.lambda_function.LambdaInvokeFunctionOperator`.
.. note::
According to `Lambda.Client.invoke <https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/invoke.html>`_ documentation
for synchronous invocation (``invocation_type="RequestResponse"``) with a long timeout, your client might
disconnect during synchronous invocation while it waits for a response.
If this happens you will see a ``ReadTimeoutError`` exception similar to this:
.. code-block:: text
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='lambda.us-east-1.amazonaws.com', port=443): Read timed out. (read timeout=60)
If you encounter this issue, you need to provide `botocore.config.Config <https://botocore.amazonaws.com/v1/documentation/api/latest/reference/config.html>`__
to use long connections with timeout or keep-alive settings.
By providing **botocore_config** as an operator parameter
.. code-block:: python
{
"connect_timeout": 900,
"read_timeout": 900,
"tcp_keepalive": True,
}
Or specify **config_kwargs** in associated :ref:`AWS Connection Extra Parameter <howto/connection:aws:configuring-the-connection>`
.. code-block:: json
{
"config_kwargs": {
"connect_timeout": 900,
"read_timeout": 900,
"tcp_keepalive": true
}
}
In addition, you might need to configure your firewall, proxy,
or operating system to allow for long connections with timeout or keep-alive settings.
.. seealso::
- `NAT Gateway Troubleshooting: Internet connection drops after 350 seconds \
<https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-troubleshooting.html#nat-gateway-troubleshooting-timeout>`__
- `Using TCP keepalive under Linux <https://tldp.org/HOWTO/TCP-Keepalive-HOWTO/usingkeepalive.html>`__
.. note::
You cannot describe the asynchronous invocation (``invocation_type="Event"``) of an AWS Lambda function.
The only way is `configuring destinations for asynchronous invocation <https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations>`_
and sensing destination.
.. exampleinclude:: /../../tests/system/providers/amazon/aws/example_lambda.py
:language: python
:dedent: 4
:start-after: [START howto_operator_invoke_lambda_function]
:end-before: [END howto_operator_invoke_lambda_function]
Sensors
---------
.. _howto/sensor:LambdaFunctionStateSensor:
Wait on an AWS Lambda function deployment state
===============================================
To check the deployment state of an AWS Lambda function until it reaches the target state or another terminal
state you can use :class:`~airflow.providers.amazon.aws.sensors.lambda_function.LambdaFunctionStateSensor`.
.. exampleinclude:: /../../tests/system/providers/amazon/aws/example_lambda.py
:language: python
:dedent: 4
:start-after: [START howto_sensor_lambda_function_state]
:end-before: [END howto_sensor_lambda_function_state]
Reference
---------
* `AWS boto3 library documentation for Lambda <https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda.html>`__