Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am kayousterhout on github.
  • I am kayousterhout (https://keybase.io/kayousterhout) on keybase.
  • I have a public key ASDVJ5gL6OFMFO-LCZlO06hYP1atdzFRC-yzhrMAPHyJPQo

To claim this, I am signing this object:

Generating Flame Graphs for Apache Spark

Flame graphs are a nifty debugging tool to determine where CPU time is being spent. Using the Java Flight recorder, you can do this for Java processes without adding significant runtime overhead.

When are flame graphs useful?

Shivaram Venkataraman and I have found these flame recordings to be useful for diagnosing coarse-grained performance problems. We started using them at the suggestion of Josh Rosen, who quickly made one for the Spark scheduler when we were talking to him about why the scheduler caps out at a throughput of a few thousand tasks per second. Josh generated a graph similar to the one below, which illustrates that a significant amount of time is spent in serialization (if you click in the top right hand corner and search for "serialize", you can see that 78.6% of the sampled CPU time was spent in serialization). We used this insight to spee