Held failed jobs

These jobs hit their retry limit and are held in the queue with status failed. Requeueing resets attempts and makes them eligible again.

{% if held %}
{% for j in held %} {% endfor %}
IDEntrypointPriorityAttemptsCreatedUpdated
{{ j.id }} {{ j.entrypoint }} {{ j.priority }} {{ j.attempts }} {{ j.created | dt }} {{ j.updated | dt }}
{% else %}

No jobs are held as failed.

{% endif %}

Exception log

Historical exception log entries. These jobs already left the queue and cannot be requeued from here.

{% if exceptions %} {% for e in exceptions %} {% endfor %}
WhenJobEntrypointException
{{ e.created | dt }} {{ e.job_id }} {{ e.entrypoint }} {% if e.traceback %}
{{ e.traceback.exception_type }}: {{ e.traceback.exception_message }}
{{ e.traceback.traceback }}
{% else %}–{% endif %}
{% else %}

No exceptions logged.

{% endif %}