Skip to content

Commit

Permalink
remove non-fast merge test combination
Browse files Browse the repository at this point in the history
  • Loading branch information
sunchao committed Feb 26, 2024
1 parent 6f82611 commit 2bd9915
Showing 1 changed file with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,12 @@ import org.apache.comet.CometConf

abstract class CometColumnarShuffleSuite extends CometTestBase with AdaptiveSparkPlanHelper {
protected val adaptiveExecutionEnabled: Boolean
protected val fastMergeEnabled: Boolean = true
protected val numElementsForceSpillThreshold: Int = 10

override protected def sparkConf: SparkConf = {
val conf = super.sparkConf
conf
.set(SQLConf.ADAPTIVE_EXECUTION_ENABLED.key, adaptiveExecutionEnabled.toString)
.set("spark.shuffle.unsafe.fastMergeEnabled", fastMergeEnabled.toString)
}

protected val asyncShuffleEnable: Boolean
Expand Down Expand Up @@ -948,22 +946,6 @@ class CometAsyncShuffleSuite extends CometColumnarShuffleSuite {
protected val adaptiveExecutionEnabled: Boolean = true
}

class CometAsyncNonFastMergeShuffleSuite extends CometColumnarShuffleSuite {
override protected val fastMergeEnabled: Boolean = false

protected val adaptiveExecutionEnabled: Boolean = true

protected val asyncShuffleEnable: Boolean = true
}

class CometNonFastMergeShuffleSuite extends CometColumnarShuffleSuite {
override protected val fastMergeEnabled: Boolean = false

protected val adaptiveExecutionEnabled: Boolean = true

protected val asyncShuffleEnable: Boolean = false
}

class CometShuffleSuite extends CometColumnarShuffleSuite {
override protected val asyncShuffleEnable: Boolean = false

Expand Down

0 comments on commit 2bd9915

Please sign in to comment.