|
task t1 late -s +00:15 -a 20:00 -c +02:00 |
This is interpreted as: the node can stay submitted for a maximum of 15 minutes, and it must become active by 20:00 and the runtime must not exceed 2 hours.
For the purposes of this tutorial we will add a late attribute for the runtime only.
%include <head.h> echo "I will now sleep for %SLEEP% seconds" sleep %SLEEP% %include <tail.h> |
Let us modify the suite definition file again
# Definition of the suite test. suite test edit ECF_INCLUDE "$HOME/course" # replace $HOME with the path to your home directory edit ECF_HOME "$HOME/course" family f6 edit SLEEP 120 task t1 late -c +00:01 # set late flag if task take longer than a minute endfamily endsuite |
#!/usr/bin/env python2.7 import os from ecflow import Defs,Suite,Family,Task,Edit,Trigger,Complete,Event,Meter,Time,Day,Date,Label, \ RepeatString,RepeatInteger,RepeatDate,InLimit,Limit def create_family_f6() : late = Late() late.complete(0,1,True) # hour,minute,relative, set late flag if task take longer than a minute return Family("f6", Edit(SLEEP=120), Task("t1",late)) print "Creating suite definition" home = os.path.join(os.getenv("HOME"),"course") defs = Defs( Suite("test", Edit(ECF_INCLUDE=home,ECF_HOME=home), create_family_f6())) print(defs) print("Checking job creation: .ecf -> .job0") print(defs.check_job_creation()) print("Checking trigger expressions") assert len(defs.check()) == 0,defs.check() print("Saving definition to file 'test.def'") defs.save_as_defs("test.def") |
|