Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status

Current state[Under Discussion]

...

Page properties


Discussion thread
Vote threadhttps://

...

...

Jira
serverASF JIRA
serverId5aa69414-a9e9-3523-82ec-879b028fb15b
keyFLINK-16050

...

Release


Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).

...

Add view attempt history menu in the subtask, when popup an attempts history modal when user clicking it.

Image Added

When users click the vertex timeline, display all the subtask attempts timeline with subtaskId-host-attemptId.

Image Added

Image RemovedImage Added

REST API Design

   

  • ArchivedExecutionVertex adds method to return prior executions.
  • get prior execution attempt

...

  • by ArchivedExecutionVertex.getPriorExecutionAttempts()

...

int currentAttemptNum = execution.getAttemptNumber();

JobID jobID = request.getPathParameter(JobIDPathParameter.class);

JobVertexID jobVertexID = request.getPathParameter(JobVertexIdPathParameter.class);

List<SubtaskExecutionAttemptDetailsInfo> allAttempts = new ArrayList<>();

  • add

...

if (currentAttemptNum > 0) {

  for (int i = currentAttemptNum - 1; i >= 0; i--) {

    AccessExecution currentExecution = executionVertex.getPriorExecutionAttempt(i);

    if (currentExecution != null) {

      allAttempts.add(SubtaskExecutionAttemptDetailsInfo.create(currentExecution, metricFetcher, jobID, jobVertexID));

    }

  }

}

  • add SubtaskAllExecutionAttemptsDetailsHandler for failed attempt
  • url /jobs/:jobid/vertices/:vertexid/subtasks/:subtaskIndex/attempts
  • response:

{
   "type" : "object",

  "id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:job:SubtaskAllExecutionAttemptsDetailsInfo",

  "properties" : {

         "attempts" : {

             "type" : "array",

            "items" : {

                 "type" : "object",

                 "id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:job:SubtaskExecutionAttemptDetailsInfo",

                    "properties" : {

                          "subtask" : {

                                "type" : "integer"

                            },

                          "status" : {

                                "type" : "string",

                                "enum" : [ "CREATED", "SCHEDULED", "DEPLOYING", "RUNNING", "FINISHED", "CANCELING", "CANCELED", "FAILED", "RECONCILING" ]

                           },

                        "attempt" : {

                              "type" : "integer"

                        },

                       "host" : {

                              "type" : "string"

                        },

                        "start-time" : {

                               "type" : "integer"

                        },

                        "end-time" : {

                              "type" : "integer"

                       },

                      "duration" : {

                            "type" : "integer"

                       },

                       "metrics" : {

                              "type" : "object",

                             "id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:job:metrics:IOMetricsInfo",

                             "properties" : {

                                   "read-bytes" : {

                                          "type" : "integer"

                                   },

                                  "read-bytes-complete" : {

                                        "type" : "boolean"

                                  },

                                  "write-bytes" : {

                                         "type" : "integer"

                                  },

                                  "write-bytes-complete" : {

                                         "type" : "boolean"

                                 },

                                 "read-records" : {

                                        "type" : "integer"

                                  },

                                  "read-records-complete" : {

                                         "type" : "boolean"

                                  },

                                  "write-records" : {

                                        "type" : "integer"

                                  },

                                 "write-records-complete" : {

                                        "type" : "boolean"

            }

          }

        }

      }

    }

  }

}

  • add Collection<SubtaskTimeInfo> in SubtasksTimesHandler result, which comes from ExecutionVertex’s prior executions.
  • url: /jobs/:jobid/vertices/:vertexid/subtasktimes
  • response

                     }

                 }

             },

             "taskmanager-id" : {
                 

{

  "type" : "object",

  "id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:SubtasksTimesInfo",

  "properties" : {

    "id" : {

      "type" : "string"
                 },
    "name            "start_time" : {
                       "type" : "stringinteger"
              }
           }
        }
     }
   }
}

  • In the 'subtasks' array we have objects of type SubtaskTimeInfo with only one added field 'attempt'.
  • add query parameter show-history, default value is false. If show-history is true, information for all attempts including
    previous ones will be returned
  • url: /jobs/:jobid/vertices/:vertexid/subtasktimes?show-history=true
  • response:


{

   

    },

    "now" : {

      "type" : "integer"

    },

    "subtasks" : {

      "type" : "array",

      "items" : {

        "type" : "object",

           "id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:SubtasksTimesInfo:SubtaskTimeInfo",

           "properties" : {

          "subtask       "id" : {

                   "type" : "integerstring"

               },

               "hostname" : {

                     "type" : "string"

                },

                "durationnow" : {

                      "type" : "integer"

                },

                "timestampssubtasks" : {

            "type" : "object",

            "additionalProperties" : {

                        "type" : "integer"

            }

          },

          "attempt-num": {

            "type" : "integer"

          },

          "attempts-time-info": {

            "type": "array",

                      "items" : {

                           "type" : "object",

                           "id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:SubtasksTimesInfo:SubtaskAttemptTimeInfoSubtaskTimeInfo",

                           "properties" : {

                                "subtask" : {

                                      "type" : "integer"

                                 },

                                 "host" : {

                                       "type" : "string"

                                  },

                                  "duration" : {

                                        "type" : "integer"

                                    },

                                    "timestamps" : {

                                         "type" : "object",

                                         "additionalProperties" : {

                                               "type" : "integer"

                  }

                },

                "attempt-num": {

                        }

                    },

                    "attempt": {

                                           "type" : "integer"

                },

              }

            }

          } 

                    }

                   }

      }

    }

  }

}



Test Plan

Everything can be tested with unit tests.