The JMH plugin appears to have issues with the latest Gradle daemon so disable it when running JMH from Gradle. The following will run all JMH benchmarks.
./gradlew --no-daemon jmh
Add the -Pjmh.includes=<benchmark>
project property to run specific benchmark.
./gradlew --no-daemon jmh -Pjmh.include=<benchmark>
Add the -Pjmh.profilers=<profilers>
project property to run benchmarks with specific JMH profilers enabled.
./gradlew --no-daemon jmh -Pjmh.include=<benchmark> -Pjmh.profilers=<profilers>
You can build an uber jar containing all the built JMF benchmarks and runtime dependencies.
./gradlew jmhJar
Due to vesion mismatches on jopt you cannot get -h
help output from JMH. Please see
JMH Tutorial for command line
options.
To list benchmarks.
java -jar geode-core/build/libs/geode-core-*-SNAPSHOT-jmh.jar -l
Run with specific benchmark.
java -jar geode-core/build/libs/geode-core-*-SNAPSHOT-jmh.jar <options> <benchmark>
To get a list of available profilers.
java -jar geode-core/build/libs/geode-core-*-SNAPSHOT-jmh.jar -lprof
Run with specific profiler.
java -jar geode-core/build/libs/geode-core-*-SNAPSHOT-jmh.jar <options> -prof:<profiler> <benchmark>