Uses of Class
org.apache.flink.runtime.scheduler.exceptionhistory.ExceptionHistoryEntry
Packages that use ExceptionHistoryEntry
Package
Description
-
Uses of ExceptionHistoryEntry in org.apache.flink.runtime.scheduler.adaptive
Method parameters in org.apache.flink.runtime.scheduler.adaptive with type arguments of type ExceptionHistoryEntryModifier and TypeMethodDescriptionvoidAdaptiveScheduler.goToCanceling(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, List<ExceptionHistoryEntry> failureCollection) voidStateTransitions.ToCancelling.goToCanceling(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, List<ExceptionHistoryEntry> failureCollection) Transitions into theCancelingstate.voidAdaptiveScheduler.goToExecuting(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, List<ExceptionHistoryEntry> failureCollection) voidStateTransitions.ToExecuting.goToExecuting(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, List<ExceptionHistoryEntry> failureCollection) Transitions into theExecutingstate.voidAdaptiveScheduler.goToFailing(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, Throwable failureCause, List<ExceptionHistoryEntry> failureCollection) voidStateTransitions.ToFailing.goToFailing(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, Throwable failureCause, List<ExceptionHistoryEntry> failureCollection) Transitions into theFailingstate.voidAdaptiveScheduler.goToRestarting(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, Duration backoffTime, VertexParallelism restartWithParallelism, List<ExceptionHistoryEntry> failureCollection) voidStateTransitions.ToRestarting.goToRestarting(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, Duration backoffTime, VertexParallelism restartWithParallelism, List<ExceptionHistoryEntry> failureCollection) Transitions into theRestartingstate.AdaptiveScheduler.goToStopWithSavepoint(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, CheckpointScheduling checkpointScheduling, CompletableFuture<String> savepointFuture, List<ExceptionHistoryEntry> failureCollection) StateTransitions.ToStopWithSavepoint.goToStopWithSavepoint(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, CheckpointScheduling checkpointScheduling, CompletableFuture<String> savepointFuture, List<ExceptionHistoryEntry> failureCollection) Transitions into theStopWithSavepointstate. -
Uses of ExceptionHistoryEntry in org.apache.flink.runtime.scheduler.exceptionhistory
Subclasses of ExceptionHistoryEntry in org.apache.flink.runtime.scheduler.exceptionhistoryModifier and TypeClassDescriptionclassRootExceptionHistoryEntryextendingExceptionHistoryEntryby providing a list ofExceptionHistoryEntryinstances to store concurrently caught failures.Methods in org.apache.flink.runtime.scheduler.exceptionhistory that return ExceptionHistoryEntryModifier and TypeMethodDescriptionstatic ExceptionHistoryEntryExceptionHistoryEntry.create(AccessExecution failedExecution, String taskName, CompletableFuture<Map<String, String>> failureLabels) Creates anExceptionHistoryEntrybased on the providedExecution.static ExceptionHistoryEntryExceptionHistoryEntry.createGlobal(Throwable cause, CompletableFuture<Map<String, String>> failureLabels) Creates anExceptionHistoryEntrythat is not based on anExecution.Methods in org.apache.flink.runtime.scheduler.exceptionhistory that return types with arguments of type ExceptionHistoryEntryMethods in org.apache.flink.runtime.scheduler.exceptionhistory with parameters of type ExceptionHistoryEntryModifier and TypeMethodDescriptionstatic RootExceptionHistoryEntryRootExceptionHistoryEntry.fromExceptionHistoryEntry(ExceptionHistoryEntry entry, Collection<ExceptionHistoryEntry> entries) Method parameters in org.apache.flink.runtime.scheduler.exceptionhistory with type arguments of type ExceptionHistoryEntryModifier and TypeMethodDescriptionstatic RootExceptionHistoryEntryRootExceptionHistoryEntry.fromExceptionHistoryEntry(ExceptionHistoryEntry entry, Collection<ExceptionHistoryEntry> entries) Constructor parameters in org.apache.flink.runtime.scheduler.exceptionhistory with type arguments of type ExceptionHistoryEntryModifierConstructorDescriptionRootExceptionHistoryEntry(Throwable cause, long timestamp, CompletableFuture<Map<String, String>> failureLabels, String failingTaskName, TaskManagerLocation taskManagerLocation, Collection<ExceptionHistoryEntry> concurrentExceptions) Instantiates aRootExceptionHistoryEntry.