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

Issue 2243673002: [Findit] Added algorithm to analysis (Closed)

Created:
4 years, 4 months ago by caiw
Modified:
4 years, 4 months ago
Reviewers:
chanli, stgao, lijeffrey
CC:
chromium-reviews, infra-reviews+infra_chromium.org
Base URL:
https://chromium.googlesource.com/infra/infra.git@master
Target Ref:
refs/heads/master
Project:
infra
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 12

Patch Set 2 : addressed comments #

Total comments: 12

Patch Set 3 : addressed comments, implemented algorithm to get it to one CL, made some UI changes. Unfortunately… #

Total comments: 28

Patch Set 4 : addressed comments #

Total comments: 4

Patch Set 5 : addressed comments #

Total comments: 1

Patch Set 6 : addressed comments #

Patch Set 7 : gclient sync #

Unified diffs Side-by-side diffs Delta from patch set Stats (+708 lines, -55 lines) Patch
M appengine/findit/handlers/flake/check_flake.py View 1 2 3 4 5 6 2 chunks +10 lines, -4 lines 0 comments Download
M appengine/findit/handlers/flake/flake_dashboard.py View 1 2 3 4 5 6 1 chunk +2 lines, -1 line 0 comments Download
M appengine/findit/handlers/flake/test/check_flake_test.py View 1 2 2 chunks +5 lines, -1 line 0 comments Download
M appengine/findit/model/base_analysis.py View 1 2 3 4 5 6 2 chunks +2 lines, -1 line 0 comments Download
M appengine/findit/model/flake/master_flake_analysis.py View 1 2 2 chunks +3 lines, -1 line 0 comments Download
M appengine/findit/templates/flake/result.html View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M appengine/findit/waterfall/flake/initialize_flake_pipeline.py View 1 2 3 4 4 chunks +19 lines, -3 lines 0 comments Download
M appengine/findit/waterfall/flake/recursive_flake_pipeline.py View 1 2 3 4 5 2 chunks +131 lines, -15 lines 0 comments Download
M appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py View 1 2 3 4 3 chunks +528 lines, -25 lines 0 comments Download
M appengine/findit/waterfall/process_base_swarming_task_result_pipeline.py View 4 chunks +3 lines, -4 lines 0 comments Download

Messages

Total messages: 30 (7 generated)
caiw
4 years, 4 months ago (2016-08-11 22:12:44 UTC) #2
lijeffrey
https://codereview.chromium.org/2243673002/diff/1/appengine/findit/waterfall/flake/initialize_flake_pipeline.py File appengine/findit/waterfall/flake/initialize_flake_pipeline.py (right): https://codereview.chromium.org/2243673002/diff/1/appengine/findit/waterfall/flake/initialize_flake_pipeline.py#newcode77 appengine/findit/waterfall/flake/initialize_flake_pipeline.py:77: algo_dict = { not quite sure why you chose ...
4 years, 4 months ago (2016-08-11 22:22:25 UTC) #3
chanli
https://codereview.chromium.org/2243673002/diff/1/appengine/findit/waterfall/flake/recursive_flake_pipeline.py File appengine/findit/waterfall/flake/recursive_flake_pipeline.py (right): https://codereview.chromium.org/2243673002/diff/1/appengine/findit/waterfall/flake/recursive_flake_pipeline.py#newcode5 appengine/findit/waterfall/flake/recursive_flake_pipeline.py:5: from datetime import datetime datetime should be in a ...
4 years, 4 months ago (2016-08-11 23:59:39 UTC) #4
caiw
https://codereview.chromium.org/2243673002/diff/1/appengine/findit/waterfall/flake/initialize_flake_pipeline.py File appengine/findit/waterfall/flake/initialize_flake_pipeline.py (right): https://codereview.chromium.org/2243673002/diff/1/appengine/findit/waterfall/flake/initialize_flake_pipeline.py#newcode77 appengine/findit/waterfall/flake/initialize_flake_pipeline.py:77: algo_dict = { On 2016/08/11 22:22:25, lijeffrey wrote: > ...
4 years, 4 months ago (2016-08-13 00:09:15 UTC) #5
caiw
4 years, 4 months ago (2016-08-13 00:11:15 UTC) #6
lijeffrey
https://codereview.chromium.org/2243673002/diff/20001/appengine/findit/waterfall/flake/initialize_flake_pipeline.py File appengine/findit/waterfall/flake/initialize_flake_pipeline.py (right): https://codereview.chromium.org/2243673002/diff/20001/appengine/findit/waterfall/flake/initialize_flake_pipeline.py#newcode16 appengine/findit/waterfall/flake/initialize_flake_pipeline.py:16: BUILD_NUMBERS_BACK = 1000 nit: Rename this MAX_BUILD_NUMBERS_TO_LOOK_BACK or something ...
4 years, 4 months ago (2016-08-15 04:14:08 UTC) #7
chanli
https://codereview.chromium.org/2243673002/diff/20001/appengine/findit/waterfall/flake/recursive_flake_pipeline.py File appengine/findit/waterfall/flake/recursive_flake_pipeline.py (right): https://codereview.chromium.org/2243673002/diff/20001/appengine/findit/waterfall/flake/recursive_flake_pipeline.py#newcode95 appengine/findit/waterfall/flake/recursive_flake_pipeline.py:95: next_run = min(master.build_numbers) - step_size Just a thought: Say ...
4 years, 4 months ago (2016-08-15 23:01:05 UTC) #8
caiw
https://codereview.chromium.org/2243673002/diff/20001/appengine/findit/waterfall/flake/initialize_flake_pipeline.py File appengine/findit/waterfall/flake/initialize_flake_pipeline.py (right): https://codereview.chromium.org/2243673002/diff/20001/appengine/findit/waterfall/flake/initialize_flake_pipeline.py#newcode16 appengine/findit/waterfall/flake/initialize_flake_pipeline.py:16: BUILD_NUMBERS_BACK = 1000 On 2016/08/15 04:14:07, lijeffrey wrote: > ...
4 years, 4 months ago (2016-08-17 08:36:18 UTC) #9
caiw
4 years, 4 months ago (2016-08-17 08:36:28 UTC) #11
stgao
https://codereview.chromium.org/2243673002/diff/40001/appengine/findit/templates/flake/result.html File appengine/findit/templates/flake/result.html (right): https://codereview.chromium.org/2243673002/diff/40001/appengine/findit/templates/flake/result.html#newcode51 appengine/findit/templates/flake/result.html:51: <td>Status of Analysis: {{analysis_status}} How about putting these at ...
4 years, 4 months ago (2016-08-17 19:16:46 UTC) #12
caiw
https://codereview.chromium.org/2243673002/diff/40001/appengine/findit/templates/flake/result.html File appengine/findit/templates/flake/result.html (right): https://codereview.chromium.org/2243673002/diff/40001/appengine/findit/templates/flake/result.html#newcode51 appengine/findit/templates/flake/result.html:51: <td>Status of Analysis: {{analysis_status}} On 2016/08/17 19:16:45, stgao wrote: ...
4 years, 4 months ago (2016-08-17 21:30:32 UTC) #13
stgao
some more comments. Mostly style nits and for more comments in code for the algorithm. ...
4 years, 4 months ago (2016-08-18 00:38:00 UTC) #14
chanli
https://codereview.chromium.org/2243673002/diff/60001/appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py File appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py (right): https://codereview.chromium.org/2243673002/diff/60001/appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py#newcode13 appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py:13: from waterfall.flake.recursive_flake_pipeline import get_next_run nit: move this line up
4 years, 4 months ago (2016-08-18 00:50:31 UTC) #15
caiw
https://codereview.chromium.org/2243673002/diff/40001/appengine/findit/waterfall/flake/recursive_flake_pipeline.py File appengine/findit/waterfall/flake/recursive_flake_pipeline.py (right): https://codereview.chromium.org/2243673002/diff/40001/appengine/findit/waterfall/flake/recursive_flake_pipeline.py#newcode60 appengine/findit/waterfall/flake/recursive_flake_pipeline.py:60: def get_next_run(master, flakiness_algorithm_results_dict): On 2016/08/18 00:38:00, stgao wrote: > ...
4 years, 4 months ago (2016-08-18 20:01:25 UTC) #16
stgao
One last comment :) https://codereview.chromium.org/2243673002/diff/80001/appengine/findit/waterfall/flake/recursive_flake_pipeline.py File appengine/findit/waterfall/flake/recursive_flake_pipeline.py (right): https://codereview.chromium.org/2243673002/diff/80001/appengine/findit/waterfall/flake/recursive_flake_pipeline.py#newcode72 appengine/findit/waterfall/flake/recursive_flake_pipeline.py:72: # Identified a candidate for ...
4 years, 4 months ago (2016-08-18 20:13:40 UTC) #17
stgao
BTW, the link to the algorithm doc is not added either.
4 years, 4 months ago (2016-08-18 20:14:16 UTC) #18
caiw
4 years, 4 months ago (2016-08-18 20:33:07 UTC) #19
stgao
lgtm
4 years, 4 months ago (2016-08-18 20:57:53 UTC) #20
chanli
On 2016/08/18 20:57:53, stgao wrote: > lgtm lgtm
4 years, 4 months ago (2016-08-18 23:59:28 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2243673002/100001
4 years, 4 months ago (2016-08-19 00:11:53 UTC) #23
commit-bot: I haz the power
Try jobs failed on following builders: Infra Linux Precise 32 Tester on luci.infra.try (JOB_FAILED, https://luci-milo.appspot.com/swarming/task/30b8f57a9fc1ad10) ...
4 years, 4 months ago (2016-08-19 00:13:44 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2243673002/120001
4 years, 4 months ago (2016-08-19 00:19:44 UTC) #28
commit-bot: I haz the power
4 years, 4 months ago (2016-08-19 04:24:54 UTC) #30
Message was sent while issue was closed.
Committed patchset #7 (id:120001) as
https://chromium.googlesource.com/infra/infra/+/7a554f883a19261fdf5bccdd81c18...

Powered by Google App Engine
This is Rietveld 408576698