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

Side by Side Diff: appengine/findit/waterfall-backend.yaml

Issue 2425453002: [Findit] Process analysis requests of Waterfall failures concurrently. (Closed)
Patch Set: fix nit. Created 4 years, 2 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
OLDNEW
1 application: findit-for-me-dev 1 application: findit-for-me-dev
2 module: waterfall-backend 2 module: waterfall-backend
3 version: 1 3 version: 1
4 runtime: python27 4 runtime: python27
5 api_version: 1 5 api_version: 1
6 threadsafe: true 6 threadsafe: true
7 instance_class: B4 7 instance_class: B4
8 basic_scaling: 8 basic_scaling:
9 max_instances: 10 9 max_instances: 10
10 idle_timeout: 20m 10 idle_timeout: 20m
11 11
12 handlers: 12 handlers:
13 - url: /robots.txt 13 - url: /robots.txt
14 static_files: robots.txt 14 static_files: robots.txt
15 upload: robots.txt 15 upload: robots.txt
16 16
17 # Handler for the request process queue. 17 # Handler for the request process queue.
18 - url: /waterfall/trigger-analyses 18 - url: /waterfall/process-failure-analysis-requests
19 script: main.waterfall_backend_web_application 19 script: main.waterfall_backend_web_application
20 secure: always 20 secure: always
21 21
22 # Pipeline handler. 22 # Pipeline handler.
23 - url: /_ah/pipeline(/.*)? 23 - url: /_ah/pipeline(/.*)?
24 script: main.pipeline_backend_application 24 script: main.pipeline_backend_application
25 secure: always 25 secure: always
26 26
27 skip_files: 27 skip_files:
28 - ^(.*/)?#.*#$ 28 - ^(.*/)?#.*#$
29 - ^(.*/)?.*~$ 29 - ^(.*/)?.*~$
30 - ^(.*/)?.*\.py[co]$ 30 - ^(.*/)?.*\.py[co]$
31 - ^(.*/)?.*_test\.py$ 31 - ^(.*/)?.*_test\.py$
32 - ^(.*/)?tests\.py$ 32 - ^(.*/)?tests\.py$
33 - ^(.*/)?\..*$ 33 - ^(.*/)?\..*$
34 - ^(.*/)?.*\.md$ 34 - ^(.*/)?.*\.md$
35 - ^(.*/)?README$ 35 - ^(.*/)?README$
36 - ^(.*/)?Makefile$ 36 - ^(.*/)?Makefile$
37 - ^(.*/)?util_scripts/.*$ 37 - ^(.*/)?util_scripts/.*$
38 38
39 libraries: 39 libraries:
40 - name: webapp2 40 - name: webapp2
41 version: latest 41 version: latest
42 - name: jinja2 42 - name: jinja2
43 version: latest 43 version: latest
44 - name: pycrypto 44 - name: pycrypto
45 version: latest 45 version: latest
46 - name: endpoints 46 - name: endpoints
47 version: 1.0 47 version: 1.0
OLDNEW
« no previous file with comments | « appengine/findit/queue.yaml ('k') | appengine/findit/waterfall/build_failure_analysis_pipelines.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698