Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@
"nullness", // TODO(https://github.com/apache/beam/issues/20497)
"Slf4jDoNotLogMessageOfExceptionExplicitly", // intended, sent full stacktrace to LOG.debug
})
/**
* Dataflow implementation of {@link PipelineResult}.
*
* <p>Note: This class represents a PipelineResult but uses a different name for historical reasons.
*/
public class DataflowPipelineJob implements PipelineResult {

private static final Logger LOG = LoggerFactory.getLogger(DataflowPipelineJob.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@
* Result of {@link Pipeline#run()}.
*
* <p>This is often a job handle to an underlying data processing engine.
*
* <ul>
* <li>Dataflow: {@code DataflowPipelineJob}
* <li>Flink: {@code FlinkRunnerResult}
* <li>Spark: {@code EvaluationContext}
* <li>DirectRunner: {@code DirectPipelineResult}
* </ul>
*
* <p>All of the above represent implementations of {@link PipelineResult}, even if their names do
* not explicitly include "PipelineResult".
*/
public interface PipelineResult {

Expand Down
Loading