|
Hello, I am trying to set up htcondor to use the windows shared filesystem. For testing, I have one computer acting as the central manager and submit node, and another computer as the execute node. Following the guide
at
Microsoft Windows — HTCondor Manual 23.7.2 documentation, I am able to execute a job that doesn't have run_as_owner defined in the .sub file, but when I try to run a job with run_as_owner = True, the job idles indefinitely. Below is the relevant output
of condor_q, more info is in the attached files. What is my next step in troubleshooting this issue? condor_q -better-analyze output: [0] 1 TARGET.Arch == "X86_64" [1] 1 TARGET.OpSys == "WINDOWS" [3] 1 TARGET.Disk >= RequestDisk [5] 1 TARGET.Memory >= RequestMemory [8] 1 TARGET.HasFileTransfer [12] 0 TARGET.LocalCredd is "<hostname of central manager>" Thanks, Joshua Lum Shue Chan |
-- Schedd: central hostname : <my_ip?...
The Requirements expression for job 2.000 is
(TARGET.Arch == "X86_64") && (TARGET.OpSys == "WINDOWS") && (TARGET.Disk >= RequestDisk) && (TARGET.Memory >= RequestMemory) &&
((TARGET.FileSystemDomain == MY.FileSystemDomain) || (TARGET.HasFileTransfer)) && (TARGET.HasWindowsRunAsOwner && (TARGET.LocalCredd is "central hostname"))
Job 2.000 defines the following attributes:
FileSystemDomain = "central hostname"
RequestDisk = 1048576 (kb)
RequestMemory = 512 (mb)
slot1@execute hostname has the following attributes:
TARGET.Arch = "X86_64"
TARGET.Disk = 706980504 (kb)
TARGET.FileSystemDomain = "central hostname"
TARGET.HasFileTransfer = true
TARGET.HasWindowsRunAsOwner = true
TARGET.Memory = 130809 (mb)
TARGET.OpSys = "WINDOWS"
The Requirements expression for job 2.000 reduces to these conditions:
Slots
Step Matched Condition
----- -------- ---------
[0] 1 TARGET.Arch == "X86_64"
[1] 1 TARGET.OpSys == "WINDOWS"
[3] 1 TARGET.Disk >= RequestDisk
[5] 1 TARGET.Memory >= RequestMemory
[8] 1 TARGET.HasFileTransfer
[12] 0 TARGET.LocalCredd is "central hostname"
No successful match recorded.
Last failed match: Fri May 31 13:58:14 2024
Reason for last match failure: no match found
002.000: Run analysis summary ignoring user priority. Of 1 machines,
1 are rejected by your job's requirements
0 reject your job because of their own requirements
0 match and are already running your jobs
0 match but are serving other users
0 are able to run your job
WARNING: Be advised:
No machines matched the jobs's constraintsAttachment:
central_condor_config
Description: central_condor_config
Attachment:
central_condor_config.local
Description: central_condor_config.local
Attachment:
execute_condor_config
Description: execute_condor_config
Attachment:
execute_condor_config.local
Description: execute_condor_config.local