This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git.


    from 63be0cd  [FLINK-21874][coordination] Ignore outdated slot allocation 
confirmations
     new b6e0074  [FLINK-21190][runtime] Refactors JsonArchivist interface
     new dd80c07  [FLINK-21190][runtime] Introduces exception history to web UI

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../generated/all_jobmanager_section.html          |   6 +
 .../generated/job_manager_configuration.html       |   6 +
 .../shortcodes/generated/rest_v1_dispatcher.html   |  37 +-
 .../flink/configuration/JobManagerOptions.java     |   9 +
 .../src/test/resources/rest_api_v1.snapshot        |  35 +-
 .../src/app/interfaces/job-exception.ts            |  14 +
 .../job/exceptions/job-exceptions.component.html   |  18 +-
 .../job/exceptions/job-exceptions.component.ts     |  17 +-
 .../rest/handler/job/JobAccumulatorsHandler.java   |   4 +-
 .../runtime/rest/handler/job/JobConfigHandler.java |   4 +-
 .../rest/handler/job/JobDetailsHandler.java        |   4 +-
 .../rest/handler/job/JobExceptionsHandler.java     | 126 +++++--
 .../runtime/rest/handler/job/JobPlanHandler.java   |   4 +-
 .../rest/handler/job/JobVertexDetailsHandler.java  |   4 +-
 .../handler/job/JobVertexTaskManagersHandler.java  |   4 +-
 .../rest/handler/job/JobsOverviewHandler.java      |   4 +-
 ...SubtaskExecutionAttemptAccumulatorsHandler.java |   4 +-
 .../job/SubtaskExecutionAttemptDetailsHandler.java |   4 +-
 .../rest/handler/job/SubtasksTimesHandler.java     |   4 +-
 .../job/checkpoints/CheckpointConfigHandler.java   |   4 +-
 .../CheckpointStatisticDetailsHandler.java         |   4 +-
 .../CheckpointingStatisticsHandler.java            |   4 +-
 .../TaskCheckpointStatisticDetailsHandler.java     |   4 +-
 .../rest/messages/JobExceptionsHeaders.java        |  18 +-
 .../runtime/rest/messages/JobExceptionsInfo.java   |  54 ++-
 .../messages/JobExceptionsInfoWithHistory.java     | 273 +++++++++++++++
 .../runtime/scheduler/ExceptionHistoryEntry.java   | 189 ++++++++++
 .../runtime/scheduler/ExecutionGraphInfo.java      |   9 +-
 .../flink/runtime/scheduler/SchedulerBase.java     |  42 ++-
 .../flink/runtime/util/BoundedFIFOQueue.java       |  87 +++++
 .../runtime/webmonitor/WebMonitorEndpoint.java     |   6 +-
 .../runtime/webmonitor/history/JsonArchivist.java  |  21 +-
 ...t.java => OnlyExecutionGraphJsonArchivist.java} |  21 +-
 .../rest/handler/job/JobExceptionsHandlerTest.java | 380 +++++++++++++++++++--
 .../rest/messages/JobExceptionsInfoTest.java       |  47 ---
 ...=> JobExceptionsInfoWithHistoryNoRootTest.java} |  30 +-
 .../messages/JobExceptionsInfoWithHistoryTest.java |  79 +++++
 .../runtime/scheduler/DefaultSchedulerTest.java    | 109 +++++-
 .../scheduler/ExceptionHistoryEntryTest.java       | 222 ++++++++++++
 .../scheduler/TestExecutionSlotAllocator.java      |  12 +-
 .../TestExecutionSlotAllocatorFactory.java         |   5 +
 .../flink/runtime/util/BoundedFIFOQueueTest.java   | 107 ++++++
 42 files changed, 1805 insertions(+), 230 deletions(-)
 create mode 100644 
flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/JobExceptionsInfoWithHistory.java
 create mode 100644 
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/ExceptionHistoryEntry.java
 create mode 100644 
flink-runtime/src/main/java/org/apache/flink/runtime/util/BoundedFIFOQueue.java
 copy 
flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/history/{JsonArchivist.java
 => OnlyExecutionGraphJsonArchivist.java} (72%)
 delete mode 100644 
flink-runtime/src/test/java/org/apache/flink/runtime/rest/messages/JobExceptionsInfoTest.java
 rename 
flink-runtime/src/test/java/org/apache/flink/runtime/rest/messages/{JobExceptionsInfoNoRootTest.java
 => JobExceptionsInfoWithHistoryNoRootTest.java} (55%)
 create mode 100644 
flink-runtime/src/test/java/org/apache/flink/runtime/rest/messages/JobExceptionsInfoWithHistoryTest.java
 create mode 100644 
flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/ExceptionHistoryEntryTest.java
 create mode 100644 
flink-runtime/src/test/java/org/apache/flink/runtime/util/BoundedFIFOQueueTest.java

Reply via email to