Skip navigation links

Package org.apache.beam.sdk.runners

Defines runners for executing Pipelines in different modes, including org.apache.beam.sdk.runners.DirectRunner and org.apache.beam.sdk.runners.DataflowRunner.

See: Description

Package org.apache.beam.sdk.runners Description

Defines runners for executing Pipelines in different modes, including org.apache.beam.sdk.runners.DirectRunner and org.apache.beam.sdk.runners.DataflowRunner.

org.apache.beam.sdk.runners.DirectRunner executes a Pipeline locally, without contacting the Dataflow service. org.apache.beam.sdk.runners.DataflowRunner submits a Pipeline to the Dataflow service, which executes it on Dataflow-managed Compute Engine instances. DataflowRunner returns as soon as the Pipeline has been submitted. Use org.apache.beam.sdk.runners.BlockingDataflowRunner to have execution updates printed to the console.

The runner is specified as part PipelineOptions.

Skip navigation links