Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] (no subject)
- Date: Tue, 12 Jun 2007 15:20:01 -0500
- From: Erik Paulson <epaulson@xxxxxxxxxxx>
- Subject: Re: [Condor-users] (no subject)
On Tue, Jun 12, 2007 at 04:08:31PM -0400, Richardson, Joshua wrote:
>
>
> 012 (074.000.000) 06/12 15:43:13 Job was held.
>
> Error from starter on
> vm1@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx: STARTER at 192.168.168.197
> failed to send file(s) to <192.168.168.98:1094>: error reading from
> C:\condor/execute\dir_3392\looks.txt: (errno 2) No such file or
> directory; SHADOW failed to receive file(s) from <192.168.168.197:2382>
>
> Code 13 Subcode 2
Did your program fail to create looks.txt? If a file that appears in the
transfer_output_files list is missing at the end of a job, Condor
considers it an error.
By and large, you don't ever want to use 'transfer_output_files'. If a job
is submitted without transfer_output_files set, Condor by default will
transfer back any files that were created in the working directory of the
job after the job starts. transfer_output_files is used to override this,
and only transfer back specific files.
You still need the 'when_to_transfer_output' and 'should_transfer_files'
set, and the 'transfer_input_files' list.
-Erik