-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-31267][SQL] Flaky test: WholeStageCodegenSparkSubmitSuite.Generated code on driver should not embed platform-specific constant #28438
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
Conversation
|
ok to test |
|
Test build #122222 has finished for PR 28438 at commit
|
|
Thanks for the work, @tianshizz . btw, have you checked a root cause of the flaky failure is just a timeout, e.g., from jenkins logs? If that's true, the fix looks fine. |
|
@maropu I'm not able to see the jenkins log, but I was able to reproduce it on my own laptop, which is quite slow... It needs 1.5 - 2 minutes to finish that test. After increasing the timeout to 3 minutes, it can pass. |
|
retest this please |
|
Could you put the info |
|
Test build #122238 has finished for PR 28438 at commit
|
…rated code on driver should not embed platform-specific constant ### What changes were proposed in this pull request? Allow customized timeouts for `runSparkSubmit`, which will make flaky tests more likely to pass by using a larger timeout value. I was able to reproduce the test failure on my laptop, which took 1.5 - 2 minutes to finish the test. After increasing the timeout, the test now can pass locally. ### Why are the changes needed? This allows slow tests to use a larger timeout, so they are more likely to succeed. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? The test was able to pass on my local env after the change. Closes #28438 from tianshizz/SPARK-31267. Authored-by: Tianshi Zhu <[email protected]> Signed-off-by: HyukjinKwon <[email protected]> (cherry picked from commit a222644) Signed-off-by: HyukjinKwon <[email protected]>
|
Merged to master and branch-3.0. |
…rated code on driver should not embed platform-specific constant ### What changes were proposed in this pull request? Allow customized timeouts for `runSparkSubmit`, which will make flaky tests more likely to pass by using a larger timeout value. I was able to reproduce the test failure on my laptop, which took 1.5 - 2 minutes to finish the test. After increasing the timeout, the test now can pass locally. ### Why are the changes needed? This allows slow tests to use a larger timeout, so they are more likely to succeed. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? The test was able to pass on my local env after the change. Closes apache#28438 from tianshizz/SPARK-31267. Authored-by: Tianshi Zhu <[email protected]> Signed-off-by: HyukjinKwon <[email protected]>
What changes were proposed in this pull request?
Allow customized timeouts for
runSparkSubmit, which will make flaky tests more likely to pass by using a larger timeout value.I was able to reproduce the test failure on my laptop, which took 1.5 - 2 minutes to finish the test. After increasing the timeout, the test now can pass locally.
Why are the changes needed?
This allows slow tests to use a larger timeout, so they are more likely to succeed.
Does this PR introduce any user-facing change?
No
How was this patch tested?
The test was able to pass on my local env after the change.