Interface StateTransitions.ToFailing
-
- All Superinterfaces:
StateTransitions
- All Known Implementing Classes:
AdaptiveScheduler
- Enclosing interface:
- StateTransitions
public static interface StateTransitions.ToFailing extends StateTransitions
Interface covering transition to theFailing
state.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.flink.runtime.scheduler.adaptive.StateTransitions
StateTransitions.ToCancelling, StateTransitions.ToCreatingExecutionGraph, StateTransitions.ToExecuting, StateTransitions.ToFailing, StateTransitions.ToFinished, StateTransitions.ToRestarting, StateTransitions.ToStopWithSavepoint, StateTransitions.ToWaitingForResources
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
goToFailing(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, Throwable failureCause, List<ExceptionHistoryEntry> failureCollection)
Transitions into theFailing
state.
-
-
-
Method Detail
-
goToFailing
void goToFailing(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, Throwable failureCause, List<ExceptionHistoryEntry> failureCollection)
Transitions into theFailing
state.- Parameters:
executionGraph
- executionGraph to pass to theFailing
stateexecutionGraphHandler
- executionGraphHandler to pass to theFailing
stateoperatorCoordinatorHandler
- operatorCoordinatorHandler to pass to theFailing
statefailureCause
- failureCause describing why the job execution failedfailureCollection
- collection of failures that are propagated
-
-