使用 AWS SAM 3 秒后 AWS Lambda 函数超时
AWS Lambda function Timedout after 3 sec using AWS SAM
我是 AWS 和 Go 的新手,我正在尝试通过 AWS SAM CLI 执行我的 Lambda 函数。但每次我尝试这样做时,我都会收到以下错误:
I0517 07:51:11.052078 13 main.go:62] Thumbnail Lambda successfully started
I0517 07:51:13.696304 13 utils.go:99] Needed directories successfully created
2019-05-17 09:51:14 Function 'Thumbnail' timed out after 3 seconds
2019-05-17 09:51:14 Function returned an invalid response (must include one of: body, headers or statusCode in the response object). Response received:
我不想复制我在 HTTP 请求中传递的信息,因为它很敏感。
知道如何修改这 3 秒超时吗?
我正在使用 template.yml
来设置我的 lambda。我在给它介绍Timeout
属性的时候忘记了re-build和re-runsam local start-api
。无心之失,谢谢你的时间。
Lambda 函数的默认超时为 3 秒。您可以通过更新 SAM 模板中的 Timeout 属性 来设置任何值,例如
ExampleLambda:
Type: AWS::Serverless::Function
Properties:
CodeUri: .
Handler: index.handler
Runtime: nodejs10.x
Timeout: 10
这与 sam local start-api
无关,但如果您在 PyCharm 和 运行 中使用 PyCharm [=19] 开发单个 Lambda 函数=] 按钮,在 运行 配置 window 中还有一个您可能没有看到的设置,您可以在其中指定超时:
我是 AWS 和 Go 的新手,我正在尝试通过 AWS SAM CLI 执行我的 Lambda 函数。但每次我尝试这样做时,我都会收到以下错误:
I0517 07:51:11.052078 13 main.go:62] Thumbnail Lambda successfully started
I0517 07:51:13.696304 13 utils.go:99] Needed directories successfully created
2019-05-17 09:51:14 Function 'Thumbnail' timed out after 3 seconds
2019-05-17 09:51:14 Function returned an invalid response (must include one of: body, headers or statusCode in the response object). Response received:
我不想复制我在 HTTP 请求中传递的信息,因为它很敏感。
知道如何修改这 3 秒超时吗?
我正在使用 template.yml
来设置我的 lambda。我在给它介绍Timeout
属性的时候忘记了re-build和re-runsam local start-api
。无心之失,谢谢你的时间。
Lambda 函数的默认超时为 3 秒。您可以通过更新 SAM 模板中的 Timeout 属性 来设置任何值,例如
ExampleLambda:
Type: AWS::Serverless::Function
Properties:
CodeUri: .
Handler: index.handler
Runtime: nodejs10.x
Timeout: 10
这与 sam local start-api
无关,但如果您在 PyCharm 和 运行 中使用 PyCharm [=19] 开发单个 Lambda 函数=] 按钮,在 运行 配置 window 中还有一个您可能没有看到的设置,您可以在其中指定超时: