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

    https://github.com/apache/spark/pull/5792#discussion_r31581618
  
    --- Diff: 
core/src/test/scala/org/apache/spark/deploy/history/FsHistoryProviderSuite.scala
 ---
    @@ -335,6 +337,53 @@ class FsHistoryProviderSuite extends FunSuite with 
BeforeAndAfter with Matchers
         assert(!log2.exists())
       }
     
    +  test("Event log copy") {
    +    val provider = new FsHistoryProvider(createTestConf())
    +    val logs = (1 to 2).map { i =>
    +      val log = newLogFile("downloadApp1", Some(s"attempt$i"), inProgress 
= false)
    +      writeFile(log, true, None,
    +        SparkListenerApplicationStart(
    +          "downloadApp1", Some("downloadApp1"), 5000 * i, "test", 
Some(s"attempt$i")),
    +        SparkListenerApplicationEnd(5001 * i)
    +      )
    +      log
    +    }
    +    provider.checkForLogs()
    +
    +    (1 to 2).foreach { i =>
    +      val outDir = Utils.createTempDir()
    +      val unzipDir = Utils.createTempDir()
    +      try {
    +        Utils.chmod700(outDir)
    +        Utils.chmod700(unzipDir)
    +        val outFile = new File(outDir, s"file$i.zip")
    +        val outputStream = new ZipOutputStream(new 
FileOutputStream(outFile))
    +        provider.writeEventLogs("downloadApp1", Some(s"attempt$i"), 
outputStream)
    +        HistoryTestUtils.unzipToDir(new FileInputStream(outFile), unzipDir)
    --- End diff --
    
    Hmmm... I don't follow you. I'm not saying to assume there's a single file 
in the zip file. I'm saying that it would probably be simpler to read files 
directly from the zip (using `ZipFile.getEntry` + `ZipFile.getInputStream`).


---
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