Do you understand the lambda retry behavior?
When you invoke a function directly, you determine the strategy for handling errors. You can retry, send the event to a queue for debugging, or ignore the error. Your function’s code might have run completely, partially, or not at all. If you retry, ensure that your function’s code can handle the same event multiple times without causing duplicate transactions or…
Read More »