zentol commented on a change in pull request #18443:
URL: https://github.com/apache/flink/pull/18443#discussion_r793711681
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adaptive/CreatingExecutionGraph.java
##########
@@ -79,6 +81,11 @@ private void handleExecutionGraphCreation(
throwable);
context.goToFinished(context.getArchivedExecutionGraph(JobStatus.FAILED,
throwable));
} else {
+ for (ExecutionVertex vertex :
+
executionGraphWithVertexParallelism.executionGraph.getAllExecutionVertices()) {
Review comment:
It means that the scheduler now actively prepares the deployment of
these executions, by requesting resources and assigning slots. Once the
execution was assigned a slot we start the deployment (i.e., submitting the
task to the TM) and transition to DEPLOYING.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]