blob: 81d565b925f31c55b45de2f643b2932059a682b2 [file] [log] [blame]
Copybara854996b2021-09-07 19:36:02 +00001# Copyright 2016 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style
3# license that can be found in the LICENSE file or at
4# https://developers.google.com/open-source/licenses/bsd
5
6# The default timezone for crons in App Engine is UTC.
7# See: https://cloud.google.com/appengine/docs/standard/python/config/cronref#syntax
8# To avoid potential bugs with Daylight Savings Time, please do
9# not use timezones other than UTC.
10
11cron:
12- description: keep the databases loaded
13 url: /p/chromium/issues/list
14 schedule: every 30 minutes synchronized
15- description: consolidate old invalidation rows
16 url: /_cron/ramCacheConsolidate
17 schedule: every 6 hours synchronized
18- description: index issues that were modified in big batches
19 url: /_cron/reindexQueue
Adrià Vilanova Martínez515639b2021-07-06 16:43:59 +020020 schedule: every 10 minutes synchronized
Copybara854996b2021-09-07 19:36:02 +000021- description: get rid of doomed and deletable projects
22 url: /_cron/reap
23 schedule: every 24 hours synchronized
24- description: send ts_mon metrics
25 url: /internal/cron/ts_mon/send
Adrià Vilanova Martínez515639b2021-07-06 16:43:59 +020026 schedule: every 10 minutes
Copybara854996b2021-09-07 19:36:02 +000027- description: export spam model training examples
28 url: /_cron/spamDataExport
29 schedule: every day 09:00
30- description: fetch api clients from luci-config
31 url: /_cron/loadApiClientConfigs
32 schedule: every 30 minutes synchronized
33- description: deletes old visited hotlists
34 url: /_cron/trimVisitedPages
35 schedule: every monday 01:00
36- description: ping all issues with date fields that arrived
37 url: /_cron/dateAction
38 schedule: every day 12:00
39- description: retrain spam model with GCS training data
40 url: /_cron/spamTraining
41 schedule: every day 10:00
42- description: export component model training examples
43 url: /_cron/componentDataExport
44 schedule: every mon 9:00
45- description: sync monorail's user lists with wipeout-lite
46 url: /_cron/wipeoutSync
47 schedule: every day 09:00