有没有办法使用 python 脚本故意多次调用 lambda 函数?如何?
Is there a way to intentionally invoke lambda function multiple times using python script? How?
我将其用作参考,我的 python 脚本与此页面上的脚本一样简单 https://www.sqlshack.com/calling-an-aws-lambda-function-from-another-lambda-function/
您可以通过 invoke()
命令以编程方式调用 AWS Lambda 函数:
Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously.
可以向函数传递一个 payload
,Lambda 函数可以通过 event
参数使用它。
这已通过使用 python 的范围和睡眠功能解决。所以,我已经知道我可以调用 lambda,但我想每 5 分钟至少调用 5 次。因此,我使用 range 重复动作 5 次,并使用 sleep 设置每 运行.
1 分钟的间隔
我将其用作参考,我的 python 脚本与此页面上的脚本一样简单 https://www.sqlshack.com/calling-an-aws-lambda-function-from-another-lambda-function/
您可以通过 invoke()
命令以编程方式调用 AWS Lambda 函数:
Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously.
可以向函数传递一个 payload
,Lambda 函数可以通过 event
参数使用它。
这已通过使用 python 的范围和睡眠功能解决。所以,我已经知道我可以调用 lambda,但我想每 5 分钟至少调用 5 次。因此,我使用 range 重复动作 5 次,并使用 sleep 设置每 运行.
1 分钟的间隔