apache_beam.tools.fn_api_runner_microbenchmark module

A microbenchmark for measuring changes in the critical path of FnApiRunner. This microbenchmark attempts to measure the overhead of the main data paths for the FnApiRunner. Specifically state, timers, and shuffling of data.

This runs a series of N parallel pipelines with M parallel stages each. Each stage does the following:

  1. Put all the PCollection elements in state
  2. Set a timer for the future
  3. When the timer fires, change the key and output all the elements downstream

This executes the same codepaths that are run on the Fn API (and Dataflow) workers, but is generally easier to run (locally) and more stable..

Run as

python -m apache_beam.tools.fn_api_runner_microbenchmark

The main metric to work with for this benchmark is Fixed Cost. This represents the fixed cost of ovehead for the data path of the FnApiRunner.

Initial results were:

run 1 of 10, per element time cost: 3.6778 sec run 2 of 10, per element time cost: 0.053498 sec run 3 of 10, per element time cost: 0.0299434 sec run 4 of 10, per element time cost: 0.0211154 sec run 5 of 10, per element time cost: 0.0170031 sec run 6 of 10, per element time cost: 0.0150809 sec run 7 of 10, per element time cost: 0.013218 sec run 8 of 10, per element time cost: 0.0119685 sec run 9 of 10, per element time cost: 0.0107382 sec run 10 of 10, per element time cost: 0.0103208 sec

Fixed cost 4.537164939085642 Per-element 0.005474923321695039 R^2 0.95189

class apache_beam.tools.fn_api_runner_microbenchmark.BagInStateOutputAfterTimer(*unused_args, **unused_kwargs)[source]

Bases: apache_beam.transforms.core.DoFn

SET_STATE = SetStateSpec(buffer)
EMIT_TIMER = TimerSpec(ts-emit_timer)
process(element, set_state=StateParam(buffer), emit_timer=TimerParam(ts-emit_timer))[source]
emit_values(set_state=StateParam(buffer))[source]
apache_beam.tools.fn_api_runner_microbenchmark.run_single_pipeline(size)[source]
apache_beam.tools.fn_api_runner_microbenchmark.run_benchmark(starting_point, num_runs, num_elements_step, verbose)[source]