Uses of Interface
org.apache.flink.runtime.scheduler.VertexParallelismInformation
-
Packages that use VertexParallelismInformation Package Description org.apache.flink.runtime.executiongraph org.apache.flink.runtime.scheduler -
-
Uses of VertexParallelismInformation in org.apache.flink.runtime.executiongraph
Constructors in org.apache.flink.runtime.executiongraph with parameters of type VertexParallelismInformation Constructor Description ExecutionJobVertex(InternalExecutionGraphAccessor graph, JobVertex jobVertex, VertexParallelismInformation parallelismInfo, CoordinatorStore coordinatorStore, JobManagerJobMetricGroup jobManagerJobMetricGroup)
SpeculativeExecutionJobVertex(InternalExecutionGraphAccessor graph, JobVertex jobVertex, VertexParallelismInformation parallelismInfo, CoordinatorStore coordinatorStore, JobManagerJobMetricGroup jobManagerJobMetricGroup)
-
Uses of VertexParallelismInformation in org.apache.flink.runtime.scheduler
Classes in org.apache.flink.runtime.scheduler that implement VertexParallelismInformation Modifier and Type Class Description class
DefaultVertexParallelismInfo
AVertexParallelismInformation
implementation that provides common validation.Methods in org.apache.flink.runtime.scheduler that return VertexParallelismInformation Modifier and Type Method Description VertexParallelismInformation
DefaultVertexParallelismStore. getParallelismInfo(JobVertexID vertexId)
VertexParallelismInformation
VertexParallelismStore. getParallelismInfo(JobVertexID vertexId)
Returns a given vertex's parallelism information.Methods in org.apache.flink.runtime.scheduler that return types with arguments of type VertexParallelismInformation Modifier and Type Method Description Map<JobVertexID,VertexParallelismInformation>
DefaultVertexParallelismStore. getAllParallelismInfo()
Map<JobVertexID,VertexParallelismInformation>
VertexParallelismStore. getAllParallelismInfo()
Gets a map of all vertex parallelism information.Methods in org.apache.flink.runtime.scheduler with parameters of type VertexParallelismInformation Modifier and Type Method Description void
DefaultVertexParallelismStore. setParallelismInfo(JobVertexID vertexId, VertexParallelismInformation info)
void
MutableVertexParallelismStore. setParallelismInfo(JobVertexID vertexId, VertexParallelismInformation info)
Sets the parallelism properties for the given vertex.
-