This pipeline's last known state: its status, progress and any error it reported.
Read from what was last fetched rather than making a request, so it is synchronous and does not advance on its own. Pipeline.waitForPipelineToFinish is what keeps it current.
Waits until this pipeline finishes.
Optionalopts: { onProgress?: (progress: PipelineProgress) => void }
onProgress is called with each update; pass defaultLogger to print them.
A running batch job that executes one or more saved queries and writes their results.
Remarks
Returned by an Account's
runPipelineand by Query.runPipeline; pipelines are never constructed directly. Use Pipeline.waitForPipelineToFinish to block until it completes.Example: Run a saved query into a target dataset and wait for it