-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-31564][TESTS] Fix flaky AllExecutionsPageSuite for checking 1970 #28344
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
srowen
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense, pending tests. This should backport all the way to 2.4?
|
thanks @srowen, SPARK-27125 seems only to be fixed in 3.0.0 via #24052 |
|
OK so needs to go into 3.0 |
|
Test build #121807 has finished for PR 28344 at commit
|
### What changes were proposed in this pull request? Fix flakiness by checking `1970/01/01` instead of `1970`. The test was added by SPARK-27125 for 3.0.0. ### Why are the changes needed? the `org.apache.spark.sql.execution.ui.AllExecutionsPageSuite.SPARK-27019:correctly display SQL page when event reordering happens` test is flaky for just checking the `html` content not containing 1970. I will add a ticket to check and fix that. In the specific failure https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/121799/testReport, it failed because the `html` ``` ... <td sorttable_customkey="1587806019707"> ... ``` contained `1970`. ### Does this PR introduce any user-facing change? no ### How was this patch tested? passing jenkins Closes #28344 from yaooqinn/SPARK-31564. Authored-by: Kent Yao <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]> (cherry picked from commit 7959808) Signed-off-by: Dongjoon Hyun <[email protected]>
|
Thank you all. Merged to master/3.0. |
|
Thanks for merging @dongjoon-hyun. BTW, 2.4 should be 3.0. |
|
Right. Thank you. I fixed now. |
What changes were proposed in this pull request?
Fix flakiness by checking
1970/01/01instead of1970.The test was added by SPARK-27125 for 3.0.0.
Why are the changes needed?
the
org.apache.spark.sql.execution.ui.AllExecutionsPageSuite.SPARK-27019:correctly display SQL page when event reordering happenstest is flaky for just checking thehtmlcontent not containing 1970. I will add a ticket to check and fix that.In the specific failure https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/121799/testReport, it failed because the
htmlcontained
1970.Does this PR introduce any user-facing change?
no
How was this patch tested?
passing jenkins