{% extends 'utilities/confirmation_form.html' %} {% load form_helpers %} {% load helpers %} {% block title %} Revoke Job? {% endblock %} {% block message %}
Are you sure you want to revoke {{ object.name }}?
As of {{ timestamp|date:"DATETIME_FORMAT" }} this job is: {{ job_liveness_state.display }}
Would you like revoke the job? Which will REAP, TERMINATE or ABANDON the job.
This action cannot be undone.
REAP: No worker is currently running this Job, so no kill signal will be sent. The JobResult will simply be marked as revoked.
TERMINATE: A SIGKILL signal will be sent to the worker running this Job. The Job will stop immediately with no opportunity to clean up. Any in-flight operations will be cut off.
ABANDON: The Celery broker or Kubernetes API could not be reached, so this Job's actual state cannot be confirmed. The JobResult will be marked as revoked, but no kill signal can be sent. If the Job is still running somewhere, it will continue until it finishes on its own.