This is an automated email from the ASF dual-hosted git repository.
reswqa pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from f16dd6e7c23 [hotfix][ci] Bump checkout action to v7
new db8a7f74fd9 [FLINK-40097][historyserver] Lazily load archives to
expose job overviews earlier
new ae20292b5c1 [FLINK-40097][historyserver] Prioritize on-demand fetching
for accessed jobs
new d8660309854 [FLINK-40097][docs] Document archive load modes of
HistoryServer
The 3 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:
.../docs/deployment/advanced/historyserver.md | 18 +
.../docs/deployment/advanced/historyserver.md | 18 +
.../generated/history_server_configuration.html | 18 +
.../flink/configuration/HistoryServerOptions.java | 51 +++
.../history/AbstractHistoryServerHandler.java | 131 ++++++-
.../webmonitor/history/ArchiveMetaInfo.java | 55 +--
.../runtime/webmonitor/history/HistoryServer.java | 113 +++++-
.../HistoryServerApplicationArchiveFetcher.java | 71 +++-
.../history/HistoryServerArchiveFetcher.java | 294 ++++++++++++--
.../history/HistoryServerRocksDBHandler.java | 10 +-
.../HistoryServerStaticFileServerHandler.java | 19 +-
.../history/AbstractHistoryServerHandlerTest.java | 226 ++++++++++-
...HistoryServerApplicationArchiveFetcherTest.java | 407 +++++++++++++++++++
.../history/HistoryServerArchiveFetcherTest.java | 429 +++++++++++++++++++++
.../webmonitor/history/HistoryServerTest.java | 104 +----
.../webmonitor/history/HistoryServerTestUtils.java | 295 ++++++++++++++
.../webmonitor/utils/WebFrontendBootstrapTest.java | 8 +-
17 files changed, 2060 insertions(+), 207 deletions(-)
copy
flink-end-to-end-tests/flink-plugins-test/another-dummy-fs/src/main/java/org/apache/flink/fs/anotherdummy/AnotherDummyFSFileStatus.java
=>
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/history/ArchiveMetaInfo.java
(50%)
create mode 100644
flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/history/HistoryServerApplicationArchiveFetcherTest.java
create mode 100644
flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/history/HistoryServerArchiveFetcherTest.java
create mode 100644
flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/history/HistoryServerTestUtils.java