[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [HTCondor-users] file transfer from remote submit nodes



is it possible to stage during submission local file from a remote
submit node?

AFAIS when a user does a remote submit to be transferred paths/files are
evaluated by the scheduler in its namespace. E.g., a submission with a
file in the remote submitter's /tmp dir would fail as the schedd does
not read from the deamonless remote and cannot find the file locally, or?

condor_submit -remote schedd.remote ./local.submit reads the local submit file and uploads all of the non-URLs listed as inputs (and the executable) to the spool of the remote schedd. (It then submits a job which will execute the job out of the spool.) When the job completes, you can use condor_transfer_data to get the results.

- ToddM