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
Today runtime.py kills running tasks when one of them crashes (worker.kill()). With this approach, it is impossible to tear down resources used by tasks gracefully.
We could send workers a warning signal which they can catch and process, a few seconds prior to SIGKILL, to allow them to clean up before terminating.
The text was updated successfully, but these errors were encountered:
Today
runtime.py
kills running tasks when one of them crashes (worker.kill()
). With this approach, it is impossible to tear down resources used by tasks gracefully.We could send workers a warning signal which they can catch and process, a few seconds prior to
SIGKILL
, to allow them to clean up before terminating.The text was updated successfully, but these errors were encountered: