Not all alerts should not have a bug created for them. Please read on...
[TOC]
- Zoom in on the graph to make sure the alert is not
off-by-one
- Replace
&num_points=XXXX
with&rev=COMMIT_POSITION
in the URL. - It will be obvious from this whether or not the point is off. Use the "nudge" feature to correct it when this happens.
- Replace
- Bisects will not help you.
- For rolls, you can sometimes guess the commit(s) that caused the regression
by looking at the
android-binary-size
trybot result for the roll commit. - For V8 rolls, try checking the V8 size graph to see if any jumps correspond with a CL in the roll.
- Otherwise, use diagnose_bloat.py
in a local Android checkout
to build all commits locally and find the culprit.
- If there were multiple commits due to a build breakage, use
--apply-patch
with the fixing commit (last one in the range).
- If there were multiple commits due to a build breakage, use
Example:
tools/binary_size/diagnose_bloat.py AFTER_GIT_REV --reference-rev BEFORE_GIT_REV --all [--subrepo v8] [--apply-patch AFTER_GIT_REV]
- You can usually find the before and after revs in the roll commit message
(example)
- You may need to click through for the list of changes to find the actual
first commit hash since some rollers (e.g. v8's) use an extra commit for
tagging. In the linked example
BEFORE_GIT_REV
would actually be876f37c
and notc1dec05f
.
- You may need to click through for the list of changes to find the actual
first commit hash since some rollers (e.g. v8's) use an extra commit for
tagging. In the linked example
- Check if the same increase happened in Monochrome.minimal.apks.
- The goal is to ensure nothing creeps into webview unintentionally.
- If the commit message's
Binary-Size:
footer clearly justifies the size increase, silence the alert. - If the regression is < 100kb and caused by an AFDO roll, silence the alert.
Otherwise, file a bug (TODO: Make this template automatic):
- Change the bug's title from
X%
toXXkb
- Assign to commit author
- Set description to (replacing bold parts):
Caused by "First line of commit message"
Commit: abc123abc123abc123abc123abc123abc123abcd
Link to size graph: https://chromeperf.appspot.com/report?sid=6269078068c45a41e23f5ee257da65d3f02da342849cdf3bde6aed0d5c61e450&num_points=10&rev=$CRREV
Link to trybot result: https://ci.chromium.org/p/chromium/builders/luci.chromium.try/android-binary-size/$TRYJOB_NUMBERDebugging size regressions is documented at: https://chromium.googlesource.com/chromium/src/+/master/docs/speed/apk_size_regressions.md#Debugging-Apk-Size-Increase
Based on the trybot result: 20kb of native code, 8kb of pngs. (or some other explanation as to what caused the growth).
It's not clear to me whether or not this increase was expected.
Please have a look and either:
- Close as "Won't Fix" with a short justification, or
- Land a revert / fix-up.
Optional addition:
It typically takes about a week of engineering time to reduce binary size by 50kb so we'd really appreciate you taking some time exploring options to address this regression!
- If the regression is >50kb, add ReleaseBlock-Stable M-## (next branch cut).*
- If the regression was caused by a non-Googler, assign it to the closest Googler to the patch (e.g. reviewer). The size graphs are not public.
It typically takes about a week of engineering time to reduce binary size by 50kb so it's important that an effort is made to address all new regressions.
Figure out which file within the .apk
increased (native library, dex, pak
resources, etc.) by looking at the trybot results or size graphs that were
linked from the bug (if it was not linked in the bug, see above).
See //docs/speed/binary_size/metrics.md for a description of high-level binary size metrics.
See //tools/binary_size/README.md for a description of binary size tools.
See optimization advice.
If you have spent O(days) trying to reduce the size overhead of your patch and are pretty sure that your implementation is optimal(ish), then add a comment to the bug with the following:
- A description of where the size is coming from (show that you spent the time to understand why your code translated to a large binary size).
- What things you tried to reduce the size (show that you've at least read this doc and tried any relevant guidance).
- Why your commit is "worth" the size increase. For new features, feel free to link to a design doc (which presumably includes the motivation for adding the feature).
Close the bug as "Won't Fix".
Here is the rotation and calendar.
- Bugs requiring sheriffs to take a look at are labeled
Performance-Sheriff
andPerformance-Size
here. - After resolving the bug by finding an owner or debugging or commenting,
remove the
Performance-Sheriff
label.
- Check alert page regularly for new alerts.
- Join g/chrome-binary-size-alerts.
- Deal with alerts as outlined above.