Troubleshooting Jobs
This doc is about troubleshooting pending Kubernetes Jobs, however, most of the ideas can be extrapolated to other supported job types.
See the Kueue overview to visualize the components that collaborate to run a Job.
In this document, assume that your Job is called my-job
and it’s in the my-namespace
namespace.
Identifying the Workload for your Job
For each Job, Kueue creates a Workload object to hold the details about the admission of the Job, whether it was admitted or not.
To find the Workload for a Job, you can use any of the following steps:
-
You can obtain the Workload name from the Job events by running the following command:
The relevant event will look like the following:
-
Kueue includes the UID of the source Job in the label
kueue.x-k8s.io/job-uid
. You can obtain the workload name with the following commands:The output looks like the following:
-
You can list all of the workloads in the same namespace of your job and identify the one that matches the format
<api-name>-<job-name>-<hash>
. You can run a command like the following:The output looks like the following:
Once you have identified the name of the Workload, you can obtain all details by running the following command:
What ResourceFlavors does my Job use?
Once you identified the Workload for you Job run the following command to get all the details of your Workload:
The output should be similar to the following:
Now you can clearly see what ResourceFlavors
your Job uses.
Is my Job suspended?
To know whether your Job is suspended, look for the value of the .spec.suspend
field, by
running the following command:
When a job is suspended, Kubernetes does not create any Pods for the Job. If the Job has Pods already running, Kubernetes terminates and deletes these Pods.
A Job is suspended when Kueue hasn’t admitted it yet or when it was preempted to accommodate another job. To understand why your Job is suspended, check the corresponding Workload object.
Is my Job admitted?
If your Job is not running, check whether Kueue has admitted the Workload.
The starting point to know whether a Job was admitted, it’s pending or was not yet attempted for admission is to look at the Workload status.
Run the following command to obtain the full status of a Workload:
Admitted Workload
If your Job is admitted, the Workload should have a status similar to the following:
Pending Workload
If Kueue has attempted to admit the Workload, but failed to so due to lack of quota, the Workload should have a status similar to the following:
Does my ClusterQueue have the resource requests that the job requires?
When you submit a job that has a resource request, for example:
If your ClusterQueue does not have a definition for the requests
, Kueue cannot admit the job. For the job above, you should define cpu
quotas under resourceGroups
. A ClusterQueue defining cpu
quota looks like the following:
See resources groups for more information.
Pending Admission Checks
When the ClusterQueue has admission checks configured, such as ProvisioningRequest or MultiKueue, a Workload might stay with a status similar to the following, until the admission checks pass:
Unattempted Workload
When using a ClusterQueue with the StrictFIFO
queueingStrategy
, Kueue only attempts
to admit the head of each ClusterQueue. As a result, if Kueue didn’t attempt to admit
a Workload, the Workload status might not contain any condition.
Misconfigured LocalQueues or ClusterQueues
If your Job references a LocalQueue that doesn’t exist or the LocalQueue or ClusterQueue that it references is misconfigured, the Workload status would look like the following:
See Troubleshooting Queues to understand why a ClusterQueue or a LocalQueue is inactive.
Is my Job preempted?
If your Job is not running, and your ClusterQueues have preemption enabled, you should check whether Kueue preempted the Workload.
The Evicted
condition shows that the Workload was preempted and the QuotaReserved
condition with status: "True"
shows that Kueue already attempted to admit it again, unsuccessfully in this case.
Are the Pods of my Job running?
When a Job is not suspended, Kubernetes creates Pods for this Job. To check how many of these Pods are scheduled and running, check the Job status.
Run the following command to obtain the full status of a Job:
The output will be similar to the following:
The active
field shows how many Pods for the Job exist, and the ready
field shows how many of them are running.
To list all the Pods of the Job, run the following command:
The output will be similar to the following:
If a Pod or Pods are stuck in Pending
status, check the latest events issued for the Pod
by running the following command:
If the Pod is unschedulable, the output will be similar to the following:
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.