- Improved system deeplinks. EveEye.com added, closed #859 - Improved cronjob performance for "SovereigntyData" import, closed #853 - Updated static DB dump for `eve_universe.sql`
71 lines
2.4 KiB
INI
71 lines
2.4 KiB
INI
[CRON]
|
||
log = TRUE
|
||
cli = TRUE
|
||
web = FALSE
|
||
|
||
[CRON.presets]
|
||
; run every minute
|
||
instant = * * * * *
|
||
|
||
; 12 times per hour (each 5min)
|
||
fiveMinutes = */5 * * * *
|
||
|
||
; 6 times per hour (each 10min)
|
||
tenMinutes = */10 * * * *
|
||
|
||
; 2 times per hour (each 30min)
|
||
halfHour = */30 * * * *
|
||
|
||
; 1 times per hour (12:30, 13:30, 14:30,...)
|
||
halfPastHour = 30 * * * *
|
||
|
||
; run on EVE downtime 11:00 GMT/UTC
|
||
downtime = 0 11 * * *
|
||
|
||
[CRON.jobs]
|
||
; delete EOL connections
|
||
deleteEolConnections = Cron\MapUpdate->deleteEolConnections, @fiveMinutes
|
||
|
||
; delete expired wh connections
|
||
deleteExpiredConnections = Cron\MapUpdate->deleteExpiredConnections, @hourly
|
||
|
||
; delete character log data
|
||
deleteLogData = Cron\CharacterUpdate->deleteLogData, @instant
|
||
|
||
; delete expired signatures
|
||
deleteSignatures = Cron\MapUpdate->deleteSignatures, @halfHour
|
||
|
||
; import system data (jump, kill,..) from CCP API
|
||
importSystemData = Cron\CcpSystemsUpdate->importSystemData, @halfPastHour
|
||
|
||
; disable outdated maps
|
||
deactivateMapData = Cron\MapUpdate->deactivateMapData, @hourly
|
||
|
||
; clean up character data (kick, ban,..)
|
||
cleanUpCharacterData = Cron\CharacterUpdate->cleanUpCharacterData, @hourly
|
||
|
||
; delete disabled maps
|
||
deleteMapData = Cron\MapUpdate->deleteMapData, @downtime
|
||
|
||
; delete expired character cookie authentication data
|
||
deleteAuthenticationData = Cron\CharacterUpdate->deleteAuthenticationData, @downtime
|
||
|
||
; delete expired cache files
|
||
deleteExpiredCacheData = Cron\Cache->deleteExpiredData, @downtime
|
||
|
||
; delete old statistics (activity log) data
|
||
deleteStatisticsData = Cron\StatisticsUpdate->deleteStatisticsData, @weekly
|
||
|
||
; truncate map history log files
|
||
truncateMapHistoryLogFiles = Cron\MapHistory->truncateFiles, @halfHour
|
||
|
||
; sync "sovereignty" and "faction warfare" data from CCP´s ESI API
|
||
updateSovereigntyData = Cron\Universe->updateSovereigntyData, @halfPastHour
|
||
|
||
; sync static system data from CCP´s ESI API
|
||
; -> Job is WIP!
|
||
;updateUniverseSystems = Cron\Universe->updateUniverseSystems, @instant
|
||
|
||
; bootstrap job for "eve_universe" DB from CCP´s ESI API
|
||
; -> Only for development! This job is used to build the initial export/sql/eve_universe.sql
|
||
;setup = Cron\Universe->setup, @instant |