This is an automated email from the ASF dual-hosted git repository.
zhuzh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from 3cf73f3d809 [FLINK-39164][history] Fix HistoryServerTest by adding
delay to avoid identical archive timestamps
new e56d433218d [FLINK-38977][runtime] Expose exceptions for applications
new 9b7c95c8e0a [FLINK-38977][ui] Expose exceptions for applications
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:
.../application/PackagedProgramApplication.java | 38 +++-
.../PackagedProgramApplicationTest.java | 122 ++++++----
.../webmonitor/history/HistoryServerTest.java | 3 +-
.../src/test/resources/rest_api_v1.snapshot | 52 ++++-
...{job-flamegraph.ts => application-exception.ts} | 21 +-
.../web-dashboard/src/app/interfaces/public-api.ts | 1 +
.../app/pages/application/application.config.ts | 5 +-
.../application-exceptions.component.html} | 17 +-
.../application-exceptions.component.less} | 0
.../application-exceptions.component.ts} | 97 ++------
.../modules/completed-application/routes.ts | 10 +
.../modules/running-application/routes.ts | 10 +
.../src/app/services/application.service.ts | 7 +
.../runtime/application/AbstractApplication.java | 13 ++
.../ApplicationExceptionHistoryEntry.java | 39 ++--
.../runtime/application/ArchivedApplication.java | 19 +-
.../flink/runtime/dispatcher/Dispatcher.java | 27 ++-
...dler.java => ApplicationExceptionsHandler.java} | 28 ++-
.../ApplicationExceptionsInfoWithHistory.java | 246 +++++++++++++++++++++
...ders.java => ApplicationExceptionsHeaders.java} | 27 ++-
.../ApplicationExceptionsMessageParameters.java} | 20 +-
.../runtime/webmonitor/WebMonitorEndpoint.java | 13 ++
.../application/AbstractApplicationTest.java | 34 +++
.../ArchivedApplicationStoreTestUtils.java | 3 +-
.../application/ApplicationDetailsHandlerTest.java | 3 +-
.../ApplicationExceptionsHandlerTest.java | 181 +++++++++++++++
.../ApplicationsOverviewHandlerTest.java | 3 +-
... ApplicationExceptionsInfoWithHistoryTest.java} | 35 +--
28 files changed, 851 insertions(+), 223 deletions(-)
copy flink-runtime-web/web-dashboard/src/app/interfaces/{job-flamegraph.ts =>
application-exception.ts} (72%)
copy
flink-runtime-web/web-dashboard/src/app/{components/navigation/navigation.component.html
=> pages/application/exceptions/application-exceptions.component.html} (70%)
copy
flink-runtime-web/web-dashboard/src/app/pages/{job/exceptions/job-exceptions.component.less
=> application/exceptions/application-exceptions.component.less} (100%)
copy
flink-runtime-web/web-dashboard/src/app/pages/{job/exceptions/job-exceptions.component.ts
=> application/exceptions/application-exceptions.component.ts} (52%)
copy
flink-core/src/main/java/org/apache/flink/api/common/aggregators/DoubleZeroConvergence.java
=>
flink-runtime/src/main/java/org/apache/flink/runtime/application/ApplicationExceptionHistoryEntry.java
(52%)
copy
flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/application/{ApplicationDetailsHandler.java
=> ApplicationExceptionsHandler.java} (74%)
create mode 100644
flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/ApplicationExceptionsInfoWithHistory.java
copy
flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/application/{ApplicationDetailsHeaders.java
=> ApplicationExceptionsHeaders.java} (70%)
copy
flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/{job/JobExceptionsMessageParameters.java
=> application/ApplicationExceptionsMessageParameters.java} (64%)
create mode 100644
flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/application/ApplicationExceptionsHandlerTest.java
copy
flink-runtime/src/test/java/org/apache/flink/runtime/rest/messages/{JobExceptionsInfoWithHistoryTest.java
=> ApplicationExceptionsInfoWithHistoryTest.java} (58%)