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

    https://github.com/apache/spark/pull/6420#discussion_r31101756
  
    --- Diff: 
core/src/test/scala/org/apache/spark/shuffle/unsafe/UnsafeShuffleSuite.scala ---
    @@ -41,6 +41,20 @@ class UnsafeShuffleSuite extends ShuffleSuite with 
BeforeAndAfterAll {
         conf.set("spark.shuffle.memoryFraction", "0.5")
       }
     
    +  override def multipleAttemptConfs: Seq[(String,SparkConf)] = {
    +    val kryoAndNoSpillMove = conf.clone()
    +      .set("spark.serializer", 
"org.apache.spark.serializer.KryoSerializer")
    +      .set("spark.shuffle.unsafe.testing.allowSpillMove", "false")
    +    val noCompression = kryoAndNoSpillMove.clone()
    +      .set("spark.shuffle.compress", "false")
    +      .set("spark.file.transferTo","false")
    +    Seq(
    +      "slow merge path" -> kryoAndNoSpillMove,
    +      "filestream based fast merge" -> noCompression
    +    )
    --- End diff --
    
    Did it fail when running the test locally?  Which Linux kernel version are 
you running?


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