JMH - Java Microbenchmark Harness

2018/07/12

Tags: java

Notes I’ve took while doing a microbenchmark of some code. Not really structured, but maybe useful for future me.

Webpage: http://openjdk.java.net/projects/code-tools/jmh/

Getting started #

Use an archetype:

mvn archetype:generate \
    -DinteractiveMode=false \
    -DarchetypeGroupId=org.openjdk.jmh \
    -DarchetypeArtifactId=jmh-java-benchmark-archetype \
    -DgroupId=info.kupczynski \
    -DartifactId=jmh-playground \
    -Dversion=1.0

// Or for scala
mvn archetype:generate \
    -DinteractiveMode=false \
    -DarchetypeGroupId=org.openjdk.jmh \
    -DarchetypeArtifactId=jmh-scala-benchmark-archetype \
    -DgroupId=info.kupczynski \
    -DartifactId=jmh-scala-playground \
    -Dversion=1.0


mvn clean install

java -jar target/benchmarks.jar

Recommended approach:

Some hints from the scala community https://github.com/ktoso/sbt-jmh

Which means “3 iterations” “3 warmup iterations” “1 fork” “1 thread”. Please note that benchmarks should be usually executed at least in 10 iterations (as a rule of thumb), but more is better.

For “real” results we recommend to at least warm up 10 to 20 iterations, and then measure 10 to 20 iterations again. Forking the JVM is required to avoid falling into specific optimisations (no JVM optimisation is really “completely” predictable)

Another hints http://tutorials.jenkov.com/java-performance/jmh.html:

>> Home