eaglewatcherwb commented on issue #7560: [FLINK-11344][webfrontend] display all execution attempts on web URL: https://github.com/apache/flink/pull/7560#issuecomment-462019922 @greghogan The pictures below are the before and after screenshots. I run the word count job with parallelism 2 and inject an error in the first attempt of Reduce(1/2).   I insert the code before `invokable.invoke();` in `Task#run` of Task.java to create failed jobs: ``` if (taskInfo.getTaskName().contains("Reduce") && taskInfo.getIndexOfThisSubtask() == 0 && taskInfo.getAttemptNumber() == 0) { throw new RuntimeException("crash"); } ``` 
---------------------------------------------------------------- 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