To run a job interactively for debugging. I've used this to get interactive resources but never to debug jobs.
They are using "Access Point" where I use "Submit Host"
Also "Execute Point" where I use "Execute Host"
I will update my slides.
transfer_output_remaps = "count.Dracula.txt=output/count.Dracula.txt"
See stdout and stderr files of a job. Only works if should_transfer_files = YES
condor_tail JobID
condor_tail -stderr JobID
9.0 has trouble handling different models of GPUs. Later versions (9.8+) are needed for a cluster with more than one type of GPU. See John Knoeller's talk
Can SSA use this with their containers? Have I already looked at this? No I have not tried this because it doesn't do what I first thought. It spools all input files on the schedd in the spool directory (/var/lib/condor/spool). For SSA, the schedd is mcilroy so this option would be disasterous for them.
This is a crazy idea but what about using checkpointing with SSA's workflow. Right now they have a three-step process: download, process, upload. all of which use lustre. But what if we ran checkpointing after each step? Would this allow the data to be downloaded directlyi to local storage instead of lustre, then processeed, then uploaded. Now that I write it out, I don't see how this is much better than the current process of copying from archive to lustre to local to lustre to local to lustre. Have to think about it more.
This checkpointing is kind of a trick to get multiple jobs, actually checkpoints of one job, to run on the same host (something we wanted a while ago)
Let me see if I can explain what I think the process is for SSAs std_calibration which is a DAG
Though probably the best solution is to keep SSA from doing their unnecessary three-step process.
from Rafi Rubin
For security, rsync has a script in the src tree "rrsync" you use that in authorized_keys to restrict what rsync can do over ssh. I usually recommend single purpose keypairs for that. You can also just use a standing rsyncd.
Is this better than my cheesy factory/pilot scripts?
Inroduced in HTCondor-9.4
promote +commands to first class commands
Newer versions of HTCondor allow an admin to make custom commands (say NRAO_TRANSFER_FILES) into standard commands that no longer require the plus sign to use.
Todd Miller would like folks to test it. The new command is htcondor It works like aws or globus where it is htcondor <noun> <verb>. It is available at CHTC but not NRAO yet.
output classad history for things like elasticsearch DB
The grid universe looks like a way for htcondor to submit jobs directly to Slurm without glidein. I may be wrong about this.