I have a lambda in a step-function working for a while , but now it suddenly started to fail due to this error:
Error: Runtime exited with error: signal: aborted (core dumped)\",\"errorType\":\"Runtime.ExitError
I have increased the memory for this lambda to maximum 10240, and also added a retry strategy to re-run the lambda on error , but once this error shows up it won't go away even on retries:
transformer:
Type: Task
Resource: !GetAtt transformer.Arn
Retry:
- ErrorEquals: ["States.ALL"]
IntervalSeconds: 3
MaxAttempts: 10
BackoffRate: 1
Comment: Transforms a chunk of data by inserting assets, and then uploads the result to an image bucket.
End: true