Skip to content

afedulov/flink-benchmarks

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flink-benchmarks

This repository contains sets of micro benchmarks designed to run on single machine to help Apache Flink's developers assess performance implications of their changes.

The main methods defined in the various classes (test cases) are using jmh micro benchmark suite to define runners to execute those test cases. You can either execute whole benchmark suite (which takes ~1hour) at once:

mvn -Dflink.version=1.5.0 clean install exec:exec

or if you want to execute just one benchmark, the best approach is to execute selected main function manually. For example from your IDE (hint there is a plugin for Intellij IDEA). In that case don't forget about selecting flink.version, default value for the property is defined in pom.xml.

Code structure

Recommended code structure is to define all benchmarks in Apache Flink and only wrap them here, in this repository, into executor classes.

Such code structured is due to using GPL2 licensed jmh library for the actual execution of the benchmarks. Ideally we would prefer to have all of the code moved to Apache Flink

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 94.4%
  • Python 5.6%