public abstract class SchedulerBase extends Object implements SchedulerNG, CheckpointScheduling
SchedulerNG.| 限定符和类型 | 字段和说明 |
|---|---|
protected ExecutionVertexVersioner |
executionVertexVersioner |
protected InputsLocationsRetriever |
inputsLocationsRetriever |
protected JobManagerJobMetricGroup |
jobManagerJobMetricGroup |
protected OperatorCoordinatorHandler |
operatorCoordinatorHandler |
protected StateLocationRetriever |
stateLocationRetriever |
| 构造器和说明 |
|---|
SchedulerBase(org.slf4j.Logger log,
JobGraph jobGraph,
Executor ioExecutor,
org.apache.flink.configuration.Configuration jobMasterConfiguration,
CheckpointsCleaner checkpointsCleaner,
CheckpointRecoveryFactory checkpointRecoveryFactory,
JobManagerJobMetricGroup jobManagerJobMetricGroup,
ExecutionVertexVersioner executionVertexVersioner,
long initializationTimestamp,
org.apache.flink.runtime.concurrent.ComponentMainThreadExecutor mainThreadExecutor,
JobStatusListener jobStatusListener,
ExecutionGraphFactory executionGraphFactory,
VertexParallelismStore vertexParallelismStore) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
acknowledgeCheckpoint(org.apache.flink.api.common.JobID jobID,
ExecutionAttemptID executionAttemptID,
long checkpointId,
CheckpointMetrics checkpointMetrics,
TaskStateSnapshot checkpointState) |
protected void |
archiveFromFailureHandlingResult(FailureHandlingResultSnapshot failureHandlingResult) |
protected void |
archiveGlobalFailure(Throwable failure) |
void |
cancel() |
protected abstract void |
cancelAllPendingSlotRequestsInternal() |
CompletableFuture<Void> |
closeAsync() |
static VertexParallelismStore |
computeVertexParallelismStore(Iterable<JobVertex> vertices)
Compute the
VertexParallelismStore for all given vertices, which will set defaults
and ensure that the returned store contains valid parallelisms. |
static VertexParallelismStore |
computeVertexParallelismStore(Iterable<JobVertex> vertices,
java.util.function.Function<JobVertex,Integer> defaultMaxParallelismFunc) |
static VertexParallelismStore |
computeVertexParallelismStore(Iterable<JobVertex> vertices,
java.util.function.Function<JobVertex,Integer> defaultMaxParallelismFunc,
java.util.function.Function<Integer,Integer> normalizeParallelismFunc)
Compute the
VertexParallelismStore for all given vertices, which will set defaults
and ensure that the returned store contains valid parallelisms, with a custom function for
default max parallelism calculation and a custom function for normalizing vertex parallelism. |
static VertexParallelismStore |
computeVertexParallelismStore(JobGraph jobGraph)
Compute the
VertexParallelismStore for all vertices of a given job graph, which will
set defaults and ensure that the returned store contains valid parallelisms. |
void |
declineCheckpoint(DeclineCheckpoint decline) |
CompletableFuture<CoordinationResponse> |
deliverCoordinationRequestToCoordinator(OperatorID operator,
CoordinationRequest request)
Delivers a coordination request to the
OperatorCoordinator with the given OperatorID and returns the coordinator's response. |
void |
deliverOperatorEventToCoordinator(ExecutionAttemptID taskExecutionId,
OperatorID operatorId,
OperatorEvent evt)
Delivers the given OperatorEvent to the
OperatorCoordinator with the given OperatorID. |
protected void |
failJob(Throwable cause,
long timestamp) |
static int |
getDefaultMaxParallelism(JobVertex vertex)
Get a default value to use for a given vertex's max parallelism if none was specified.
|
Iterable<RootExceptionHistoryEntry> |
getExceptionHistory() |
ExecutionGraph |
getExecutionGraph()
ExecutionGraph is exposed to make it easier to rework tests to be based on the new scheduler.
|
ExecutionJobVertex |
getExecutionJobVertex(JobVertexID jobVertexId) |
ExecutionVertex |
getExecutionVertex(ExecutionVertexID executionVertexId) |
protected JobGraph |
getJobGraph() |
CompletableFuture<org.apache.flink.api.common.JobStatus> |
getJobTerminationFuture() |
protected org.apache.flink.runtime.concurrent.ComponentMainThreadExecutor |
getMainThreadExecutor() |
protected abstract long |
getNumberOfRestarts() |
protected ResultPartitionAvailabilityChecker |
getResultPartitionAvailabilityChecker() |
protected SchedulingTopology |
getSchedulingTopology() |
void |
notifyKvStateRegistered(org.apache.flink.api.common.JobID jobId,
JobVertexID jobVertexId,
KeyGroupRange keyGroupRange,
String registrationName,
org.apache.flink.queryablestate.KvStateID kvStateId,
InetSocketAddress kvStateServerAddress) |
void |
notifyKvStateUnregistered(org.apache.flink.api.common.JobID jobId,
JobVertexID jobVertexId,
KeyGroupRange keyGroupRange,
String registrationName) |
protected abstract void |
onTaskFailed(Execution execution) |
protected abstract void |
onTaskFinished(Execution execution) |
static void |
registerJobMetrics(org.apache.flink.metrics.MetricGroup metrics,
JobStatusProvider jobStatusProvider,
org.apache.flink.metrics.Gauge<Long> numberOfRestarts,
DeploymentStateTimeMetrics deploymentTimeMetrics,
java.util.function.Consumer<JobStatusListener> jobStatusListenerRegistrar,
long initializationTimestamp,
org.apache.flink.configuration.MetricOptions.JobStatusMetricsSettings jobStatusMetricsSettings) |
void |
reportCheckpointMetrics(org.apache.flink.api.common.JobID jobID,
ExecutionAttemptID attemptId,
long id,
CheckpointMetrics metrics) |
ExecutionGraphInfo |
requestJob() |
JobDetails |
requestJobDetails() |
org.apache.flink.api.common.JobStatus |
requestJobStatus() |
KvStateLocation |
requestKvStateLocation(org.apache.flink.api.common.JobID jobId,
String registrationName) |
SerializedInputSplit |
requestNextInputSplit(JobVertexID vertexID,
ExecutionAttemptID executionAttempt) |
ExecutionState |
requestPartitionState(IntermediateDataSetID intermediateResultId,
ResultPartitionID resultPartitionId) |
protected void |
resetForNewExecution(ExecutionVertexID executionVertexId) |
protected void |
resetForNewExecutions(Collection<ExecutionVertexID> vertices) |
protected void |
restoreState(Set<ExecutionVertexID> vertices,
boolean isGlobalRecovery) |
protected void |
setGlobalFailureCause(Throwable cause,
long timestamp) |
void |
startCheckpointScheduler()
Starts the periodic scheduling if possible.
|
void |
startScheduling() |
protected abstract void |
startSchedulingInternal() |
void |
stopCheckpointScheduler()
Stops the periodic scheduling if possible.
|
CompletableFuture<String> |
stopWithSavepoint(String targetDirectory,
boolean terminate,
org.apache.flink.core.execution.SavepointFormatType formatType) |
protected void |
transitionExecutionGraphState(org.apache.flink.api.common.JobStatus current,
org.apache.flink.api.common.JobStatus newState) |
protected void |
transitionToRunning() |
protected void |
transitionToScheduled(List<ExecutionVertexID> verticesToDeploy) |
CompletableFuture<String> |
triggerCheckpoint() |
CompletableFuture<String> |
triggerSavepoint(String targetDirectory,
boolean cancelJob,
org.apache.flink.core.execution.SavepointFormatType formatType) |
void |
updateAccumulators(AccumulatorSnapshot accumulatorSnapshot) |
boolean |
updateTaskExecutionState(TaskExecutionStateTransition taskExecutionState) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitupdateTaskExecutionStatehandleGlobalFailureprotected final StateLocationRetriever stateLocationRetriever
protected final InputsLocationsRetriever inputsLocationsRetriever
protected final JobManagerJobMetricGroup jobManagerJobMetricGroup
protected final ExecutionVertexVersioner executionVertexVersioner
protected final OperatorCoordinatorHandler operatorCoordinatorHandler
public SchedulerBase(org.slf4j.Logger log,
JobGraph jobGraph,
Executor ioExecutor,
org.apache.flink.configuration.Configuration jobMasterConfiguration,
CheckpointsCleaner checkpointsCleaner,
CheckpointRecoveryFactory checkpointRecoveryFactory,
JobManagerJobMetricGroup jobManagerJobMetricGroup,
ExecutionVertexVersioner executionVertexVersioner,
long initializationTimestamp,
org.apache.flink.runtime.concurrent.ComponentMainThreadExecutor mainThreadExecutor,
JobStatusListener jobStatusListener,
ExecutionGraphFactory executionGraphFactory,
VertexParallelismStore vertexParallelismStore)
throws Exception
Exceptionpublic static int getDefaultMaxParallelism(JobVertex vertex)
vertex - the vertex to compute a default max parallelism forpublic static VertexParallelismStore computeVertexParallelismStore(Iterable<JobVertex> vertices, java.util.function.Function<JobVertex,Integer> defaultMaxParallelismFunc)
public static VertexParallelismStore computeVertexParallelismStore(Iterable<JobVertex> vertices, java.util.function.Function<JobVertex,Integer> defaultMaxParallelismFunc, java.util.function.Function<Integer,Integer> normalizeParallelismFunc)
VertexParallelismStore for all given vertices, which will set defaults
and ensure that the returned store contains valid parallelisms, with a custom function for
default max parallelism calculation and a custom function for normalizing vertex parallelism.vertices - the vertices to compute parallelism fordefaultMaxParallelismFunc - a function for computing a default max parallelism if none
is specified on a given vertexnormalizeParallelismFunc - a function for normalizing vertex parallelismpublic static VertexParallelismStore computeVertexParallelismStore(Iterable<JobVertex> vertices)
VertexParallelismStore for all given vertices, which will set defaults
and ensure that the returned store contains valid parallelisms.vertices - the vertices to compute parallelism forpublic static VertexParallelismStore computeVertexParallelismStore(JobGraph jobGraph)
VertexParallelismStore for all vertices of a given job graph, which will
set defaults and ensure that the returned store contains valid parallelisms.jobGraph - the job graph to retrieve vertices fromprotected void resetForNewExecutions(Collection<ExecutionVertexID> vertices)
protected void resetForNewExecution(ExecutionVertexID executionVertexId)
protected void restoreState(Set<ExecutionVertexID> vertices, boolean isGlobalRecovery) throws Exception
Exceptionprotected void transitionToScheduled(List<ExecutionVertexID> verticesToDeploy)
protected void setGlobalFailureCause(@Nullable Throwable cause, long timestamp)
protected org.apache.flink.runtime.concurrent.ComponentMainThreadExecutor getMainThreadExecutor()
protected void failJob(Throwable cause, long timestamp)
protected final SchedulingTopology getSchedulingTopology()
protected final ResultPartitionAvailabilityChecker getResultPartitionAvailabilityChecker()
protected final void transitionToRunning()
public ExecutionVertex getExecutionVertex(ExecutionVertexID executionVertexId)
public ExecutionJobVertex getExecutionJobVertex(JobVertexID jobVertexId)
protected JobGraph getJobGraph()
protected abstract long getNumberOfRestarts()
protected abstract void cancelAllPendingSlotRequestsInternal()
protected void transitionExecutionGraphState(org.apache.flink.api.common.JobStatus current,
org.apache.flink.api.common.JobStatus newState)
@VisibleForTesting public ExecutionGraph getExecutionGraph()
public final void startScheduling()
startScheduling 在接口中 SchedulerNGpublic static void registerJobMetrics(org.apache.flink.metrics.MetricGroup metrics,
JobStatusProvider jobStatusProvider,
org.apache.flink.metrics.Gauge<Long> numberOfRestarts,
DeploymentStateTimeMetrics deploymentTimeMetrics,
java.util.function.Consumer<JobStatusListener> jobStatusListenerRegistrar,
long initializationTimestamp,
org.apache.flink.configuration.MetricOptions.JobStatusMetricsSettings jobStatusMetricsSettings)
protected abstract void startSchedulingInternal()
public CompletableFuture<Void> closeAsync()
closeAsync 在接口中 org.apache.flink.util.AutoCloseableAsyncpublic void cancel()
cancel 在接口中 SchedulerNGpublic CompletableFuture<org.apache.flink.api.common.JobStatus> getJobTerminationFuture()
getJobTerminationFuture 在接口中 SchedulerNGprotected final void archiveGlobalFailure(Throwable failure)
protected final void archiveFromFailureHandlingResult(FailureHandlingResultSnapshot failureHandlingResult)
public final boolean updateTaskExecutionState(TaskExecutionStateTransition taskExecutionState)
updateTaskExecutionState 在接口中 SchedulerNGprotected abstract void onTaskFinished(Execution execution)
protected abstract void onTaskFailed(Execution execution)
public SerializedInputSplit requestNextInputSplit(JobVertexID vertexID, ExecutionAttemptID executionAttempt) throws IOException
requestNextInputSplit 在接口中 SchedulerNGIOExceptionpublic ExecutionState requestPartitionState(IntermediateDataSetID intermediateResultId, ResultPartitionID resultPartitionId) throws PartitionProducerDisposedException
@VisibleForTesting public Iterable<RootExceptionHistoryEntry> getExceptionHistory()
public ExecutionGraphInfo requestJob()
requestJob 在接口中 SchedulerNGpublic org.apache.flink.api.common.JobStatus requestJobStatus()
requestJobStatus 在接口中 SchedulerNGpublic JobDetails requestJobDetails()
requestJobDetails 在接口中 SchedulerNGpublic KvStateLocation requestKvStateLocation(org.apache.flink.api.common.JobID jobId, String registrationName) throws UnknownKvStateLocation, FlinkJobNotFoundException
public void notifyKvStateRegistered(org.apache.flink.api.common.JobID jobId,
JobVertexID jobVertexId,
KeyGroupRange keyGroupRange,
String registrationName,
org.apache.flink.queryablestate.KvStateID kvStateId,
InetSocketAddress kvStateServerAddress)
throws FlinkJobNotFoundException
notifyKvStateRegistered 在接口中 SchedulerNGFlinkJobNotFoundExceptionpublic void notifyKvStateUnregistered(org.apache.flink.api.common.JobID jobId,
JobVertexID jobVertexId,
KeyGroupRange keyGroupRange,
String registrationName)
throws FlinkJobNotFoundException
notifyKvStateUnregistered 在接口中 SchedulerNGFlinkJobNotFoundExceptionpublic void updateAccumulators(AccumulatorSnapshot accumulatorSnapshot)
updateAccumulators 在接口中 SchedulerNGpublic CompletableFuture<String> triggerSavepoint(String targetDirectory, boolean cancelJob, org.apache.flink.core.execution.SavepointFormatType formatType)
triggerSavepoint 在接口中 SchedulerNGpublic CompletableFuture<String> triggerCheckpoint()
triggerCheckpoint 在接口中 SchedulerNGpublic void stopCheckpointScheduler()
CheckpointSchedulingstopCheckpointScheduler 在接口中 CheckpointSchedulingpublic void startCheckpointScheduler()
CheckpointSchedulingstartCheckpointScheduler 在接口中 CheckpointSchedulingpublic void acknowledgeCheckpoint(org.apache.flink.api.common.JobID jobID,
ExecutionAttemptID executionAttemptID,
long checkpointId,
CheckpointMetrics checkpointMetrics,
TaskStateSnapshot checkpointState)
acknowledgeCheckpoint 在接口中 SchedulerNGpublic void declineCheckpoint(DeclineCheckpoint decline)
declineCheckpoint 在接口中 SchedulerNGpublic void reportCheckpointMetrics(org.apache.flink.api.common.JobID jobID,
ExecutionAttemptID attemptId,
long id,
CheckpointMetrics metrics)
reportCheckpointMetrics 在接口中 SchedulerNGpublic CompletableFuture<String> stopWithSavepoint(@Nullable String targetDirectory, boolean terminate, org.apache.flink.core.execution.SavepointFormatType formatType)
stopWithSavepoint 在接口中 SchedulerNGpublic void deliverOperatorEventToCoordinator(ExecutionAttemptID taskExecutionId, OperatorID operatorId, OperatorEvent evt) throws org.apache.flink.util.FlinkException
SchedulerNGOperatorCoordinator with the given OperatorID.
Failure semantics: If the task manager sends an event for a non-running task or a non-existing operator coordinator, then respond with an exception to the call. If task and coordinator exist, then we assume that the call from the TaskManager was valid, and any bubbling exception needs to cause a job failure
deliverOperatorEventToCoordinator 在接口中 SchedulerNGorg.apache.flink.util.FlinkException - Thrown, if the task is not running or no operator/coordinator exists
for the given ID.public CompletableFuture<CoordinationResponse> deliverCoordinationRequestToCoordinator(OperatorID operator, CoordinationRequest request) throws org.apache.flink.util.FlinkException
SchedulerNGOperatorCoordinator with the given OperatorID and returns the coordinator's response.deliverCoordinationRequestToCoordinator 在接口中 SchedulerNGorg.apache.flink.util.FlinkException - Thrown, if the task is not running, or no operator/coordinator exists
for the given ID, or the coordinator cannot handle client events.Copyright © 2014–2022 The Apache Software Foundation. All rights reserved.