Pipelines.See: Description
| Interface | Description |
|---|---|
| Pipeline.PipelineVisitor |
A PipelineVisitor can be passed into
Pipeline.traverseTopologically(com.google.cloud.dataflow.sdk.Pipeline.PipelineVisitor) to be called for each of the
transforms and values in the Pipeline. |
| PipelineResult |
Result of
Pipeline.run(). |
| Class | Description |
|---|---|
| Pipeline |
A Pipeline manages a DAG of PTransforms, and the PCollections
that the PTransforms consume and produce.
|
Pipelines.
To use the Google Cloud Dataflow SDK, you build a
Pipeline which manages a graph of
PTransforms
and the PCollections that
the PTransforms consume and produce.
Each Pipeline has a
PipelineRunner to specify
where and how it should run after pipeline construction is complete.