AWS Lambda timed out
See original GitHub issueCurrently, I use prisma2@2.0.0-preview022
, nexus@0.12.0-rc.13
, nexus-prisma@0.10.0
I deploy the app (with nexus-prisma crud) with Serverless to AWS Lambda and I have some problems.
After executing some query at the deployed endpoint, I couldn’t open the graphql playground
in the browser because lambda function now is timed out, but all the time while the page tries to open I can make requests to the endpoint with Graphql Playground app and these queries execute fine. After lambda timed out I can reload the page with graphql playground and that will work fine.
This is AWS X-Ray for lambda:
In logs only this:
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:12 (5 by maintainers)
Top Results From Across the Web
Troubleshoot Lambda function retry and timeout issues when ...
To troubleshoot the retry and timeout issues, first review the logs of the API call to find the problem. Then, change the retry...
Read more >AWS Lambda: Task timed out - Stack Overflow
Your error message says Task timed out after 15.00 seconds . This means that AWS intentionally stopped the task once it hit a...
Read more >AWS Lambda Timeout Best Practices - Lumigo
Lambda functions are short lived; the Lambda max timeout is 900 seconds (15 minutes). This can be difficult to manage and can cause...
Read more >AWS Lambda Task timed out error [Solved] | bobbyhadz
The "Task timed out after X seconds" error occurs because a lambda function's execution has exceeded its configured timeout. To view a lambda...
Read more >How to troubleshoot AWS Lambda timeouts
The Lambda timeouts can be caused by not enough memory or processing power of the Lambda itself, or can be caused by other...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This should be in the docs 😄
@Jolg42 I try this solution, its solves my problem