Github user ajbozarth commented on a diff in the pull request:
https://github.com/apache/spark/pull/19399#discussion_r142232950
--- Diff:
core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala ---
@@ -487,8 +487,10 @@ private[history] class FsHistoryProvider(conf:
SparkConf, clock: Clock)
protected def mergeApplicationListing(fileStatus: FileStatus): Unit = {
val eventsFilter: ReplayEventsFilter = { eventString =>
eventString.startsWith(APPL_START_EVENT_PREFIX) ||
- eventString.startsWith(APPL_END_EVENT_PREFIX) ||
- eventString.startsWith(LOG_START_EVENT_PREFIX)
+ eventString.startsWith(APPL_END_EVENT_PREFIX) ||
+ eventString.startsWith(LOG_START_EVENT_PREFIX) ||
+ eventString.startsWith(JOB_START_EVENT_PREFIX) ||
+ eventString.startsWith(JOB_END_EVENT_PREFIX)
--- End diff --
Do you know if adding these adds any significant time/delay to page loads?
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]