tillrohrmann commented on a change in pull request #15884:
URL: https://github.com/apache/flink/pull/15884#discussion_r635959319
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adaptive/Executing.java
##########
@@ -129,7 +131,9 @@ private void deploy() {
for (ExecutionJobVertex executionJobVertex :
getExecutionGraph().getVerticesTopologically()) {
for (ExecutionVertex executionVertex :
executionJobVertex.getTaskVertices()) {
- deploySafely(executionVertex);
+ if (executionVertex.getExecutionState() !=
ExecutionState.RUNNING) {
+ deploySafely(executionVertex);
+ }
Review comment:
Should we say that we call deploy if the `ExecutionState` is `CREATED`
or `SCHEDULED`?
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]