When your code raises an error, Lambda generates a JSON representation of the error. This error document appears in the invocation log and, for synchronous invocations, in the output.
This page describes how to view Lambda function invocation errors for the Go runtime using the Lambda console and the AWS CLI.
Topics
- Creating a function that returns exceptions
- How it works
- Using the Lambda console
- Using the AWS Command Line Interface (AWS CLI)
- Error handling in other AWS services
- What's next?
The following code sample demonstrates custom error handling that raises an exception directly from a Lambda function and handles it directly. Note that custom errors in Go must import the errors
module.
package main
import (
"errors"
"github.com/aws/aws-lambda-go/lambda"
)
func OnlyErrors() error {
return errors.New("something went wrong!")
}
func main() {
lambda.Start(OnlyErrors)
}
Which returns the following:
{
"errorMessage": "something went wrong!",
"errorType": "errorString"
}
When you invoke a Lambda function, Lambda receives the invocation request and validates the permissions in your execution role, verifies that the event document is a valid JSON document, and checks parameter values.
If the request passes validation, Lambda sends the request to a function instance. The Lambda runtime environment converts the event document into an object, and passes it to your function handler.
If Lambda encounters an error, it returns an exception type, message, and HTTP status code that indicates the cause of the error. The client or service that invoked the Lambda function can handle the error programmatically, or pass it along to an end user. The correct error handling behavior depends on the type of application, the audience, and the source of the error.
The following list describes the range of status codes you can receive from Lambda.
2xx
A 2xx
series error with a X-Amz-Function-Error
header in the response indicates a Lambda runtime or function error. A 2xx
series status code indicates that Lambda accepted the request, but instead of an error code, Lambda indicates the error by including the X-Amz-Function-Error
header in the response.
4xx
A 4xx
series error indicates an error that the invoking client or service can fix by modifying the request, requesting permission, or by retrying the request. 4xx
series errors other than 429
generally indicate an error with the request.
5xx
A 5xx
series error indicates an issue with Lambda, or an issue with the function's configuration or resources. 5xx
series errors can indicate a temporary condition that can be resolved without any action by the user. These issues can't be addressed by the invoking client or service, but a Lambda function's owner may be able to fix the issue.
For a complete list of invocation errors, see InvokeFunction errors.
You can invoke your function on the Lambda console by configuring a test event and viewing the output. The output is captured in the function's execution logs and, when active tracing is enabled, in AWS X-Ray.
To invoke a function on the Lambda console
-
Open the Functions page of the Lambda console.
-
Choose the function to test, and choose Test.
-
Under Test event, select New event.
-
Select a Template.
-
For Name, enter a name for the test. In the text entry box, enter the JSON test event.
-
Choose Save changes.
-
Choose Test.
The Lambda console invokes your function synchronously and displays the result. To see the response, logs, and other information, expand the Details section.
The AWS CLI is an open-source tool that enables you to interact with AWS services using commands in your command line shell. To complete the steps in this section, you must have the following:
When you invoke a Lambda function in the AWS CLI, the AWS CLI splits the response into two documents. The AWS CLI response is displayed in your command prompt. If an error has occurred, the response contains a FunctionError
field. The invocation response or error returned by the function is written to an output file. For example, output.json
or output.txt
.
The following invoke command example demonstrates how to invoke a function and write the invocation response to an output.txt
file.
aws lambda invoke \
--function-name my-function \
--cli-binary-format raw-in-base64-out \
--payload '{"key1": "value1", "key2": "value2", "key3": "value3"}' output.txt
The cli-binary-format option is required if you are using AWS CLI version 2. You can also configure this option in your AWS CLI config file.
You should see the AWS CLI response in your command prompt:
{
"StatusCode": 200,
"FunctionError": "Unhandled",
"ExecutedVersion": "$LATEST"
}
You should see the function invocation response in the output.txt
file. In the same command prompt, you can also view the output in your command prompt using:
cat output.txt
You should see the invocation response in your command prompt.
When another AWS service invokes your function, the service chooses the invocation type and retry behavior. AWS services can invoke your function on a schedule, in response to a lifecycle event on a resource, or to serve a request from a user. Some services invoke functions asynchronously and let Lambda handle errors, while others retry or pass errors back to the user.
For example, API Gateway treats all invocation and function errors as internal errors. If the Lambda API rejects the invocation request, API Gateway returns a 500
error code. If the function runs but returns an error, or returns a response in the wrong format, API Gateway returns a 502 error code. To customize the error response, you must catch errors in your code and format a response in the required format.
We recommend using AWS X-Ray to determine the source of an error and its cause. X-Ray allows you to find out which component encountered an error, and see details about the errors. The following example shows a function error that resulted in a 502
response from API Gateway.
For more information, see Instrumenting Go code in AWS Lambda.
- Learn how to show logging events for your Lambda function on the AWS Lambda function logging in Go page.