Chromium Code Reviews| Index: appengine/findit/queue.yaml |
| diff --git a/appengine/findit/queue.yaml b/appengine/findit/queue.yaml |
| index 9e3c4dd9de48da8b1650e7917d832251cb2886f2..59aae45f7c557dc9ad506933f09c308f637700d5 100644 |
| --- a/appengine/findit/queue.yaml |
| +++ b/appengine/findit/queue.yaml |
| @@ -1,4 +1,32 @@ |
| queue: |
| +- name: waterfall-analysis-queue |
| + mode: push |
| + rate: 10/s |
| + bucket_size: 100 |
| + max_concurrent_requests: 20 |
| + retry_parameters: |
| + min_backoff_seconds: 15 |
| + task_retry_limit: 3 |
| + |
| +- name: waterfall-try-job-queue |
| + mode: push |
| + rate: 10/s |
| + bucket_size: 100 |
| + max_concurrent_requests: 20 |
| + retry_parameters: |
| + min_backoff_seconds: 15 |
| + task_retry_limit: 3 |
| + |
| +- name: waterfall-serial-queue |
| + mode: push |
| + rate: 1/s |
| + bucket_size: 5 |
| + max_concurrent_requests: 1 |
| + retry_parameters: |
| + task_retry_limit: 0 |
| + |
| + |
| +# Don't use the deprecated queues below as they will be removed soon. |
| - name: build-failure-analysis-queue |
| mode: push |
| rate: 10/s |
| @@ -23,5 +51,4 @@ queue: |
| bucket_size: 5 |
| max_concurrent_requests: 1 |
| retry_parameters: |
| - min_backoff_seconds: 5 |
|
lijeffrey
2016/04/07 02:57:30
Is this not needed anymore?
stgao
2016/04/07 04:46:03
No. Because the retry_limit is zero, this one has
|
| task_retry_limit: 0 |