Closed
Bug 676662
Opened 14 years ago
Closed 11 years ago
Investigate missing baseline performance data
Categories
(addons.mozilla.org Graveyard :: API, defect)
addons.mozilla.org Graveyard
API
Tracking
(Not tracked)
RESOLVED
WONTFIX
Q3 2011
People
(Reporter: kumar, Unassigned)
Details
The query in Performance.get_baseline() failed in production explosively: https://github.com/jbalogh/zamboni/commit/79e8507#L0R61 (see https://bugzilla.mozilla.org/show_bug.cgi?id=659794#c37 ). Find out why we are missing this essential part of performance data.
| Reporter | ||
Updated•14 years ago
|
Assignee: nobody → kumar.mcmillan
Target Milestone: --- → 6.2.0
Comment 1•14 years ago
|
||
This is all handled by Alice. What data is missing?
Target Milestone: 6.2.0 → Q3 2011
| Reporter | ||
Comment 2•14 years ago
|
||
It looks like we are only missing the baseline startup time for fx 3.6.15pre, MacOSX 10.5.8. There were only 4 performance results for this but it must have been for some popular addons since it got triggered so much in production.
It would be nice to insert this missing baseline data but the code can assume baselines might be missing for flexibility. That safe guard was done in bug 659794 but it needs some more testing before it goes live.
For reference, this is how to find missing baselines:
select a.app, a.version as app_version, o.os, o.version as os_version, test, max(case when r.addon_id is null then 1 else 0 end) as has_baseline,
count(*) as num_results
from perf_results r
left join perf_appversions a on a.id=r.appversion_id
left join perf_osversions o on o.id=r.osversion_id
group by 1, 2, 3, 4, 5;
| Reporter | ||
Comment 3•12 years ago
|
||
Removing myself from a bunch of old AMO bugs
Assignee: kumar.mcmillan → nobody
Comment 4•11 years ago
|
||
Thanks for filing this. Due to resource constraints we are closing bugs which we won't realistically be able to fix. If you have a patch that applies to this bug please reopen.
For more info see http://micropipes.com/blog/2014/09/24/the-great-add-on-bug-triage/
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → WONTFIX
| Assignee | ||
Updated•9 years ago
|
Product: addons.mozilla.org → addons.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•