Requests for comment/Better PHP profiling

From mediawiki.org
Request for comment (RFC)
Better PHP profiling
Component General
Creation date
Author(s) Chad
Document status implemented
See Phabricator.

This RFC exists so we can investigate alternative profiling implementations to the one we have now.

Problems the DIY approach solves[edit]

  1. production debugging via ?forceprofile=1

Problems the DIY approach doesn't solve[edit]

  1. DIY approach in MediaWiki is error-prone
    1. People forget to include closing profiling
    2. People have to remember to include profiling at all
    3. Things that might *need* profiling aren't
  2. DIY might be slower than something built into PHP

Proposal[edit]

Clean up the profiler implementation to decouple the profiling data collection from profiling output reporting. This will allow us to implement an XHProf powered Profiler class that coexists with the current MediaWiki profiling. We want them to coexist because:

  • xhprof does better function-level profiling than MediaWiki can
  • MediaWiki profiling does better on non-function-level units of work

They can then both utilize the existing text/UDP output formats. Other output formats could be added as well without requiring a new base implementation.

Todo list[edit]

  • Separate data collection from reporting Yes Done
  • Implement data collection via xhprof Yes Done
  • Parser expansion (only used with ?forceprofile=1) less yucky Yes Done
  • Remove wfProfileIn()/wfProfileOut() from core classes for function profiling - can probably do this now? Yes Done
  • Deprecate wfProfileIn()/wfProfileOut() usage - once core is cleaned up :) ^^
  • Kill debug toolbar visualization experiment? - just remove profiling data from it Yes Done
  • Find someone interested in making nice visualization tools for xhprof data Yes Done
    • xhprof PECL module has some pages for this, but they are pretty crusty and only shipped in the PECL module.
    • Chad and Bryan both think that something useful could be built with Elasticsearch as the backing data store
  • ProfilerSimpleTrace is an odd duckling Yes Removed

Installation instructions[edit]

Manual:Profiling/Xhprof#Installing

See also[edit]