public class ExecutionGraph extends Object implements AccessExecutionGraph
The execution graph consists of the following constructs:
ExecutionJobVertex represents one vertex from the JobGraph (usually one operation like
"map" or "join") during execution. It holds the aggregated state of all parallel subtasks.
The ExecutionJobVertex is identified inside the graph by the JobVertexID, which it takes
from the JobGraph's corresponding JobVertex.ExecutionVertex represents one parallel subtask. For each ExecutionJobVertex, there are
as many ExecutionVertices as the parallelism. The ExecutionVertex is identified by
the ExecutionJobVertex and the number of the parallel subtaskExecution is one attempt to execute a ExecutionVertex. There may be multiple Executions
for the ExecutionVertex, in case of a failure, or in the case where some data needs to be recomputed
because it is no longer available when requested by later operations. An Execution is always
identified by an ExecutionAttemptID. All messages between the JobManager and the TaskManager
about deployment of tasks and updates in the task status always use the ExecutionAttemptID to
address the message receiver.The Execution Graph has two failover modes: global failover and local failover.
A global failover aborts the task executions for all vertices and restarts whole data flow graph from the last completed checkpoint. Global failover is considered the "fallback strategy" that is used when a local failover is unsuccessful, or when a issue is found in the state of the ExecutionGraph that could mark it as inconsistent (caused by a bug).
A local failover is triggered when an individual vertex execution (a task) fails.
The local failover is coordinated by the FailoverStrategy. A local failover typically
attempts to restart as little as possible, but as much as necessary.
Between local- and global failover, the global failover always takes precedence, because it is the core mechanism that the ExecutionGraph relies on to bring back consistency. The guard that, the ExecutionGraph maintains a global modification version, which is incremented with every global failover (and other global actions, like job cancellation, or terminal failure). Local failover is always scoped by the modification version that the execution graph had when the failover was triggered. If a new global modification version is reached during local failover (meaning there is a concurrent global failover), the failover strategy has to yield before the global failover.
| Constructor and Description |
|---|
ExecutionGraph(JobInformation jobInformation,
ScheduledExecutorService futureExecutor,
Executor ioExecutor,
org.apache.flink.api.common.time.Time rpcTimeout,
RestartStrategy restartStrategy,
FailoverStrategy.Factory failoverStrategyFactory,
SlotProvider slotProvider,
ClassLoader userClassLoader,
BlobWriter blobWriter,
org.apache.flink.api.common.time.Time allocationTimeout) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,org.apache.flink.util.OptionalFailure<org.apache.flink.api.common.accumulators.Accumulator<?,?>>> |
aggregateUserAccumulators()
Merges all accumulator results from the tasks previously executed in the Executions.
|
void |
attachJobGraph(List<JobVertex> topologiallySorted) |
void |
cancel() |
void |
enableCheckpointing(long interval,
long checkpointTimeout,
long minPauseBetweenCheckpoints,
int maxConcurrentCheckpoints,
CheckpointRetentionPolicy retentionPolicy,
List<ExecutionJobVertex> verticesToTrigger,
List<ExecutionJobVertex> verticesToWaitFor,
List<ExecutionJobVertex> verticesToCommitTo,
List<MasterTriggerRestoreHook<?>> masterHooks,
CheckpointIDCounter checkpointIDCounter,
CompletedCheckpointStore checkpointStore,
StateBackend checkpointStateBackend,
CheckpointStatsTracker statsTracker) |
void |
failGlobal(Throwable t)
Fails the execution graph globally.
|
StringifiedAccumulatorResult[] |
getAccumulatorResultsStringified()
Returns the a stringified version of the user-defined accumulators.
|
Map<String,org.apache.flink.util.SerializedValue<org.apache.flink.util.OptionalFailure<Object>>> |
getAccumulatorsSerialized()
Gets a serialized accumulator map.
|
Iterable<ExecutionVertex> |
getAllExecutionVertices()
Returns an iterable containing all execution vertices for this execution graph.
|
Map<IntermediateDataSetID,IntermediateResult> |
getAllIntermediateResults() |
org.apache.flink.api.common.time.Time |
getAllocationTimeout() |
Map<JobVertexID,ExecutionJobVertex> |
getAllVertices()
Returns a map containing all job vertices for this execution graph.
|
org.apache.flink.api.common.ArchivedExecutionConfig |
getArchivedExecutionConfig()
Returns the serializable
ArchivedExecutionConfig. |
BlobWriter |
getBlobWriter() |
CheckpointCoordinator |
getCheckpointCoordinator() |
CheckpointCoordinatorConfiguration |
getCheckpointCoordinatorConfiguration()
Returns the
CheckpointCoordinatorConfiguration or null if
checkpointing is disabled. |
CheckpointStatsSnapshot |
getCheckpointStatsSnapshot()
Returns a snapshot of the checkpoint statistics or
null if
checkpointing is disabled. |
FailoverStrategy |
getFailoverStrategy()
Gets the failover strategy used by the execution graph to recover from failures of tasks.
|
Throwable |
getFailureCause() |
ErrorInfo |
getFailureInfo()
Returns the exception that caused the job to fail.
|
Executor |
getFutureExecutor()
Returns the ExecutionContext associated with this ExecutionGraph.
|
org.apache.flink.configuration.Configuration |
getJobConfiguration() |
org.apache.flink.api.common.JobID |
getJobID()
Returns the
JobID for this execution graph. |
org.apache.flink.types.Either<org.apache.flink.util.SerializedValue<JobInformation>,PermanentBlobKey> |
getJobInformationOrBlobKey() |
String |
getJobName()
Returns the job name for the execution graph.
|
ExecutionJobVertex |
getJobVertex(JobVertexID id)
Returns the job vertex for the given
JobVertexID. |
String |
getJsonPlan()
Returns the job plan as a JSON string.
|
KvStateLocationRegistry |
getKvStateLocationRegistry() |
int |
getNumberOfExecutionJobVertices()
Gets the number of job vertices currently held by this execution graph.
|
long |
getNumberOfFullRestarts()
Gets the number of full restarts that the execution graph went through.
|
Map<ExecutionAttemptID,Execution> |
getRegisteredExecutions() |
Collection<URL> |
getRequiredClasspaths()
Returns a list of classpaths referring to the directories/JAR files required to run this job.
|
Collection<PermanentBlobKey> |
getRequiredJarFiles()
Returns a list of BLOB keys referring to the JAR files required to run this job.
|
RestartStrategy |
getRestartStrategy() |
ScheduleMode |
getScheduleMode() |
SlotProvider |
getSlotProvider() |
JobStatus |
getState()
Returns the current
JobStatus for this execution graph. |
long |
getStatusTimestamp(JobStatus status)
Returns the timestamp for the given
JobStatus. |
CompletableFuture<JobStatus> |
getTerminationFuture()
Returns the termination future of this
ExecutionGraph. |
int |
getTotalNumberOfVertices() |
ClassLoader |
getUserClassLoader() |
Iterable<ExecutionJobVertex> |
getVerticesTopologically()
Returns an iterable containing all job vertices for this execution graph in the order they were created.
|
boolean |
isArchived()
Returns whether this execution graph was archived.
|
boolean |
isQueuedSchedulingAllowed() |
boolean |
isStoppable()
Returns whether the job for this execution graph is stoppable.
|
void |
registerExecutionListener(ExecutionStatusListener listener) |
void |
registerJobStatusListener(JobStatusListener listener) |
void |
restart(long expectedGlobalVersion) |
void |
restoreLatestCheckpointedState(boolean errorIfNoCheckpoint,
boolean allowNonRestoredState)
Restores the latest checkpointed state.
|
void |
scheduleForExecution() |
void |
scheduleOrUpdateConsumers(ResultPartitionID partitionId)
Schedule or updates consumers of the given result partition.
|
void |
setJsonPlan(String jsonPlan) |
void |
setQueuedSchedulingAllowed(boolean allowed) |
void |
setScheduleMode(ScheduleMode scheduleMode) |
void |
stop() |
void |
suspend(Throwable suspensionCause)
Suspends the current ExecutionGraph.
|
void |
updateAccumulators(AccumulatorSnapshot accumulatorSnapshot)
Updates the accumulators during the runtime of a job.
|
boolean |
updateState(TaskExecutionState state)
Updates the state of one of the ExecutionVertex's Execution attempts.
|
JobStatus |
waitUntilTerminal() |
public ExecutionGraph(JobInformation jobInformation, ScheduledExecutorService futureExecutor, Executor ioExecutor, org.apache.flink.api.common.time.Time rpcTimeout, RestartStrategy restartStrategy, FailoverStrategy.Factory failoverStrategyFactory, SlotProvider slotProvider, ClassLoader userClassLoader, BlobWriter blobWriter, org.apache.flink.api.common.time.Time allocationTimeout) throws IOException
IOExceptionpublic int getNumberOfExecutionJobVertices()
public boolean isQueuedSchedulingAllowed()
public void setQueuedSchedulingAllowed(boolean allowed)
public void setScheduleMode(ScheduleMode scheduleMode)
public ScheduleMode getScheduleMode()
public org.apache.flink.api.common.time.Time getAllocationTimeout()
public boolean isArchived()
AccessExecutionGraphisArchived in interface AccessExecutionGraphpublic void enableCheckpointing(long interval,
long checkpointTimeout,
long minPauseBetweenCheckpoints,
int maxConcurrentCheckpoints,
CheckpointRetentionPolicy retentionPolicy,
List<ExecutionJobVertex> verticesToTrigger,
List<ExecutionJobVertex> verticesToWaitFor,
List<ExecutionJobVertex> verticesToCommitTo,
List<MasterTriggerRestoreHook<?>> masterHooks,
CheckpointIDCounter checkpointIDCounter,
CompletedCheckpointStore checkpointStore,
StateBackend checkpointStateBackend,
CheckpointStatsTracker statsTracker)
@Nullable public CheckpointCoordinator getCheckpointCoordinator()
public KvStateLocationRegistry getKvStateLocationRegistry()
public RestartStrategy getRestartStrategy()
public CheckpointCoordinatorConfiguration getCheckpointCoordinatorConfiguration()
AccessExecutionGraphCheckpointCoordinatorConfiguration or null if
checkpointing is disabled.getCheckpointCoordinatorConfiguration in interface AccessExecutionGraphpublic CheckpointStatsSnapshot getCheckpointStatsSnapshot()
AccessExecutionGraphnull if
checkpointing is disabled.getCheckpointStatsSnapshot in interface AccessExecutionGraphpublic Collection<PermanentBlobKey> getRequiredJarFiles()
public Collection<URL> getRequiredClasspaths()
public void setJsonPlan(String jsonPlan)
public String getJsonPlan()
AccessExecutionGraphgetJsonPlan in interface AccessExecutionGraphpublic SlotProvider getSlotProvider()
public org.apache.flink.types.Either<org.apache.flink.util.SerializedValue<JobInformation>,PermanentBlobKey> getJobInformationOrBlobKey()
public org.apache.flink.api.common.JobID getJobID()
AccessExecutionGraphJobID for this execution graph.getJobID in interface AccessExecutionGraphpublic String getJobName()
AccessExecutionGraphgetJobName in interface AccessExecutionGraphpublic boolean isStoppable()
AccessExecutionGraphisStoppable in interface AccessExecutionGraphpublic org.apache.flink.configuration.Configuration getJobConfiguration()
public ClassLoader getUserClassLoader()
public JobStatus getState()
AccessExecutionGraphJobStatus for this execution graph.getState in interface AccessExecutionGraphpublic Throwable getFailureCause()
public ErrorInfo getFailureInfo()
AccessExecutionGraphgetFailureInfo in interface AccessExecutionGraphpublic long getNumberOfFullRestarts()
public ExecutionJobVertex getJobVertex(JobVertexID id)
AccessExecutionGraphJobVertexID.getJobVertex in interface AccessExecutionGraphid - id of job vertex to be returnednullpublic Map<JobVertexID,ExecutionJobVertex> getAllVertices()
AccessExecutionGraphgetAllVertices in interface AccessExecutionGraphpublic Iterable<ExecutionJobVertex> getVerticesTopologically()
AccessExecutionGraphgetVerticesTopologically in interface AccessExecutionGraphpublic int getTotalNumberOfVertices()
public Map<IntermediateDataSetID,IntermediateResult> getAllIntermediateResults()
public Iterable<ExecutionVertex> getAllExecutionVertices()
AccessExecutionGraphgetAllExecutionVertices in interface AccessExecutionGraphpublic long getStatusTimestamp(JobStatus status)
AccessExecutionGraphJobStatus.getStatusTimestamp in interface AccessExecutionGraphstatus - status for which the timestamp should be returnedpublic final BlobWriter getBlobWriter()
public Executor getFutureExecutor()
public Map<String,org.apache.flink.util.OptionalFailure<org.apache.flink.api.common.accumulators.Accumulator<?,?>>> aggregateUserAccumulators()
public Map<String,org.apache.flink.util.SerializedValue<org.apache.flink.util.OptionalFailure<Object>>> getAccumulatorsSerialized()
getAccumulatorsSerialized in interface AccessExecutionGraphpublic StringifiedAccumulatorResult[] getAccumulatorResultsStringified()
getAccumulatorResultsStringified in interface AccessExecutionGraphpublic void attachJobGraph(List<JobVertex> topologiallySorted) throws JobException
JobExceptionpublic void scheduleForExecution()
throws JobException
JobExceptionpublic void cancel()
public void stop()
throws StoppingException
StoppingExceptionpublic void suspend(Throwable suspensionCause)
The JobStatus will be directly set to SUSPENDING iff the current state is not a terminal state. All ExecutionJobVertices will be canceled and the onTerminalState() is executed.
The SUSPENDING state is a local terminal state which stops the execution of the job but does not remove the job from the HA job store so that it can be recovered by another JobManager.
suspensionCause - Cause of the suspensionpublic void failGlobal(Throwable t)
This global failure is meant to be triggered in cases where the consistency of the execution graph' state cannot be guaranteed any more (for example when catching unexpected exceptions that indicate a bug or an unexpected call race), and where a full restart is the safe way to get consistency back.
t - The exception that caused the failure.public void restart(long expectedGlobalVersion)
public void restoreLatestCheckpointedState(boolean errorIfNoCheckpoint,
boolean allowNonRestoredState)
throws Exception
The recovery of checkpoints might block. Make sure that calls to this method don't block the job manager actor and run asynchronously.
errorIfNoCheckpoint - Fail if there is no checkpoint availableallowNonRestoredState - Allow to skip checkpoint state that cannot be mapped
to the ExecutionGraph vertices (if the checkpoint contains state for a
job vertex that is not part of this ExecutionGraph).Exceptionpublic org.apache.flink.api.common.ArchivedExecutionConfig getArchivedExecutionConfig()
ArchivedExecutionConfig.getArchivedExecutionConfig in interface AccessExecutionGraphpublic CompletableFuture<JobStatus> getTerminationFuture()
ExecutionGraph. The termination future
is completed with the terminal JobStatus once the ExecutionGraph reaches this
terminal state and all Execution have been terminated.ExecutionGraph.@VisibleForTesting public JobStatus waitUntilTerminal() throws InterruptedException
InterruptedExceptionpublic FailoverStrategy getFailoverStrategy()
public boolean updateState(TaskExecutionState state)
state - The state update.public void scheduleOrUpdateConsumers(ResultPartitionID partitionId) throws ExecutionGraphException
partitionId - specifying the result partition whose consumer shall be scheduled or updatedExecutionGraphException - if the schedule or update consumers operation could not be executedpublic Map<ExecutionAttemptID,Execution> getRegisteredExecutions()
public void updateAccumulators(AccumulatorSnapshot accumulatorSnapshot)
accumulatorSnapshot - The serialized flink and user-defined accumulatorspublic void registerJobStatusListener(JobStatusListener listener)
public void registerExecutionListener(ExecutionStatusListener listener)
Copyright © 2014–2019 The Apache Software Foundation. All rights reserved.