IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 24, 2010, 2:59:09 PM (16 years ago)
Author:
Paul Price
Message:

Merging trunk in advance of reintegrating into trunk.

Location:
branches/pap
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/pap

  • branches/pap/ippTasks/nightly_stacks.pro

    r27860 r28484  
    55macro nightly.stacks.on
    66    ns.initday.on
     7    ns.detrends.off
     8    ns.dqstats.on
    79    ns.registration.on
    810    ns.burntool.on
     
    1315macro nightly.stacks.off
    1416    ns.initday.off
     17    ns.detrends.off
    1518    ns.registration.off
    1619    ns.burntool.off
     
    2124macro ns.on
    2225    ns.initday.on
     26    ns.detrends.off
    2327    ns.registration.on
    2428    ns.burntool.on
     
    2933macro ns.off
    3034    ns.initday.off
     35    ns.detrends.off
    3136    ns.registration.off
    3237    ns.burntool.off
     
    4146end
    4247
     48macro ns.detrends.on
     49  task ns.detrends.load
     50    active true
     51  end
     52end
     53
     54macro ns.dqstats.on
     55  task ns.dqstats.load
     56    active true
     57  end
     58end
     59
    4360macro ns.registration.on
    4461  task ns.registration.load
     
    7693macro ns.initday.off
    7794  task ns.initday.load
     95    active false
     96  end
     97end
     98
     99macro ns.detrends.off
     100  task ns.detrends.load
     101    active false
     102  end
     103end
     104
     105macro ns.dqstats.off
     106  task ns.dqstats.load
    78107    active false
    79108  end
     
    186215  #operation times out?
    187216  task.exit    timeout
     217    showcommand timeout
     218  end
     219end
     220
     221#
     222# Queue off any possible detrend verification runs
     223#
     224task              ns.detrends.load
     225  host            local
     226  periods         -poll $LOADPOLL
     227  periods         -exec $LOADEXEC
     228  periods         -timeout 30
     229  trange          23:00:00 23:59:59 -nmax 1
     230  npending        1
     231
     232  task.exec
     233    stdout $LOGDIR/ns.detrends.log
     234    stdout $LOGDIR/ns.detrends.log
     235    $today = `date +%Y-%m-%d`
     236
     237    command automate_stacks.pl --queue_detrends --date $today
     238  end
     239 
     240  task.exit       0
     241    # nothign to do here
     242  end
     243  # locked list
     244  task.exit       default
     245    showcommand failure
     246  end
     247  task.exit       crash
     248    showcommand crash
     249  end
     250  # operation times out
     251  task.exit       timeout
     252    showcommand timeout
     253  end
     254end
     255
     256#
     257# Queue dqstats runs
     258#
     259task              ns.dqstats.load
     260  host            local
     261  periods         -poll 3600
     262  periods         -exec $LOADEXEC
     263  periods         -timeout 30
     264  trange          22:00:00 23:59:59
     265  trange          00:00:00 10:00:00
     266  npending        1
     267
     268  task.exec
     269    stdout $LOGDIR/ns.dqstats.log
     270    stderr $LOGDIR/ns.dqstats.log
     271    $today = `date +%Y-%m-%d`
     272
     273    command automate_stacks.pl --queue_dqstats --date $today
     274  end
     275
     276  task.exit       0
     277    # nothing to do here
     278  end
     279  # locked list
     280  task.exit       default
     281    showcommand failure
     282  end
     283  task.exit       crash
     284    showcommand crash
     285  end
     286  # operation times out
     287  task.exit       timeout
    188288    showcommand timeout
    189289  end
Note: See TracChangeset for help on using the changeset viewer.