Adrià Vilanova Martínez | f19ea43 | 2024-01-23 20:20:52 +0100 | [diff] [blame] | 1 | # Copyright 2016 The Chromium Authors |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 4 | |
| 5 | # The default timezone for crons in App Engine is UTC. |
| 6 | # See: https://cloud.google.com/appengine/docs/standard/python/config/cronref#syntax |
| 7 | # To avoid potential bugs with Daylight Savings Time, please do |
| 8 | # not use timezones other than UTC. |
| 9 | |
| 10 | cron: |
| 11 | - description: keep the databases loaded |
| 12 | url: /p/chromium/issues/list |
| 13 | schedule: every 30 minutes synchronized |
| 14 | - description: consolidate old invalidation rows |
| 15 | url: /_cron/ramCacheConsolidate |
| 16 | schedule: every 6 hours synchronized |
| 17 | - description: index issues that were modified in big batches |
| 18 | url: /_cron/reindexQueue |
Adrià Vilanova Martínez | 515639b | 2021-07-06 16:43:59 +0200 | [diff] [blame] | 19 | schedule: every 10 minutes synchronized |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 20 | - description: get rid of doomed and deletable projects |
| 21 | url: /_cron/reap |
| 22 | schedule: every 24 hours synchronized |
| 23 | - description: send ts_mon metrics |
| 24 | url: /internal/cron/ts_mon/send |
Adrià Vilanova Martínez | 515639b | 2021-07-06 16:43:59 +0200 | [diff] [blame] | 25 | schedule: every 10 minutes |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 26 | - description: fetch api clients from luci-config |
| 27 | url: /_cron/loadApiClientConfigs |
| 28 | schedule: every 30 minutes synchronized |
| 29 | - description: deletes old visited hotlists |
| 30 | url: /_cron/trimVisitedPages |
| 31 | schedule: every monday 01:00 |
| 32 | - description: ping all issues with date fields that arrived |
| 33 | url: /_cron/dateAction |
| 34 | schedule: every day 12:00 |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 35 | - description: sync monorail's user lists with wipeout-lite |
| 36 | url: /_cron/wipeoutSync |
| 37 | schedule: every day 09:00 |