Uses of Interface
org.apache.flink.runtime.executiongraph.AccessExecution
-
-
Uses of AccessExecution in org.apache.flink.runtime.executiongraph
Classes in org.apache.flink.runtime.executiongraph that implement AccessExecution Modifier and Type Class Description class
ArchivedExecution
ArchivedExecution
is a readonly representation ofExecution
.class
Execution
A single execution of a vertex.Methods in org.apache.flink.runtime.executiongraph with type parameters of type AccessExecution Modifier and Type Method Description <T extends AccessExecution>
Collection<T>AccessExecutionVertex. getCurrentExecutions()
Returns the current executions for this execution vertex.Methods in org.apache.flink.runtime.executiongraph that return AccessExecution Modifier and Type Method Description AccessExecution
AccessExecutionVertex. getCurrentExecutionAttempt()
Returns the current execution for this execution vertex.Methods in org.apache.flink.runtime.executiongraph that return types with arguments of type AccessExecution Modifier and Type Method Description Optional<AccessExecution>
DefaultExecutionGraph. findExecution(ExecutionAttemptID attemptId)
Optional<AccessExecution>
ExecutionGraph. findExecution(ExecutionAttemptID attemptId)
Collection<AccessExecution>
ArchivedExecutionVertex. getCurrentExecutions()
-
Uses of AccessExecution in org.apache.flink.runtime.rest.handler.job
Methods in org.apache.flink.runtime.rest.handler.job with parameters of type AccessExecution Modifier and Type Method Description protected abstract R
AbstractSubtaskAttemptHandler. handleRequest(HandlerRequest<EmptyRequestBody> request, AccessExecution execution)
Called for each request after the correspondingAccessExecution
has been retrieved from theAccessExecutionVertex
.protected SubtaskExecutionAttemptAccumulatorsInfo
SubtaskExecutionAttemptAccumulatorsHandler. handleRequest(HandlerRequest<EmptyRequestBody> request, AccessExecution execution)
protected SubtaskExecutionAttemptDetailsInfo
SubtaskExecutionAttemptDetailsHandler. handleRequest(HandlerRequest<EmptyRequestBody> request, AccessExecution execution)
-
Uses of AccessExecution in org.apache.flink.runtime.rest.handler.util
Methods in org.apache.flink.runtime.rest.handler.util with parameters of type AccessExecution Modifier and Type Method Description void
MutableIOMetrics. addIOMetrics(AccessExecution attempt, MetricFetcher fetcher, String jobID, String taskID)
Adds the IO metrics for the given attempt to this object. -
Uses of AccessExecution in org.apache.flink.runtime.rest.messages.job
Methods in org.apache.flink.runtime.rest.messages.job with parameters of type AccessExecution Modifier and Type Method Description static SubtaskExecutionAttemptDetailsInfo
SubtaskExecutionAttemptDetailsInfo. create(AccessExecution execution, MetricFetcher metricFetcher, org.apache.flink.api.common.JobID jobID, JobVertexID jobVertexID, List<SubtaskExecutionAttemptDetailsInfo> otherConcurrentAttempts)
static Map<ExecutionState,Long>
StatusDurationUtils. getExecutionStateDuration(AccessExecution execution)
-
Uses of AccessExecution in org.apache.flink.runtime.scheduler.exceptionhistory
Methods in org.apache.flink.runtime.scheduler.exceptionhistory with parameters of type AccessExecution Modifier and Type Method Description static ExceptionHistoryEntry
ExceptionHistoryEntry. create(AccessExecution failedExecution, String taskName, CompletableFuture<Map<String,String>> failureLabels)
Creates anExceptionHistoryEntry
based on the providedExecution
.
-