Package org.apache.beam.runners.flink
Class FlinkDetachedRunnerResult
java.lang.Object
org.apache.beam.runners.flink.FlinkDetachedRunnerResult
- All Implemented Interfaces:
PipelineResult
Result of a detached execution of a
Pipeline
with Flink. In detached
execution, results and job execution are currently unavailable.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.beam.sdk.PipelineResult
PipelineResult.State
-
Method Summary
Modifier and TypeMethodDescriptioncancel()
Cancels the pipeline execution.getState()
Retrieves the current state of the pipeline execution.metrics()
Returns the object to access metrics from the pipeline.toString()
Waits until the pipeline finishes and returns the final status.waitUntilFinish
(Duration duration) Waits until the pipeline finishes and returns the final status.
-
Method Details
-
getState
Description copied from interface:PipelineResult
Retrieves the current state of the pipeline execution.- Specified by:
getState
in interfacePipelineResult
- Returns:
- the
PipelineResult.State
representing the state of this pipeline.
-
metrics
Description copied from interface:PipelineResult
Returns the object to access metrics from the pipeline.- Specified by:
metrics
in interfacePipelineResult
-
cancel
Description copied from interface:PipelineResult
Cancels the pipeline execution.- Specified by:
cancel
in interfacePipelineResult
- Throws:
IOException
- if there is a problem executing the cancel request.
-
waitUntilFinish
Description copied from interface:PipelineResult
Waits until the pipeline finishes and returns the final status.- Specified by:
waitUntilFinish
in interfacePipelineResult
- Returns:
- The final state of the pipeline.
-
waitUntilFinish
Description copied from interface:PipelineResult
Waits until the pipeline finishes and returns the final status. It times out after the given duration.- Specified by:
waitUntilFinish
in interfacePipelineResult
- Parameters:
duration
- The time to wait for the pipeline to finish. Provide a value less than 1 ms for an infinite wait.- Returns:
- The final state of the pipeline or null on timeout.
-
toString
-