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

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


The following commit(s) were added to refs/heads/master by this push:
     new 698db5b84 [KYUUBI #5955][TEST][GLUTEN] Disable gluten ui when running 
integration test
698db5b84 is described below

commit 698db5b848daae4e373929cf8b151b4023ddea64
Author: zwangsheng <[email protected]>
AuthorDate: Wed Jan 10 13:48:55 2024 +0800

    [KYUUBI #5955][TEST][GLUTEN] Disable gluten ui when running integration test
    
    # :mag: Description
    ## Issue References ๐Ÿ”—
    
    This pull request fixes #5955
    
    ## Describe Your Solution ๐Ÿ”ง
    
    Disable gluten UI when run integration test.
    
    In integration test case, gluten ui is meaningless.
    
    ## Types of changes :bookmark:
    
    - [ ] Bugfix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
    - [x] Improve
    
    ## Test Plan ๐Ÿงช
    
    #### Behavior Without This Pull Request :coffin:
    
    #### Behavior With This Pull Request :tada:
    
    #### Related Unit Tests
    CI IT test
    
    ---
    
    # Checklist ๐Ÿ“
    
    - [x] This patch was not authored or co-authored using [Generative 
Tooling](https://www.apache.org/legal/generative-tooling.html)
    
    **Be nice. Be informative.**
    
    Closes #5956 from zwangsheng/KYUUBI#5955.
    
    Closes #5955
    
    a21c773df [zwangsheng] [KYUUBI #5955][TEST][GLUTEN] Disable gluten ui when 
running integration test
    
    Authored-by: zwangsheng <[email protected]>
    Signed-off-by: zwangsheng <[email protected]>
---
 kyuubi-common/src/test/scala/org/apache/kyuubi/GlutenSuiteMixin.scala | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/kyuubi-common/src/test/scala/org/apache/kyuubi/GlutenSuiteMixin.scala 
b/kyuubi-common/src/test/scala/org/apache/kyuubi/GlutenSuiteMixin.scala
index 6095e1630..c9ee6ab96 100644
--- a/kyuubi-common/src/test/scala/org/apache/kyuubi/GlutenSuiteMixin.scala
+++ b/kyuubi-common/src/test/scala/org/apache/kyuubi/GlutenSuiteMixin.scala
@@ -29,5 +29,6 @@ trait GlutenSuiteMixin {
     "spark.memory.offHeap.size" -> "4g",
     "spark.memory.offHeap.enabled" -> "true",
     "spark.shuffle.manager" -> 
"org.apache.spark.shuffle.sort.ColumnarShuffleManager",
+    "spark.gluten.ui.enabled" -> "false",
     "spark.jars" -> extraJars)
 }

Reply via email to