XComp commented on a change in pull request #13111: URL: https://github.com/apache/flink/pull/13111#discussion_r469244408
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/InputOutputFormatVertex.java ########## @@ -99,15 +100,16 @@ public void initializeOnMaster(ClassLoader loader) throws Exception { ((InitializeOnMaster) outputFormat).initializeGlobal(getParallelism()); } } - + } catch (Throwable t) { + throw ClusterEntryPointExceptionUtils.tryEnrichClusterEntryPointError(t); Review comment: I moved the OOM handling into `JobManagerRunnerImpl`'s constructor as discussed in one of our recent discussions. But, I want to point out that it's actually out-of-scope for FLINK-18220. ---------------------------------------------------------------- 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: us...@infra.apache.org