Uses of Interface
org.apache.flink.runtime.executiongraph.AccessExecutionGraph
-
Packages that use AccessExecutionGraph Package Description org.apache.flink.runtime.executiongraph org.apache.flink.runtime.jobmaster org.apache.flink.runtime.messages.webmonitor This package contains the actor messages that are sent between the JobManager and components that are interested in the status of the JobManager.org.apache.flink.runtime.minicluster org.apache.flink.runtime.rest.handler.job org.apache.flink.runtime.rest.handler.job.checkpoints org.apache.flink.runtime.webmonitor.history -
-
Uses of AccessExecutionGraph in org.apache.flink.runtime.executiongraph
Subinterfaces of AccessExecutionGraph in org.apache.flink.runtime.executiongraph Modifier and Type Interface Description interface
ExecutionGraph
The execution graph is the central data structure that coordinates the distributed execution of a data flow.Classes in org.apache.flink.runtime.executiongraph that implement AccessExecutionGraph Modifier and Type Class Description class
ArchivedExecutionGraph
An archived execution graph represents a serializable form of anExecutionGraph
.class
DefaultExecutionGraph
Default implementation of theExecutionGraph
. -
Uses of AccessExecutionGraph in org.apache.flink.runtime.jobmaster
Methods in org.apache.flink.runtime.jobmaster with parameters of type AccessExecutionGraph Modifier and Type Method Description static JobResult
JobResult. createFrom(AccessExecutionGraph accessExecutionGraph)
Creates theJobResult
from the givenAccessExecutionGraph
which must be in a globally terminal state. -
Uses of AccessExecutionGraph in org.apache.flink.runtime.messages.webmonitor
Methods in org.apache.flink.runtime.messages.webmonitor with parameters of type AccessExecutionGraph Modifier and Type Method Description static JobDetails
JobDetails. createDetailsForJob(AccessExecutionGraph job)
-
Uses of AccessExecutionGraph in org.apache.flink.runtime.minicluster
Methods in org.apache.flink.runtime.minicluster that return types with arguments of type AccessExecutionGraph Modifier and Type Method Description CompletableFuture<? extends AccessExecutionGraph>
MiniCluster. getExecutionGraph(org.apache.flink.api.common.JobID jobId)
-
Uses of AccessExecutionGraph in org.apache.flink.runtime.rest.handler.job
-
Uses of AccessExecutionGraph in org.apache.flink.runtime.rest.handler.job.checkpoints
Methods in org.apache.flink.runtime.rest.handler.job.checkpoints with parameters of type AccessExecutionGraph Modifier and Type Method Description Collection<ArchivedJson>
CheckpointConfigHandler. archiveJsonWithPath(AccessExecutionGraph graph)
Collection<ArchivedJson>
CheckpointingStatisticsHandler. archiveJsonWithPath(AccessExecutionGraph graph)
Collection<ArchivedJson>
CheckpointStatisticDetailsHandler. archiveJsonWithPath(AccessExecutionGraph graph)
Collection<ArchivedJson>
TaskCheckpointStatisticDetailsHandler. archiveJsonWithPath(AccessExecutionGraph graph)
protected CheckpointConfigInfo
CheckpointConfigHandler. handleRequest(HandlerRequest<EmptyRequestBody> request, AccessExecutionGraph executionGraph)
-
Uses of AccessExecutionGraph in org.apache.flink.runtime.webmonitor.history
Methods in org.apache.flink.runtime.webmonitor.history with parameters of type AccessExecutionGraph Modifier and Type Method Description Collection<ArchivedJson>
OnlyExecutionGraphJsonArchivist. archiveJsonWithPath(AccessExecutionGraph graph)
Returns aCollection
ofArchivedJson
s containing JSON responses and their respective REST URL for a given job.
-