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 c5d3273ffdd [hotfix][release] Update japicmp configuration for 2.3.0
(#28536)
new ca95b59981b [FLINK-39911][historyserver] Introduce ArchiveStorage
abstraction and FileArchiveStorage implementation
new c1f4c5ea64c [FLINK-39911][historyserver] Extract
AbstractHistoryServerHandler from HistoryServerStaticFileServerHandler
new d531fb808ea [FLINK-39911][historyserver] Support RocksDB as archive
storage backend
new 0fbd749cacc [FLINK-39911][docs] Document HistoryServer archive storage
backend
The 4 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 | 13 +
.../docs/deployment/advanced/historyserver.md | 13 +
.../generated/history_server_configuration.html | 6 +
.../flink/configuration/HistoryServerOptions.java | 19 ++
flink-runtime-web/pom.xml | 10 +
...dler.java => AbstractHistoryServerHandler.java} | 227 +++++++++-------
.../runtime/webmonitor/history/ArchiveStorage.java | 104 +++++++
.../webmonitor/history/FileArchiveStorage.java | 125 +++++++++
.../runtime/webmonitor/history/HistoryServer.java | 94 ++++---
.../HistoryServerApplicationArchiveFetcher.java | 100 ++++---
.../history/HistoryServerArchiveFetcher.java | 109 +++-----
.../history/HistoryServerRocksDBHandler.java | 55 ++++
.../HistoryServerStaticFileServerHandler.java | 228 +---------------
.../webmonitor/history/RocksDBArchiveStorage.java | 299 +++++++++++++++++++++
.../history/AbstractHistoryServerHandlerTest.java | 187 +++++++++++++
.../webmonitor/history/ArchiveStorageTest.java | 199 ++++++++++++++
.../HistoryServerStaticFileServerHandlerTest.java | 95 -------
.../web-dashboard/src/app/app.interceptor.ts | 2 +-
.../flink-statebackend-rocksdb/pom.xml | 2 +-
pom.xml | 1 +
20 files changed, 1337 insertions(+), 551 deletions(-)
copy
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/history/{HistoryServerStaticFileServerHandler.java
=> AbstractHistoryServerHandler.java} (62%)
create mode 100644
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/history/ArchiveStorage.java
create mode 100644
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/history/FileArchiveStorage.java
create mode 100644
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/history/HistoryServerRocksDBHandler.java
create mode 100644
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/history/RocksDBArchiveStorage.java
create mode 100644
flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/history/AbstractHistoryServerHandlerTest.java
create mode 100644
flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/history/ArchiveStorageTest.java
delete mode 100644
flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/history/HistoryServerStaticFileServerHandlerTest.java