Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Side by Side Diff: appengine/findit/queue.yaml

Issue 1866883002: [Findit] A huge refactoring and some bug fixing. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fix nit. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « appengine/findit/model/wf_try_job.py ('k') | appengine/findit/templates/build_failure.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 queue: 1 queue:
2 - name: waterfall-analysis-queue
3 mode: push
4 rate: 10/s
5 bucket_size: 100
6 max_concurrent_requests: 20
7 retry_parameters:
8 min_backoff_seconds: 15
9 task_retry_limit: 3
10
11 - name: waterfall-try-job-queue
12 mode: push
13 rate: 10/s
14 bucket_size: 100
15 max_concurrent_requests: 20
16 retry_parameters:
17 min_backoff_seconds: 15
18 task_retry_limit: 3
19
20 - name: waterfall-serial-queue
21 mode: push
22 rate: 1/s
23 bucket_size: 5
24 max_concurrent_requests: 1
25 retry_parameters:
26 task_retry_limit: 0
27
28
29 # Don't use the deprecated queues below as they will be removed soon.
2 - name: build-failure-analysis-queue 30 - name: build-failure-analysis-queue
3 mode: push 31 mode: push
4 rate: 10/s 32 rate: 10/s
5 bucket_size: 100 33 bucket_size: 100
6 max_concurrent_requests: 20 34 max_concurrent_requests: 20
7 retry_parameters: 35 retry_parameters:
8 min_backoff_seconds: 15 36 min_backoff_seconds: 15
9 task_retry_limit: 3 37 task_retry_limit: 3
10 38
11 - name: try-job-queue 39 - name: try-job-queue
12 mode: push 40 mode: push
13 rate: 10/s 41 rate: 10/s
14 bucket_size: 100 42 bucket_size: 100
15 max_concurrent_requests: 20 43 max_concurrent_requests: 20
16 retry_parameters: 44 retry_parameters:
17 min_backoff_seconds: 15 45 min_backoff_seconds: 15
18 task_retry_limit: 3 46 task_retry_limit: 3
19 47
20 - name: request-process-queue 48 - name: request-process-queue
21 mode: push 49 mode: push
22 rate: 1/s 50 rate: 1/s
23 bucket_size: 5 51 bucket_size: 5
24 max_concurrent_requests: 1 52 max_concurrent_requests: 1
25 retry_parameters: 53 retry_parameters:
26 min_backoff_seconds: 5
27 task_retry_limit: 0 54 task_retry_limit: 0
OLDNEW
« no previous file with comments | « appengine/findit/model/wf_try_job.py ('k') | appengine/findit/templates/build_failure.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698