[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Not fully able to start jobs - permissions?
- Date: Mon, 16 May 2005 10:32:11 -0400
- From: Rob Pieké <pieke@xxxxxxxxxx>
- Subject: Re: [Condor-users] Not fully able to start jobs - permissions?
Can you elaborate a bit on '-r' vs '-n'?
Both -n and -r allow you to submit to a schedd other than the default
one. -n assumes that all of the job's files are sitting on a filesystem
accessible to the schedd (i.e. the schedd is on the local machine or
all the job's files are on a share filesystem). -r assumes the schedd
doesn't have direct access to the job's files, so condor_submit
transfers them to the schedd. The job's output files are stored at the
schedd and must be retrieved with condor_transfer_data. -r is identical
to using both -n and -s.
Thanks Jaime!