2 Answers
- Newest
- Most votes
- Most comments
1
I don't have a good overview of the current environment setup but there could be a few reasons why a Lambda function could be invoked more than once, a few that I've encountered were related to:
- On errors: A function can be invoked multiple times depending on the number of configured retries and type of error. You can read more about this from the API docs. It may be useful to verify the CloudWatch Logs generated by the function in execution to see if there is an error.
- On timeouts: On long running functions that exceed the timeout your function may be invoked more than once, if this is the case, increasing the timeout will help. This was documented as an issue in the
pipeline-aws-pluginfor jekinsci. That thread may be useful troubleshooting your issue.
Hope this helps in your troubleshooting.
answered 2 years ago
Relevant content
asked 6 years ago
asked 3 years ago
