Run e-r batch jobs twice an hour ten minutes apart

Decrease the time between e-r batch jobs to half an hour between
consecutive runs of the same job to reduce the latency on the updates of
these reports. Offset each of the three batch jobs from each other by
ten minutes. The run times look like this now:

  minute: 0 10 20 30 40 50
  job:    1  2  3  1  2  3

Change-Id: Ic4176b019e6da71e8c1e33ca89f53b6700309a91
This commit is contained in:
Clark Boylan 2014-03-28 12:56:51 -07:00
parent 76abee46b4
commit 0e27b0178e

View File

@ -25,7 +25,7 @@ class elastic_recheck::cron () {
cron { 'elastic-recheck-all':
user => 'recheck',
minute => '0',
minute => '0,30',
hour => '*',
command => "cd ${er_state_path} && er_safe_run.sh ${graph_all_cmd}",
environment => 'PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin',
@ -34,7 +34,7 @@ class elastic_recheck::cron () {
cron { 'elastic-recheck-gate':
user => 'recheck',
minute => '20',
minute => '10,40',
hour => '*',
command => "cd ${er_state_path} && er_safe_run.sh ${graph_gate_cmd}",
environment => 'PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin',
@ -44,7 +44,7 @@ class elastic_recheck::cron () {
cron { 'elastic-recheck-uncat':
user => 'recheck',
minute => '40',
minute => '20,50',
hour => '*',
command => "cd ${er_state_path} && er_safe_run.sh ${uncat_cmd}",
environment => 'PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin',