Abstract
Runs the transform.
Resolves to an instance of PipelineResult when the pipeline completes. Use runAsync() to execute the pipeline in the background.
A PipelineResult
runAsync() is the asynchronous version of run(), does not wait until pipeline finishes. Use the returned PipelineResult to query job status.
Abstract
runOptional
options: ObjectGenerated using TypeDoc
A Runner is the object that takes a pipeline definition and actually executes, e.g. locally or on a distributed system, by invoking its
run
orrunAsync
method.Runners are generally created using the
createRunner
method in this same module.