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

Issue 2369333002: [Findit] Capture versionized metadata for master_flake_analysis (Closed)

Created:
4 years, 2 months ago by lijeffrey
Modified:
4 years, 2 months ago
Reviewers:
chanli, stgao
CC:
chromium-reviews, infra-reviews+infra_chromium.org
Target Ref:
refs/heads/master
Project:
infra
Visibility:
Public.

Description

[Findit] Capture versionized metadata for master_flake_analysis - Versionize master_flake_analysis.py - Merge master_flake_analysis_data.py into master_flake_analysis.py since model is now versioned - Capture metadata about the run, namely in swarming_rerun_results dict which keeps track of each swarming rerun result that was used to determine this analysis' flakiness graph BUG=650788 Committed: https://chromium.googlesource.com/infra/infra/+/535f86f50cdf5fe3b946200fa60b2682e72d2e6b

Patch Set 1 #

Total comments: 43

Patch Set 2 : Addressing comments #

Patch Set 3 : Do not set default value for cache_hit #

Patch Set 4 : Fixing passing version through pipelines #

Total comments: 7

Patch Set 5 : Addressing comments #

Total comments: 4

Patch Set 6 : Fixing nits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+527 lines, -381 lines) Patch
M appengine/findit/handlers/flake/check_flake.py View 1 2 3 4 5 2 chunks +14 lines, -6 lines 0 comments Download
M appengine/findit/handlers/flake/test/check_flake_test.py View 1 2 3 4 5 chunks +13 lines, -19 lines 0 comments Download
M appengine/findit/model/flake/flake_swarming_task.py View 1 2 3 4 5 2 chunks +36 lines, -17 lines 0 comments Download
M appengine/findit/model/flake/master_flake_analysis.py View 1 2 3 4 2 chunks +86 lines, -33 lines 0 comments Download
D appengine/findit/model/flake/master_flake_analysis_data.py View 1 chunk +0 lines, -92 lines 0 comments Download
M appengine/findit/model/flake/test/flake_swarming_task_test.py View 1 2 3 4 2 chunks +38 lines, -0 lines 0 comments Download
M appengine/findit/model/flake/test/master_flake_analysis_test.py View 1 2 3 4 2 chunks +20 lines, -0 lines 0 comments Download
M appengine/findit/templates/flake/result.html View 1 1 chunk +1 line, -1 line 0 comments Download
M appengine/findit/waterfall/flake/initialize_flake_pipeline.py View 1 2 3 4 5 chunks +37 lines, -17 lines 0 comments Download
M appengine/findit/waterfall/flake/recursive_flake_pipeline.py View 1 2 3 4 9 chunks +62 lines, -31 lines 0 comments Download
M appengine/findit/waterfall/flake/test/initialize_flake_pipeline_test.py View 2 chunks +3 lines, -3 lines 0 comments Download
M appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py View 1 2 3 4 28 chunks +152 lines, -113 lines 0 comments Download
M appengine/findit/waterfall/process_base_swarming_task_result_pipeline.py View 3 chunks +2 lines, -3 lines 0 comments Download
M appengine/findit/waterfall/process_flake_swarming_task_result_pipeline.py View 1 2 3 4 5 chunks +33 lines, -16 lines 0 comments Download
M appengine/findit/waterfall/test/process_flake_swarming_task_result_pipeline_test.py View 1 2 3 4 10 chunks +30 lines, -30 lines 0 comments Download

Messages

Total messages: 18 (5 generated)
lijeffrey
ptal
4 years, 2 months ago (2016-09-27 20:00:59 UTC) #3
chanli
https://codereview.chromium.org/2369333002/diff/1/appengine/findit/model/flake/master_flake_analysis.py File appengine/findit/model/flake/master_flake_analysis.py (right): https://codereview.chromium.org/2369333002/diff/1/appengine/findit/model/flake/master_flake_analysis.py#newcode10 appengine/findit/model/flake/master_flake_analysis.py:10: Nit: remove this empty line. https://codereview.chromium.org/2369333002/diff/1/appengine/findit/waterfall/flake/initialize_flake_pipeline.py File appengine/findit/waterfall/flake/initialize_flake_pipeline.py (right): ...
4 years, 2 months ago (2016-09-27 22:15:24 UTC) #4
stgao
https://codereview.chromium.org/2369333002/diff/1/appengine/findit/handlers/flake/check_flake.py File appengine/findit/handlers/flake/check_flake.py (right): https://codereview.chromium.org/2369333002/diff/1/appengine/findit/handlers/flake/check_flake.py#newcode60 appengine/findit/handlers/flake/check_flake.py:60: master_flake_analysis.pass_rates) As this is a rename, be sure to ...
4 years, 2 months ago (2016-09-28 00:03:24 UTC) #5
lijeffrey
comments addressed, ptal https://codereview.chromium.org/2369333002/diff/1/appengine/findit/model/flake/master_flake_analysis.py File appengine/findit/model/flake/master_flake_analysis.py (right): https://codereview.chromium.org/2369333002/diff/1/appengine/findit/model/flake/master_flake_analysis.py#newcode10 appengine/findit/model/flake/master_flake_analysis.py:10: On 2016/09/27 22:15:24, chanli wrote: > ...
4 years, 2 months ago (2016-09-28 03:12:31 UTC) #6
lijeffrey
Fixed some bugs in passing version along, ptal
4 years, 2 months ago (2016-09-30 20:16:35 UTC) #7
stgao
https://codereview.chromium.org/2369333002/diff/1/appengine/findit/waterfall/flake/initialize_flake_pipeline.py File appengine/findit/waterfall/flake/initialize_flake_pipeline.py (right): https://codereview.chromium.org/2369333002/diff/1/appengine/findit/waterfall/flake/initialize_flake_pipeline.py#newcode34 appengine/findit/waterfall/flake/initialize_flake_pipeline.py:34: master_flake_analysis.Reset() On 2016/09/28 03:12:31, lijeffrey wrote: > On 2016/09/28 ...
4 years, 2 months ago (2016-09-30 21:07:31 UTC) #8
stgao
https://codereview.chromium.org/2369333002/diff/60001/appengine/findit/model/flake/flake_swarming_task.py File appengine/findit/model/flake/flake_swarming_task.py (right): https://codereview.chromium.org/2369333002/diff/60001/appengine/findit/model/flake/flake_swarming_task.py#newcode54 appengine/findit/model/flake/flake_swarming_task.py:54: 'created_time': str(self.created_time), On 2016/09/30 21:07:31, stgao (slow) wrote: > ...
4 years, 2 months ago (2016-09-30 21:10:54 UTC) #9
chanli
lgtm with a nit https://codereview.chromium.org/2369333002/diff/60001/appengine/findit/waterfall/test/process_flake_swarming_task_result_pipeline_test.py File appengine/findit/waterfall/test/process_flake_swarming_task_result_pipeline_test.py (right): https://codereview.chromium.org/2369333002/diff/60001/appengine/findit/waterfall/test/process_flake_swarming_task_result_pipeline_test.py#newcode149 appengine/findit/waterfall/test/process_flake_swarming_task_result_pipeline_test.py:149: print call_params nit: remove this ...
4 years, 2 months ago (2016-09-30 21:24:36 UTC) #10
lijeffrey
comments addressed, ptal https://codereview.chromium.org/2369333002/diff/1/appengine/findit/waterfall/flake/initialize_flake_pipeline.py File appengine/findit/waterfall/flake/initialize_flake_pipeline.py (right): https://codereview.chromium.org/2369333002/diff/1/appengine/findit/waterfall/flake/initialize_flake_pipeline.py#newcode34 appengine/findit/waterfall/flake/initialize_flake_pipeline.py:34: master_flake_analysis.Reset() On 2016/09/30 21:07:31, stgao (slow) ...
4 years, 2 months ago (2016-10-01 01:28:04 UTC) #11
stgao
lgtm with nits. https://codereview.chromium.org/2369333002/diff/80001/appengine/findit/handlers/flake/check_flake.py File appengine/findit/handlers/flake/check_flake.py (right): https://codereview.chromium.org/2369333002/diff/80001/appengine/findit/handlers/flake/check_flake.py#newcode66 appengine/findit/handlers/flake/check_flake.py:66: zipped = zip(build_numbers, pass_rates) Build the ...
4 years, 2 months ago (2016-10-01 01:36:59 UTC) #12
lijeffrey
https://codereview.chromium.org/2369333002/diff/80001/appengine/findit/handlers/flake/check_flake.py File appengine/findit/handlers/flake/check_flake.py (right): https://codereview.chromium.org/2369333002/diff/80001/appengine/findit/handlers/flake/check_flake.py#newcode66 appengine/findit/handlers/flake/check_flake.py:66: zipped = zip(build_numbers, pass_rates) On 2016/10/01 01:36:59, stgao (slow) ...
4 years, 2 months ago (2016-10-01 02:51:46 UTC) #13
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/2369333002/100001
4 years, 2 months ago (2016-10-01 02:52:05 UTC) #16
commit-bot: I haz the power
4 years, 2 months ago (2016-10-01 04:26:06 UTC) #18
Message was sent while issue was closed.
Committed patchset #6 (id:100001) as
https://chromium.googlesource.com/infra/infra/+/535f86f50cdf5fe3b946200fa60b2...

Powered by Google App Engine
This is Rietveld 408576698