GJL commented on a change in pull request #10082: [FLINK-14164][runtime] Add a 
meter ‘numberOfRestarts’ to show number of restarts as well as its rate
URL: https://github.com/apache/flink/pull/10082#discussion_r342610467
 
 

 ##########
 File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/SchedulerBase.java
 ##########
 @@ -193,6 +197,11 @@ public SchedulerBase(
                this.failoverTopology = executionGraph.getFailoverTopology();
 
                this.inputsLocationsRetriever = new 
ExecutionGraphToInputsLocationsRetrieverAdapter(executionGraph);
+
+               // Use the counter from execution graph to avoid modifying 
execution graph interfaces
+               // Can be a new SimpleCounter created here after the legacy 
scheduler is removed.
+               this.numberOfRestartsCounter = 
executionGraph.getNumberOfRestartsCounter();
 
 Review comment:
   Why do we need the counter from `ExecutionGraph`? As far as I can see, the 
number of restarts in `ExecutionGraph` is incremented additionally in 
`cancel()` and `suspend()` which we invoke from `SchedulerBase`.

----------------------------------------------------------------
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]


With regards,
Apache Git Services

Reply via email to