How to Deal with Android Size Alerts

Not all alerts should not have a bug created for them. Please read on...

Step 1: Identify the Commit

MonochromePublic.apk Alerts (Single Commit)

  • 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.

MonochromePublic.apk Alerts (Multiple Commits or Rolls)

Example:

 tools/binary_size/diagnose_bloat.py AFTER_GIT_REV --reference-rev BEFORE_GIT_REV --subrepo v8 --all

Monochrome.apk Alerts

  • The regression most likely already occurred in the upstream MonochromePublic.apk target. Look at the graph of Monochrome.apk and MonochromePublic.apk overlaid to find the culprit and de-dupe with upstream alert.
  • If no upstream regression was found, look through the downstream commits within the given date range to find the culprit.
    • Via git log --format=fuller (be sure to look at CommitDate and not AuthorDate)
  • If the culprit is not obvious, follow the steps from the “multiple commits” section above, filing a bug and running diagnose_bloat.py (with --subrepo=clank).

Step 2: File Bug or Silence Alert

If the code clearly justifies the size increase, silence the alert.

Otherwise, file a bug (TODO: Make this template automatic):

  • Change the bug's title from X% to XXkb
  • 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=a097e74b1aa288511afb4cb616efe0f95ba4d347ad61d5e835072f23450938ba&num_points=10&rev=480214

Debugging 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 graph: 20kb of native code, 8kb of pngs.

Option 1:

It looks to me that the size increase is expected.
Feel free to close as “Won't Fix” unless you can see some way to reduce size.

Option 2:

It looks like this increase was probably unexpected or might be avoidable.
Please have a look and either:

  1. Close as “Won't Fix” with a short justification, or
  2. Land a revert / fix-up.

Option 3:

It's not clear to me whether or not this increase was expected.
Please have a look and either:

  1. Close as “Won't Fix” with a short justification, or
  2. Land a revert / fix-up.

If you went with Option 2, and the regression is > 50kb, add ReleaseBlock-Stable M-6- (next branch cut).

Once the initial bug is filed, add a follow-up comment with the output of:

tools/binary_size/diagnose_bloat.py GIT_REV --cloud

Debugging Apk Size Increase

Step 1: Identify what Grew

Figure out which file within the .apk increased (native library, dex, pak resources, etc) by looking at the breakdown in the size graphs linked to in the bug (if it was not linked in the bug, see above).

Step 2: Analyze

Growth is from Translations

  • There is likely nothing that can be done. Translations are expensive.
  • Close as Won't Fix.

Growth is from Native Resources (pak files)

  • Ensure compress="gzip" is used for all chrome: pages.

Growth is from Images

Growth is from Native Code

  • Use //tools/binary_size/diagnose_bloat.py to show a diff of ELF symbols.
    • Googlers should use the speedy --cloud option. E.g.:
    • tools/binary_size/diagnose_bloat.py 0f30c9488bd2bdc1db2749cd4683994a764a44c9 --cloud
  • Paste the diff into the bug.
  • If the diff looks reasonable, close as Won't Fix.
  • Otherwise, try to refactor a bit (e.g. move code out of templates).
  • If symbols are larger than expected, use the Disassemble() feature of supersize console to see what is going on.

Growth is from Java code

Growth is from “other lib size” or “Unknown files size”

  • File a bug against agrieve@ to fix resource_sizes.py.
  • ...or fix it yourself. This script will output the list of unknown filenames.

You Would Like Assistance

For Binary Size Sheriffs

Step 1: Check work queue daily

  • Bugs requiring sheriffs to take a look at are labeled Performance-Sheriff and Performance-Size.
  • After resolving the bug by finding an owner or debugging or commenting, remove the Performance-Sheriff label.

Step 2: Check alerts regularly