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
it optimistically assumes that the creation of the function instance will not fail, in fact, function_instance_runner::FunctionInstanceRunner::new() does not return a Result but an object.
However, with a container run-time the creation may fail for a number of good reasons (e.g., Docker daemon not responding, image not available locally), therefore the failure should be handled to avoid the current situation:
function start
instance creation fails -> the function is not initialized and an exit event is generated
however, the node marks the request as well-accepted
the orchestrator and controller receive no indication that the function instance is not running properly
The text was updated successfully, but these errors were encountered:
When an edgeless_node starts a function in
it optimistically assumes that the creation of the function instance will not fail, in fact,
function_instance_runner::FunctionInstanceRunner::new()
does not return aResult
but an object.However, with a container run-time the creation may fail for a number of good reasons (e.g., Docker daemon not responding, image not available locally), therefore the failure should be handled to avoid the current situation:
The text was updated successfully, but these errors were encountered: