SECURITY WARNING: Never run commands you don't understand. Always review code before execution. Use at your own risk.
Serverless Added 11 February 2026

AWS Lambda: Task timed out after X seconds

The Lambda function did not complete within the configured timeout. Cold starts, slow dependencies, or heavy processing can cause this.

Quick fix

Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.

Quick fix
# Increase timeout (max 900s)
aws lambda update-function-configuration --function-name my-func --timeout 30
# Use provisioned concurrency to eliminate cold starts
aws lambda put-provisioned-concurrency-config --function-name my-func --qualifier prod --provisioned-concurrent-executions 5
# Optimize initialization code

How to diagnose Serverless errors

Serverless errors are shaped by hard platform limits: execution duration, deployment package size, memory, and concurrency. Unlike a server you control, these cannot be tuned away. The fix is to restructure the workload. VPC-attached functions add a second class of problem, because they lose default internet access and depend on ENI capacity and NAT configuration.

If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.

  1. Check the platform limit before changing code: timeout, package size and memory are all documented, and the error is usually the limit being reported literally.
  2. For timeouts, add timing logs around each external call. A function that times out is nearly always waiting on one downstream dependency.
  3. Reduce package size with layers, tree-shaking, and by excluding dev dependencies and the provider SDK that the runtime already includes.
  4. For VPC functions with no internet access, confirm there is a NAT Gateway or the relevant VPC endpoints. A function in a private subnet cannot reach the public internet by default.
  5. Measure cold start separately from warm invocation in your metrics, and use provisioned concurrency only after confirming cold starts are the actual problem.

Tools worth reaching for

  • CloudWatch Logs Insights
  • aws lambda get-function-configuration
  • X-Ray / distributed tracing
  • sam local invoke

Authoritative references

Primary documentation for this error, worth reading before applying any fix in production.

docs.aws.amazon.com

Related Serverless errors

See all 11 Serverless errors →

Browse other categories

Something missing or wrong?

This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.