Ian Lumsden
Ian Lumsden
I just found this doc page for HTCondor that could be quite useful: https://htcondor.readthedocs.io/en/latest/man-pages/condor_submit.html#submit-description-file-commands This section describes all the "standard" ClassAds that can be added to a job. It does...
@vahi this might also be useful: ```cpp const char *attrs_to_copy[] = { ATTR_JOB_ARGUMENTS1, ATTR_JOB_ARGUMENTS2, ATTR_JOB_ENV_V1, ATTR_JOB_ENV_V1_DELIM, ATTR_JOB_ENVIRONMENT, ATTR_JOB_INPUT, ATTR_JOB_OUTPUT, ATTR_JOB_ERROR, ATTR_TRANSFER_INPUT_FILES, ATTR_TRANSFER_OUTPUT_FILES, ATTR_TRANSFER_OUTPUT_REMAPS, ATTR_JOB_IWD, ATTR_GRID_RESOURCE, ATTR_REQUEST_MEMORY, "NodeNumber", "HostNumber", "SMPGranularity", "WholeNodes",...
@vahi I added some text to my comment with the table describing why some Pegasus settings (namely `pegasus.cores` and `pegasus.ppn`) will affect the values of multiple Flux flags. I have...
That's good to know. @vahi, to clarify though, my table above does not show variables for `remote_ce_requirements`. It shows how Pegasus profile keys match to HTCondor ClassAds that eventually reach...
The flux local attributes does the same thing as the Slurm one, plus supports exclusive node allocation and GPU specification. In terms of how Pegasus should pass that information along,...
I wanted to just add a few options that @michaelmckinsey1 and I discussed relating to this. The 3 options we discussed (and the 3 most viable options besides what @michaelmckinsey1...
@pearce8 there are a few places to find this info. First, you can find all the current mount points on a system in the `/etc/mtab` and `/proc/mounts`. These files should...