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

dongjoon pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.5 by this push:
     new 36da89deccc9 [SPARK-48138][CONNECT][TESTS] Disable a flaky 
`SparkSessionE2ESuite.interrupt tag` test
36da89deccc9 is described below

commit 36da89deccc916a6f32d9bf6d6f2fd8e288da917
Author: Dongjoon Hyun <dh...@apple.com>
AuthorDate: Mon May 6 13:45:54 2024 +0800

    [SPARK-48138][CONNECT][TESTS] Disable a flaky 
`SparkSessionE2ESuite.interrupt tag` test
    
    ### What changes were proposed in this pull request?
    
    This PR aims to disable  a flaky test, `SparkSessionE2ESuite.interrupt 
tag`, temporarily.
    
    To re-enable this, SPARK-48139 is created as a blocker issue for 4.0.0.
    
    ### Why are the changes needed?
    
    This test case was added at `Apache Spark 3.5.0` but has been unstable 
unfortunately until now.
    - #42009
    
    We tried to stabilize this test case before `Apache Spark 4.0.0-preview`.
    - #45173
    - #46374
    
    However, it's still flaky.
    
    - https://github.com/apache/spark/actions/runs/8962353911/job/24611130573 
(Master, 2024-05-05)
    - https://github.com/apache/spark/actions/runs/8948176536/job/24581022674 
(Master, 2024-05-04)
    
    This PR aims to stablize CI first and to focus this flaky issue as a 
blocker level before going on `Spark Connect GA` in SPARK-48139 before Apache 
Spark 4.0.0.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #46396 from dongjoon-hyun/SPARK-48138.
    
    Authored-by: Dongjoon Hyun <dh...@apple.com>
    Signed-off-by: yangjie01 <yangji...@baidu.com>
    (cherry picked from commit 8294c5962febe53eebdff79f65f5f293d93a1997)
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 .../jvm/src/test/scala/org/apache/spark/sql/SparkSessionE2ESuite.scala | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/SparkSessionE2ESuite.scala
 
b/connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/SparkSessionE2ESuite.scala
index c76dc724828e..e9c2f0c45750 100644
--- 
a/connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/SparkSessionE2ESuite.scala
+++ 
b/connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/SparkSessionE2ESuite.scala
@@ -108,7 +108,8 @@ class SparkSessionE2ESuite extends RemoteSparkSession {
     assert(interrupted.length == 2, s"Interrupted operations: $interrupted.")
   }
 
-  test("interrupt tag") {
+  // TODO(SPARK-48139): Re-enable `SparkSessionE2ESuite.interrupt tag`
+  ignore("interrupt tag") {
     val session = spark
     import session.implicits._
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to