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

Re: [HTCondor-users] Non-sequential input files?



  • simply skip the jobs where the input file is not present, rather than aborting the job submission as it normally does?

 

This sounds like a job for queue matching

 

If you have a set of input files in a directory, you can tell condor_submit to create a job for each file like this

 

input = $(INFILE)

queue INFILE files matching (/path/to/files/*)

 

-tj