$CondorVersion: 8.2.1 Jun 27 2014 BuildID: 256063 $
$CondorPlatform: x86_64_Windows8 $ÂÂ [<=== Windows8?? No, it's Windows 7]
I've got DAGMan running but find I have a few questions.
1. Basically I am running 1000 to 2000 independent jobs, and when they all finish, run a script at my console. The only way I could see how to do this was to create a dummy script (dummy.bat which simply returns after doing nothing), and in the .dag file:
JOB RUN-1 dsm2.sub
VARS RUN-1 JOBNO="$(JOB)"
RETRY RUN-1 2
JOB RUN-2 dsm2.sub
VARS RUN-2 JOBNO="$(JOB)"
RETRY RUN-2 2
. . . . .
JOB RUN-2102 dsm2.sub
VARS RUN-2102 JOBNO="$(JOB)"
RETRY RUN-2102 2
JOB lastone dummy.bat
SCRIPT POST lastone done.bat ../dsm2.ctl
PARENTÂ RUN-1 RUN-2 RUN-3. . . RUN-2102 CHILD lastone
Well this works, but the last submitted job is pointless. I'd rather do the following which didn't work: