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
Currently, when a process fails with an error, process manager will claim it's still running. From the users' POV, this seems like the process "stalled", but it actually died.
There's several ways we could do this:
check when was the last update from the process, if it wasn't updated in some timeout, we assume it died and mark it as such, this only works for Data Definitions AFAIK
actually write down the PID and monitor the process' STDOUT, STDERR and if it still exists, this is much more robust, but is more complex
The text was updated successfully, but these errors were encountered:
Currently, when a process fails with an error, process manager will claim it's still running. From the users' POV, this seems like the process "stalled", but it actually died.
There's several ways we could do this:
The text was updated successfully, but these errors were encountered: