1617938 : Jobs on HT condor staying idle - Job-ID: 4603116.0¶
Created: 2026-07-17T07:55:47Z - current status: open¶
Anonymized Summary:¶
Issue: A user reports that their HTCondor jobs (starting with ID 4603116.0) have remained in the "idle" state (JobStatus 1) since July 16, 2026. They suspect excessive memory requests might be the cause.
Possible Solution:¶
- Check Resource Requirements:
- Verify if the requested memory (
RequestMemory) exceeds available resources. Use:bash condor_q -analyze <JOB_ID> # Replace <JOB_ID> with actual ID (e.g., 4603116) -
Compare against NAF’s default "lite" profile (1 core, 1.5GB RAM, <3h runtime).
-
Review Hold Status:
- If jobs were held due to resource mismatches, check:
bash condor_q -hold -
Adjust memory via:
bash condor_qedit <JOB_ID> RequestMemory=<NEW_VALUE_MB> condor_release <JOB_ID> -
Scheduler Load:
- If the scheduler is unresponsive (e.g., repeated
condor_qfailures), wait briefly—high load from misconfigured submissions can delay responses.