Interface StateTransitions.ToFailing
- All Superinterfaces:
StateTransitions
- All Known Implementing Classes:
AdaptiveScheduler
- Enclosing interface:
- StateTransitions
Interface covering transition to the
Failing 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
Modifier and TypeMethodDescriptionvoidgoToFailing(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, Throwable failureCause, List<ExceptionHistoryEntry> failureCollection) Transitions into theFailingstate.
-
Method Details
-
goToFailing
void goToFailing(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, Throwable failureCause, List<ExceptionHistoryEntry> failureCollection) Transitions into theFailingstate.- Parameters:
executionGraph- executionGraph to pass to theFailingstateexecutionGraphHandler- executionGraphHandler to pass to theFailingstateoperatorCoordinatorHandler- operatorCoordinatorHandler to pass to theFailingstatefailureCause- failureCause describing why the job execution failedfailureCollection- collection of failures that are propagated
-