Nico Kruber created FLINK-17056: ----------------------------------- Summary: JMH main() methods call unrelated benchmarks Key: FLINK-17056 URL: https://issues.apache.org/jira/browse/FLINK-17056 Project: Flink Issue Type: Bug Components: Benchmarks Affects Versions: 1.10.0 Reporter: Nico Kruber Assignee: Nico Kruber Fix For: 1.11.0
Each benchmark class is accompanied by an according {{public static main (String[] args)}} method which should run all benchmarks in that class. However, it just uses the class' simple name in a regexp like ".*<name>.*" and may thus also match further classes that were not intended to run. An example for this is the {{StreamNetworkThroughputBenchmarkExecutor}} which also runs benchmarks from {{DataSkewStreamNetworkThroughputBenchmarkExecutor}}. Using the canonical name instead fixes that behaviour. -- This message was sent by Atlassian Jira (v8.3.4#803005)