task.go 898 B

12345678910111213141516171819202122232425262728293031323334
  1. package init_serve
  2. import (
  3. "eta_gn/eta_bridge/global"
  4. "eta_gn/eta_bridge/services/index_data"
  5. "github.com/robfig/cron/v3"
  6. )
  7. func InitTask() {
  8. // 如果配置文件中设置了停止任务,则不执行定时任务
  9. // 此功能用于多服务器部署时,定时任务只需一台服务器执行,其他服务器不执行;所以只需要一台服务器设置为false,其他服务器设置为true
  10. if global.CONFIG.Serve.IsStopTask {
  11. return
  12. }
  13. // 修复数据
  14. //if global.CONFIG.Gn.DataHost != `` {
  15. // fmt.Println("开始修复数据了")
  16. // index_data.FixData()
  17. //}
  18. // 开始定时任务
  19. c := cron.New(cron.WithSeconds())
  20. // 定时清除指标更新日志
  21. if global.CONFIG.Mysql.Binlog.IsListen {
  22. _, err := c.AddFunc("0 0 0 * * *", index_data.DeleteBeforeTenDayLog)
  23. if err != nil {
  24. global.LOG.Error("DeleteBeforeTenDayLog err" + err.Error())
  25. }
  26. }
  27. c.Start()
  28. }