Github user vanzin commented on a diff in the pull request:

    https://github.com/apache/spark/pull/6827#discussion_r32486202
  
    --- Diff: 
core/src/test/scala/org/apache/spark/deploy/history/FsHistoryProviderSuite.scala
 ---
    @@ -218,6 +223,18 @@ class FsHistoryProviderSuite extends SparkFunSuite 
with BeforeAndAfter with Matc
         }
       }
     
    +  test("Parse logs that application is not started") {
    +    val provider = new FsHistoryProvider((createTestConf()))
    +
    +    val logFile1 = newLogFile("app1", None, inProgress = true)
    +    writeFile(logFile1, true, None,
    +      SparkListenerLogStart("1.4")
    +    )
    +    updateAndCheck(provider) { list =>
    +      list.size should be (0)
    --- End diff --
    
    Oh I see. The filtering of active / inactive is actually done in 
HistoryServer, not in FsHistoryProvider. My bad. So basically the new behavior 
is that if the app doesn't have an app id, it's not even listed, right?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to