Slide 1

Slide 1 text

Microbenchmarking with JMH Sean Sullivan Portland Java User Group March 14, 2023

Slide 2

Slide 2 text

Java Microbenchmark Harness “JMH is a Java harness for building, running, and analysing nano/micro/milli/macro benchmarks written in Java and other languages targeting the JVM.”

Slide 3

Slide 3 text

OSS projects that use JMH ● Netty ● Log4j2 ● Spring Framework ● Apache Cassandra ● Apache Kafka ● Netflix Atlas ● Netflix Spectator ● Netflix Zuul

Slide 4

Slide 4 text

NOTE: JMH is not intended to be used in the same way as a typical testing library such as JUnit. Simply adding the jmh-core jar file to your build is not enough to be able to run benchmarks.

Slide 5

Slide 5 text

“the key to using JMH is enabling the annotation- or bytecode-processors to generate the synthetic benchmark code”

Slide 6

Slide 6 text

“Running benchmarks from the IDE is generally not recommended due to generally uncontrolled environment in which the benchmarks run.”

Slide 7

Slide 7 text

Zuul: HeadersBenchmark

Slide 8

Slide 8 text

Zuul: HeadersBenchmark

Slide 9

Slide 9 text

Zuul: HeadersBenchmark

Slide 10

Slide 10 text

Zuul: HeadersBenchmark

Slide 11

Slide 11 text

Zuul: build.gradle jmh-gradle-plugin

Slide 12

Slide 12 text

Zuul: HeadersBenchmark ./gradlew --no-daemon clean :zuul-core:jmh

Slide 13

Slide 13 text

Learning JMH

Slide 14

Slide 14 text

Learning JMH

Slide 15

Slide 15 text

Learning JMH

Slide 16

Slide 16 text

microbenchmarks-java ● CompressionBenchmark ● CounterBenchmark ● HttpHeadersBenchmark ● Log4j2ClockBenchmark ● RandomBenchmark ● UuidBenchmark

Slide 17

Slide 17 text

CompressionBenchmark ● Goal: measure throughput of Gzip compression ● Goal: measure throughput of Brotli compression ● Goal: evaluate Brotli compression parameters

Slide 18

Slide 18 text

CompressionBenchmark public enum CompressionType ● GZIP ● BROTLI_0 ● BROTLI_4 ● BROTLI_11

Slide 19

Slide 19 text

CompressionBenchmark

Slide 20

Slide 20 text

CompressionBenchmark

Slide 21

Slide 21 text

CompressionBenchmark # JMH version: 1.36 # VM version: JDK 17.0.6, OpenJDK 64-Bit Server VM, 17.0.6+10-LTS # Warmup: 2 iterations, 10 s each # Measurement: 5 iterations, 10 s each # Threads: 1 thread, will synchronize iterations # Benchmark mode: Throughput, ops/time

Slide 22

Slide 22 text

CompressionBenchmark

Slide 23

Slide 23 text

The End