Skip to content

Commit

Permalink
test: Disable spark ui in unit test (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
Junbo wang authored Mar 27, 2024
1 parent 0826772 commit a28c8e2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ abstract class CometTestBase
protected def sparkConf: SparkConf = {
val conf = new SparkConf()
conf.set("spark.hadoop.fs.file.impl", classOf[DebugFilesystem].getName)
conf.set("spark.ui.enabled", "false")
conf.set(SQLConf.SHUFFLE_PARTITIONS, 10) // reduce parallelism in tests
conf.set(SQLConf.ANSI_ENABLED.key, "false")
conf.set(SHUFFLE_MANAGER, shuffleManager)
Expand Down

0 comments on commit a28c8e2

Please sign in to comment.