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
job-controller's API reports the job as started. A possible cause is that the job is created and evicted before it is saved to the database, so it will not be part of remaining_jobs.
Deleting manually the evicted pod makes the monitor update the job status/logs, and the workflow terminates on its own.
The text was updated successfully, but these errors were encountered:
Seen on DEV
Workflow is stuck waiting for a job to complete, as it can be seen by the request made to job-controller:
However, job is reported as evicted on k8s at around the same time it was created:
The monitor has correctly received the update event, and it has correctly identified the pod as failed:
However, the job status and the logs are not updated. This is the condition used to determine whether to update the status/logs:
reana-job-controller/reana_job_controller/job_monitor.py
Lines 115 to 131 in b9f8364
job-controller's API reports the job as
started
. A possible cause is that the job is created and evicted before it is saved to the database, so it will not be part ofremaining_jobs
.Deleting manually the evicted pod makes the monitor update the job status/logs, and the workflow terminates on its own.
The text was updated successfully, but these errors were encountered: