Omaha #1458: Break-out cron.properties.

Change-Id: I8d0cdafe812c42158ce38cdb3903737693b6f528

Former-commit-id: 5954c321f38ba64d305c15270b12289fb34ccdff
This commit is contained in:
Richard Peter 2014-05-06 16:25:57 -05:00
parent adff7b5684
commit 348bc25760
18 changed files with 39 additions and 49 deletions

View file

@ -1,40 +0,0 @@
# The following properties are used to define the EDEX system configuration.
# Modifying these values will affect system performance.
#crontab values
subscription.cron=0+*+*+*+*+?
rpggenvdata.envdata.cron=0+0+*+*+*+?
rpggenvdata.biastable.cron=0+26,46+*+*+*+?
metartohmdb.cron=0+14+*+*+*+?
distribution.cron=0/5+*+*+*+*+?
qc.cron=0+2,7,12,17,22,27,32,37,42,47,52,57+*+*+*+?
acarssounding.cron=00+10,30,50+*+*+*+?
gfe.cron=0+15+*+*+*+?
repack.cron=0+20+*+*+*+?
# warngen geometries updater
geospatial.updater.cron=0+0+0/1+*+*+?
###purge configuration
# Interval at which the purge job kicks off
purge.cron=0+0/1+*+*+*+?
# Interval at which the outgoing files are purged
purge.outgoing.cron=0+30+*+*+*+?
# Interval at which the logs are purged
purge.logs.cron=0+30+0+*+*+?
# Interval at which the service backup logs are purged
purge.svcbu.logs.cron=0+30+0+*+*+?
# Master switch to enable and disable purging
purge.enabled=true
# The number of simultaneous purge jobs allowed on a cluster
purge.clusterlimit=6
# The number of simultaneous purge jobs allowed on given server
purge.serverlimit=2
# The running time (in minutes) of a job before it is assumed to be hung
purge.deadjobage=20
# The frequency (in minutes) of how often a plugin may be purged
purge.frequency=60
# How many consecutive times to allow a purger to fail before it is considered a fatal failure
purge.fatalfailurecount=3

View file

@ -2,4 +2,5 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
res/
res/,\
resources/

View file

@ -0,0 +1,2 @@
# cron for autobldsrv
subscription.cron=0+*+*+*+*+?

View file

@ -413,7 +413,7 @@
<camelContext id="gfe-request-camel" xmlns="http://camel.apache.org/schema/spring" errorHandlerRef="errorHandler">
<endpoint id="exportDigitalDataCron" uri="clusteredquartz://gfe/exportDigitalData/?cron=${gfe.cron}"/>
<endpoint id="gfeLogPurgeCron" uri="clusteredquartz://gfe/purgeGfeLogs/?cron=${purge.logs.cron}"/>
<endpoint id="gfeLogPurgeCron" uri="clusteredquartz://gfe/purgeGfeLogs/?cron=${purge.gfe.logs.cron}"/>
<endpoint id="svcbuLogPurgeCron" uri="clusteredquartz://gfe/purgeSvcbuLogs/?cron=${purge.svcbu.logs.cron}"/>
<endpoint id="iscSendLauncher" uri="timer://iscSendThread?repeatCount=1"/>

View file

@ -1,2 +1,11 @@
# The number of smart init threads to use
smartinit.threads=1
# interval to run exportDigitalData
gfe.cron=0+15+*+*+*+?
# Interval at which the gfe logs are purged
purge.gfe.logs.cron=0+30+0+*+*+?
# Interval at which the service backup logs are purged
purge.svcbu.logs.cron=0+30+0+*+*+?

View file

@ -3,4 +3,5 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
res/,\
resources/,\
WarningDecoder.py

View file

@ -0,0 +1,2 @@
# Schedule for checking/updating warngen geometries
geospatial.updater.cron=0+0+0/1+*+*+?

View file

@ -2,4 +2,5 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
res/
res/,\
resources/

View file

@ -35,8 +35,8 @@
<camelContext id="rpgenvdata-camel" xmlns="http://camel.apache.org/schema/spring" errorHandlerRef="errorHandler">
<endpoint id="rpgEnvDataCron" uri="clusteredquartz://rpgEnvData/rpgEnvDataRoute/?cron=${rpggenvdata.envdata.cron}"/>
<endpoint id="rpgBiasTableCron" uri="clusteredquartz://rpgBiasTable/rpgBiasTableRoute/?cron=${rpggenvdata.biastable.cron}"/>
<endpoint id="rpgEnvDataCron" uri="clusteredquartz://rpgEnvData/rpgEnvDataRoute/?cron=${rpgenvdata.envdata.cron}"/>
<endpoint id="rpgBiasTableCron" uri="clusteredquartz://rpgBiasTable/rpgBiasTableRoute/?cron=${rpgenvdata.biastable.cron}"/>
<route id="rpgEnvDataRoute">
<from uri="rpgEnvDataCron" />

View file

@ -0,0 +1,3 @@
# rpg crongs
rpgenvdata.envdata.cron=0+0+*+*+*+?
rpgenvdata.biastable.cron=0+26,46+*+*+*+?

View file

@ -2,4 +2,5 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
res/
res/,\
resources/

View file

@ -0,0 +1,2 @@
# interval at which hdf5 is repacked
repack.cron=0+20+*+*+*+?

View file

@ -2,4 +2,5 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
res/
res/,\
resources/

View file

@ -0,0 +1 @@
metartohmdb.cron=0+14+*+*+*+?

View file

@ -2,4 +2,5 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
res/
res/,\
resources/

View file

@ -0,0 +1,2 @@
# interval to make acarssoundings at
acarssounding.cron=00+10,30,50+*+*+*+?

View file

@ -2,4 +2,5 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
res/
res/,\
resources/

View file

@ -0,0 +1,2 @@
# period to scan the QC file drop point for new QC data
qc.cron=0+2,7,12,17,22,27,32,37,42,47,52,57+*+*+*+?