walterddr commented on a change in pull request #7356: 
[FLINK-10868][flink-yarn] Enforce maximum failed TMs in YarnResourceManager
URL: https://github.com/apache/flink/pull/7356#discussion_r246633525
 
 

 ##########
 File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/resourcemanager/ResourceManager.java
 ##########
 @@ -145,6 +147,12 @@
        /** All registered listeners for status updates of the ResourceManager. 
*/
        private ConcurrentMap<String, InfoMessageListenerRpcGateway> 
infoMessageListeners;
 
+       /** The number of failed containers since the master became active. */
+       protected AtomicInteger failedContainerSoFar = new AtomicInteger(0);
+
+       /** Number of failed TaskManager containers before stopping the 
application. Default is  Integer.MAX_VALUE */
+       protected int maxFailedContainers = Integer.MAX_VALUE;
 
 Review comment:
   this should be `maximumAllowedTaskManagerFailureCount`, to avoid confusion 
since this is only used during `closeTaskManagerConnection` but not 
`closeJobManagerConnection`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to