From 698db5b848daae4e373929cf8b151b4023ddea64 Mon Sep 17 00:00:00 2001 From: zwangsheng Date: Wed, 10 Jan 2024 13:48:55 +0800 Subject: [PATCH] [KYUUBI #5955][TEST][GLUTEN] Disable gluten ui when running integration test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # :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 Signed-off-by: zwangsheng --- .../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) }