Pipeline
s.See: Description
Interface | Description |
---|---|
Pipeline.PipelineVisitor |
A
Pipeline.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 directed acyclic graph of PTransforms , and the
PCollections that the PTransform s consume and produce. |
Enum | Description |
---|---|
PipelineResult.State |
Named constants for common values for the job state.
|
Exception | Description |
---|---|
Pipeline.PipelineExecutionException |
Pipeline
s.
To use the Google Cloud Dataflow SDK, you build a
Pipeline
, which manages a graph of
PTransform
s
and the PCollection
s that
the PTransforms consume and produce.
Each Pipeline has a
PipelineRunner
to specify
where and how it should run after pipeline construction is complete.