Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SPARK-48138][CONNECT][TESTS] Disable a flaky SparkSessionE2ESuite.interrupt tag test #46396

Closed
wants to merge 1 commit into from

Conversation

dongjoon-hyun
Copy link
Member

@dongjoon-hyun dongjoon-hyun commented May 6, 2024

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.

We tried to stabilize this test case before Apache Spark 4.0.0-preview.

However, it's still flaky.

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.

@dongjoon-hyun
Copy link
Member Author

dongjoon-hyun commented May 6, 2024

I believe we need more attention on this flaky test and hope we can fix the root cause in SPARK-48139 .

WDYT about disable this temporarily?

@dongjoon-hyun
Copy link
Member Author

dongjoon-hyun commented May 6, 2024

Please note that this is also related to the following INFRA module blocker issue.

  • SPARK-48094 Reduce GitHub Action usage according to ASF project allowance

@dongjoon-hyun
Copy link
Member Author

Could you review this PR, @viirya ?

@LuciferYang
Copy link
Contributor

Merged into master for Spark 4.0. Thanks @dongjoon-hyun ~

@dongjoon-hyun
Copy link
Member Author

Thank you so much, @LuciferYang !

@dongjoon-hyun dongjoon-hyun deleted the SPARK-48138 branch May 6, 2024 05:47
Copy link
Member

@viirya viirya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good.

@dongjoon-hyun
Copy link
Member Author

Thank you, @viirya !

dongjoon-hyun added a commit that referenced this pull request May 7, 2024
### What changes were proposed in this pull request?

This PR aims to merge connect back to the original test pipeline to reduce the maximum concurrency of GitHub Action by one.
- https://infra.apache.org/github-actions-policy.html
  > All workflows SHOULD have a job concurrency level less than or equal to 15.

### Why are the changes needed?

This is a partial recover from the following.
- #45107

We stabilized the root cause of #45107 via the following PRs. In addition we will disable a flaky test case if exists.

- #46395
- #46396
- #46425

### 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 #46441 from dongjoon-hyun/SPARK-48174.

Authored-by: Dongjoon Hyun <dhyun@apple.com>
Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
dongjoon-hyun added a commit that referenced this pull request May 8, 2024
…nterrupt 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 <dhyun@apple.com>
Signed-off-by: yangjie01 <yangjie01@baidu.com>
(cherry picked from commit 8294c59)
Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
JacobZheng0927 pushed a commit to JacobZheng0927/spark that referenced this pull request May 11, 2024
…nterrupt 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.
- apache#42009

We tried to stabilize this test case before `Apache Spark 4.0.0-preview`.
- apache#45173
- apache#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 apache#46396 from dongjoon-hyun/SPARK-48138.

Authored-by: Dongjoon Hyun <dhyun@apple.com>
Signed-off-by: yangjie01 <yangjie01@baidu.com>
JacobZheng0927 pushed a commit to JacobZheng0927/spark that referenced this pull request May 11, 2024
### What changes were proposed in this pull request?

This PR aims to merge connect back to the original test pipeline to reduce the maximum concurrency of GitHub Action by one.
- https://infra.apache.org/github-actions-policy.html
  > All workflows SHOULD have a job concurrency level less than or equal to 15.

### Why are the changes needed?

This is a partial recover from the following.
- apache#45107

We stabilized the root cause of apache#45107 via the following PRs. In addition we will disable a flaky test case if exists.

- apache#46395
- apache#46396
- apache#46425

### 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 apache#46441 from dongjoon-hyun/SPARK-48174.

Authored-by: Dongjoon Hyun <dhyun@apple.com>
Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
3 participants