You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was looking for implementing the DDB lock client inside a lambda. As per the lambda documentation here,
After the function and all extensions have completed, Lambda maintains the execution environment for some time in anticipation of another function invocation. In effect, Lambda freezes the execution environment. When the function is invoked again, Lambda thaws the environment for reuse.
So here, I wanted to understand, how does the heartbeat BG thread works in case of any lambda failure/timeout. Is it safe to assume that background thread will die as well, or it might be the case as it says in the documentation here, that if another lambda is executed in the same context, heartbeat thread might continue it's execution from there.
The text was updated successfully, but these errors were encountered:
Hi,
I was looking for implementing the DDB lock client inside a lambda. As per the lambda documentation here,
So here, I wanted to understand, how does the heartbeat BG thread works in case of any lambda failure/timeout. Is it safe to assume that background thread will die as well, or it might be the case as it says in the documentation here, that if another lambda is executed in the same context, heartbeat thread might continue it's execution from there.
The text was updated successfully, but these errors were encountered: