mirror of
https://github.com/google/nomulus.git
synced 2025-06-27 14:54:51 +02:00
Consolidate some cron groups and use fanout action for more retrying
This is the first step in consolidating our task queues down into a smaller number. We have lots of tasks that run quite infrequently, and they can all run in the same queue to get retry semantics without needing a new queue for each cron entry. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=131990472
This commit is contained in:
parent
7d1a30d8d6
commit
c06133435b
5 changed files with 19 additions and 19 deletions
|
@ -73,16 +73,6 @@
|
|||
</retry-parameters>
|
||||
</queue>
|
||||
|
||||
<!-- Queue for jobs to sync RegistrarContact changes to Google Groups. -->
|
||||
<queue>
|
||||
<name>group-members-sync</name>
|
||||
<rate>1/s</rate>
|
||||
<bucket-size>100</bucket-size>
|
||||
<retry-parameters>
|
||||
<task-retry-limit>3</task-retry-limit>
|
||||
</retry-parameters>
|
||||
</queue>
|
||||
|
||||
<!-- Queue for polling export BigQuery jobs for completion. -->
|
||||
<queue>
|
||||
<name>export-bigquery-poll</name>
|
||||
|
@ -231,6 +221,16 @@
|
|||
</retry-parameters>
|
||||
</queue>
|
||||
|
||||
<!-- Queue for infrequent cron tasks (i.e. hourly or less often) that should retry three times on failure. -->
|
||||
<queue>
|
||||
<name>retryable-cron-tasks</name>
|
||||
<rate>1/s</rate>
|
||||
<bucket-size>100</bucket-size>
|
||||
<retry-parameters>
|
||||
<task-retry-limit>3</task-retry-limit>
|
||||
</retry-parameters>
|
||||
</queue>
|
||||
|
||||
<queue>
|
||||
<name>load0</name>
|
||||
<rate>500/s</rate>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue