AWSY/Tests

From MozillaWiki
Revision as of 06:21, 6 June 2019 by Igoldan (talk | contribs) (Update to include details about the ab tests)
Jump to navigation Jump to search

General

Are We Slim Yet project (commonly known as AWSY) tracks memory usage across builds.

Test Descriptions

Base Content JS

  • An updated test focused on supporting fission. This measures the base overhead of an empty content process. It tracks resident unique, heap unclassified, JS, and explicit memory metrics as well as storing full memory reports as artifacts. The median value for each metric is used from across all content processes. It has much lower thresholds for alerting and is recorded in Perfherder.

Explicit Memory summary

  • This is memory explicitly reported by a memory reporter. It includes all the memory allocated via explicit calls to heap allocation functions (such as malloc and new) and to non-heap allocations functions (such as mmap and VirtualAlloc).

Possible regression causes

  • A regression in this usually means a new feature is using or retaining more memory and should be looked at. These are easier to diagnose as we can compare memory reports.

See the about:memory mdn page for more details.

Heap Unclassified summary

  • The "heap-unclassified" value represents heap-allocated memory that is not measured by any memory reporter. This is typically 10--20% of "explicit".

Possible regression causes

  • A regression in this can indicate that we're leaking memory or that additional memory reporters should be added.
  • An improvement can indicate that leaks have been fixed or that we added new memory reporters.

See the about:memory mdn page for more details.

Images summary

  • This is a subset of the "explicit" measurement that focuses on memory used to render images.

Possible regression causes

  • A regressions in this can indicate leaks or poor memory usage in the image subsystem. In the past this was persistent problem.

JS summary

  • This is the "js-main-runtime/" value in about:memory which is all the memory attributed to the javascript engine.

Possible regression causes

  • A regression in this number can indicate leaks in the JS engine, optimizations that take performance into consideration at the expense of more memory, or problems with the garbage collector.

Resident Memory summary

  • This is a higher level measurement provided by the operating system. We sum the "resident" memory (RSS) with the resident-unique memory of the content processes. It's pretty noisy and large so it's not very useful in detecting smaller regressions.

Possible regression causes

  • Regressions in this often track regressions in explicit and heap unclassified. If we see a regression in resident, but not in other reports this can indicate we are leaking untracked memory (perhaps through shared memory, graphics allocations, file handles, etc).

Other references

Are We Slim Yet MDN web docs