I have a condor machine in our pool that is running put of space. So I put another hd on it and mounted the new device into the EXECUTE folder, but condor is still rejecting my jobs because of space requirements. How can I make condor "see" the new space?
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 8351608 2672728 5259988 34% /
udev 31202144 8 31202136 1% /dev
tmpfs 12398912 204 12398708 1% /run
none 5120 0 5120 0% /run/lock
none 30821144 0 30821144 0% /run/shm
/dev/sdb1 866917368 32143112 790737368 4% /var/lib/condor/execute
tmpfs 2097152 0 2097152 0% /tmp/ram
I am actually forcing the jobs to execute with (TARGET.Disk >= 0) but there should be another way...
The Requirements _expression_ for your job is:
( ( target.OpSys == "LINUX" ) ) && ( TARGET.Arch == "X86_64" ) &&
( TARGET.Disk >= DiskUsage ) && ( ( TARGET.Memory * 1024 ) >= ImageSize ) &&
( ( RequestMemory * 1024 ) >= ImageSize ) && ( TARGET.HasFileTransfer )
Condition Machines Matched Suggestion
--------- ---------------- ----------
1 ( .RIGHT.Disk >= 350000 ) 0 MODIFY TO 167854
2 ( ( .RIGHT.OpSys == "LINUX" ) ) 64
3 ( .RIGHT.Arch == "X86_64" ) 64
4 ( ( 1024 * .RIGHT.Memory ) >= 0 ) 64
5 ( .RIGHT.HasFileTransfer ) 64
---
003.031: Run analysis summary. Of 64 machines,
64 are rejected by your job's requirements
0 reject your job because of their own requirements
0 match but are serving users with a better priority in the pool
0 match but reject the job for unknown reasons
0 match but will not currently preempt their existing job
0 match but are currently offline
0 are available to run your job
WARNING: Be advised:
No resources matched request's constraints
The Requirements _expression_ for your job is:
( ( target.OpSys == "LINUX" ) ) && ( TARGET.Arch == "X86_64" ) &&
( TARGET.Disk >= DiskUsage ) && ( ( TARGET.Memory * 1024 ) >= ImageSize ) &&
( ( RequestMemory * 1024 ) >= ImageSize ) && ( TARGET.HasFileTransfer )
Condition Machines Matched Suggestion
--------- ---------------- ----------
1 ( .RIGHT.Disk >= 350000 ) 0 REMOVE
2 ( ( .RIGHT.OpSys == "LINUX" ) ) 64
3 ( .RIGHT.Arch == "X86_64" ) 64
4 ( ( 1024 * .RIGHT.Memory ) >= 0 ) 64
5 ( .RIGHT.HasFileTransfer ) 64