Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLINK-11344][webfrontend] display all execution attempts on web #7560

Closed
wants to merge 1 commit into from

Conversation

eaglewatcherwb
Copy link
Contributor

dashboard

Change-Id: I859cf593ca567006778330b5a22f3b8af5acc965

What is the purpose of the change

display all execution attempts on web

Brief change log

  • display all execution attempts on web

Does this pull request potentially affect one of the following parts:

  • Dependencies (does it add or upgrade a dependency): no
  • The public API, i.e., is any changed class annotated with @Public(Evolving): no
  • The serializers: no
  • The runtime per-record code paths (performance sensitive): no
  • Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Yarn/Mesos, ZooKeeper: no
  • The S3 file system connector: no

Documentation

  • Does this pull request introduce a new feature? no
  • If yes, how is the feature documented? (not applicable / docs / JavaDocs / not documented)

dashboard

Change-Id: I859cf593ca567006778330b5a22f3b8af5acc965
@greghogan
Copy link
Contributor

@eaglewatcherwb could you include before and after screenshots? Do we have a simple, reproducible way to create failed jobs?

@eaglewatcherwb
Copy link
Contributor Author

@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).
image
image

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");
 }

image

@zentol
Copy link
Contributor

zentol commented Nov 11, 2022

Subsumed by FLINK-28588.

@zentol zentol closed this Nov 11, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
4 participants