This is an automated email from the ASF dual-hosted git repository.

csy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git


The following commit(s) were added to refs/heads/master by this push:
     new a7793122 [AURON #1742] Disable Spark UI in test (#1742)
a7793122 is described below

commit a779312209806e1a88dd3693aa5f2fff0b004346
Author: bkhan <[email protected]>
AuthorDate: Mon Dec 15 20:07:30 2025 +0800

    [AURON #1742] Disable Spark UI in test (#1742)
    
    # Which issue does this PR close?
    
    Closes #1734
    
    # Rationale for this change
    
    There is no UI test during Auron unit testing.
    Closing UI can speed up unit testing.
    
    # What changes are included in this PR?
    
    # Are there any user-facing changes?
    
    # How was this patch tested?
    
    Master
    
    https://github.com/apache/auron/actions/runs/20164594828/job/57885994036
    ```
    25/12/12 11:12:23 INFO SparkEnv: Registering OutputCommitCoordinator
    25/12/12 11:12:23 INFO Utils: Successfully started service 'SparkUI' on 
port 4040.
    25/12/12 11:12:24 INFO SparkUI: Bound SparkUI to 0.0.0.0, and started at 
http://runnervm6qbrg.oxntq2pneleudbr4ohwvsaqdeg.dx.internal.cloudapp.net:4040/
    25/12/12 11:12:24 INFO SparkContext: Added JAR 
file:/home/runner/work/auron/auron/dev/../tpcds-validator_2.12-0.1.0-SNAPSHOT-with-dependencies.jar
 at 
spark://runnervm6qbrg.oxntq2pneleudbr4ohwvsaqdeg.dx.internal.cloudapp.net:43433/jars/tpcds-validator_2.12-0.1.0-SNAPSHOT-with-dependencies.jar
 with timestamp 1765537943416
    ```
    
    PR
    
    
    
https://github.com/apache/auron/actions/runs/20158025169/job/57865234190?pr=1742
    
    ```
    25/12/12 06:23:02 INFO SparkEnv: Registering OutputCommitCoordinator
    25/12/12 06:23:02 INFO SparkContext: Added JAR 
file:/home/runner/work/auron/auron/dev/../tpcds-validator_2.12-0.1.0-SNAPSHOT-with-dependencies.jar
 at 
spark://runnervm6qbrg.pfe21i0rikauph5zkfwnlcew1b.ex.internal.cloudapp.net:44065/jars/tpcds-validator_2.12-0.1.0-SNAPSHOT-with-dependencies.jar
 with timestamp 1765520582109
    ```
---
 dev/run-tpcds-test                                                       | 1 +
 .../src/test/scala/org.apache.auron/BaseAuronSQLSuite.scala              | 1 +
 .../src/test/scala/org/apache/auron/iceberg/BaseAuronIcebergSuite.scala  | 1 +
 3 files changed, 3 insertions(+)

diff --git a/dev/run-tpcds-test b/dev/run-tpcds-test
index 9c2bf1d5..7686f40d 100755
--- a/dev/run-tpcds-test
+++ b/dev/run-tpcds-test
@@ -53,6 +53,7 @@ echo "Using \`spark-submit\` from path: $SPARK_HOME" 1>&2
 exec "${SPARK_HOME}"/bin/spark-submit \
   --driver-memory 5g \
   --class org.apache.spark.sql.execution.benchmark.TPCDSQueryValidator  \
+  --conf spark.ui.enabled=false \
   --conf 
spark.sql.extensions=org.apache.spark.sql.auron.AuronSparkSessionExtension \
   --conf 
spark.shuffle.manager=org.apache.spark.sql.execution.auron.shuffle.AuronShuffleManager
 \
   --conf spark.sql.shuffle.partitions=1000 \
diff --git 
a/spark-extension-shims-spark/src/test/scala/org.apache.auron/BaseAuronSQLSuite.scala
 
b/spark-extension-shims-spark/src/test/scala/org.apache.auron/BaseAuronSQLSuite.scala
index 27105064..75ed44fb 100644
--- 
a/spark-extension-shims-spark/src/test/scala/org.apache.auron/BaseAuronSQLSuite.scala
+++ 
b/spark-extension-shims-spark/src/test/scala/org.apache.auron/BaseAuronSQLSuite.scala
@@ -29,6 +29,7 @@ trait BaseAuronSQLSuite extends SharedSparkSession {
         "org.apache.spark.sql.execution.auron.shuffle.AuronShuffleManager")
       .set("spark.memory.offHeap.enabled", "false")
       .set("spark.auron.enable", "true")
+      .set("spark.ui.enabled", "false")
   }
 
 }
diff --git 
a/thirdparty/auron-iceberg/src/test/scala/org/apache/auron/iceberg/BaseAuronIcebergSuite.scala
 
b/thirdparty/auron-iceberg/src/test/scala/org/apache/auron/iceberg/BaseAuronIcebergSuite.scala
index 64e772ad..59ffbd5a 100644
--- 
a/thirdparty/auron-iceberg/src/test/scala/org/apache/auron/iceberg/BaseAuronIcebergSuite.scala
+++ 
b/thirdparty/auron-iceberg/src/test/scala/org/apache/auron/iceberg/BaseAuronIcebergSuite.scala
@@ -30,5 +30,6 @@ trait BaseAuronIcebergSuite extends SharedSparkSession {
       .set("spark.sql.catalog.local", "org.apache.iceberg.spark.SparkCatalog")
       .set("spark.sql.catalog.local.type", "hadoop")
       .set("spark.sql.catalog.local.warehouse", "iceberg_warehouse")
+      .set("spark.ui.enabled", "false")
   }
 }

Reply via email to