-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Add deferrable
option to LambdaCreateFunctionOperator
#33327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
vincbeck
merged 4 commits into
apache:main
from
aws-mwaa:vincbeck/lambda-create-deferrable
Aug 14, 2023
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# 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 airflow.providers.amazon.aws.hooks.base_aws import AwsGenericHook | ||
from airflow.providers.amazon.aws.hooks.lambda_function import LambdaHook | ||
from airflow.providers.amazon.aws.triggers.base import AwsBaseWaiterTrigger | ||
|
||
|
||
class LambdaCreateFunctionCompleteTrigger(AwsBaseWaiterTrigger): | ||
""" | ||
Trigger to poll for the completion of a Lambda function creation. | ||
|
||
:param function_name: The function name | ||
:param function_arn: The function ARN | ||
:param waiter_delay: The amount of time in seconds to wait between attempts. | ||
:param waiter_max_attempts: The maximum number of attempts to be made. | ||
:param aws_conn_id: The Airflow connection used for AWS credentials. | ||
""" | ||
|
||
def __init__( | ||
self, | ||
*, | ||
function_name: str, | ||
function_arn: str, | ||
waiter_delay: int = 60, | ||
waiter_max_attempts: int = 30, | ||
aws_conn_id: str | None = None, | ||
) -> None: | ||
|
||
super().__init__( | ||
serialized_fields={"function_name": function_name, "function_arn": function_arn}, | ||
waiter_name="function_active_v2", | ||
waiter_args={"FunctionName": function_name}, | ||
failure_message="Lambda function creation failed", | ||
status_message="Status of Lambda function creation is", | ||
status_queries=[ | ||
"Configuration.LastUpdateStatus", | ||
"Configuration.LastUpdateStatusReason", | ||
"Configuration.LastUpdateStatusReasonCode", | ||
], | ||
return_key="function_arn", | ||
return_value=function_arn, | ||
waiter_delay=waiter_delay, | ||
waiter_max_attempts=waiter_max_attempts, | ||
aws_conn_id=aws_conn_id, | ||
) | ||
|
||
def hook(self) -> AwsGenericHook: | ||
return LambdaHook(aws_conn_id=self.aws_conn_id) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
tests/providers/amazon/aws/triggers/test_lambda_function.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# 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 | ||
|
||
import pytest | ||
|
||
from airflow.providers.amazon.aws.triggers.lambda_function import LambdaCreateFunctionCompleteTrigger | ||
|
||
TEST_FUNCTION_NAME = "test-function-name" | ||
TEST_FUNCTION_ARN = "test-function-arn" | ||
TEST_WAITER_DELAY = 10 | ||
TEST_WAITER_MAX_ATTEMPTS = 10 | ||
TEST_AWS_CONN_ID = "test-conn-id" | ||
TEST_REGION_NAME = "test-region-name" | ||
|
||
|
||
class TestLambdaFunctionTriggers: | ||
@pytest.mark.parametrize( | ||
"trigger", | ||
[ | ||
LambdaCreateFunctionCompleteTrigger( | ||
function_name=TEST_FUNCTION_NAME, | ||
function_arn=TEST_FUNCTION_ARN, | ||
aws_conn_id=TEST_AWS_CONN_ID, | ||
waiter_delay=TEST_WAITER_DELAY, | ||
waiter_max_attempts=TEST_WAITER_MAX_ATTEMPTS, | ||
) | ||
], | ||
) | ||
def test_serialize_recreate(self, trigger): | ||
class_path, args = trigger.serialize() | ||
|
||
class_name = class_path.split(".")[-1] | ||
clazz = globals()[class_name] | ||
instance = clazz(**args) | ||
|
||
class_path2, args2 = instance.serialize() | ||
|
||
assert class_path == class_path2 | ||
assert args == args2 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.