b923 commented on a change in pull request #9759: [FLINK-14169][history-server]
Cleanup expired jobs from history server
URL: https://github.com/apache/flink/pull/9759#discussion_r335923931
##########
File path:
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/history/HistoryServerArchiveFetcher.java
##########
@@ -69,6 +69,37 @@
*/
class HistoryServerArchiveFetcher {
+ /**
+ * Possible job archive operations in history-server.
+ */
+ public enum JobArchiveOperation {
+ /** Job archive was found in one refresh location and created
in history server. */
+ CREATED,
+ /** Job archive was deleted from one of refresh locations and
deleted from history server.*/
+ DELETED
+ }
+
+ /**
+ * Representation of job archive event.
+ */
+ public static class JobArchiveEvent {
Review comment:
Renamed. Thank you
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services