-
Notifications
You must be signed in to change notification settings - Fork 454
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
[GLUTEN-3559][VL] Fix failing UTs with spark 3.4 #4023
Conversation
Run Gluten Clickhouse CI |
1 similar comment
Run Gluten Clickhouse CI |
CC: @JkSelf |
Run Gluten Clickhouse CI |
@ayushi-agarwal Thanks for your working. It appears that some test suites are still failing. Could you please assist in investigating? |
e29b395
to
18e6d69
Compare
Run Gluten Clickhouse CI |
Run Gluten Clickhouse CI |
@JkSelf I have rebased and fixed the error. |
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.
@ayushi-agarwal LGTM. Just two small questions. Thanks.
gluten-ut/spark34/src/test/scala/org/apache/spark/sql/gluten/GlutenFallbackSuite.scala
Show resolved
Hide resolved
@@ -42,4 +48,57 @@ class GlutenEnsureRequirementsSuite extends EnsureRequirementsSuite with GlutenS | |||
assert(res.queryExecution.executedPlan.collect { case s: ShuffleExchangeLike => s }.size == 2) | |||
} | |||
} | |||
|
|||
test(GLUTEN_TEST + "SPARK-41986: Introduce shuffle on SinglePartition") { |
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.
@ayushi-agarwal What is the reason behind rewriting this suite? Is it solely due to the addition of the configuration SQLConf.SHUFFLE_PARTITIONS.key -> "5"
?
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.
Yes, the test above this is also rewritten because of it. I think now both test cases can be removed from this file as the config has been added in line 34 now.
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.
@JkSelf I have removed it.
Run Gluten Clickhouse CI |
Run Gluten Clickhouse CI |
Run Gluten Clickhouse CI |
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.
LGTM. And waiting CI pass.
@ayushi-agarwal There exists compile issues. Can you help to rebase? Thanks. |
Run Gluten Clickhouse CI |
@JkSelf I have rebased it. |
Run Gluten Clickhouse CI |
Run Gluten Clickhouse CI |
@JkSelf I have rebased it again. Could you please approve it so that it gets merged once the build is green? |
Run Gluten Clickhouse CI |
Run Gluten Clickhouse CI |
@JkSelf All 18 checks have passed now, could you please approve it? |
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.
LGTM. Thanks.
===== Performance report for TPCH SF2000 with Velox backend, for reference only ====
|
What changes were proposed in this pull request?
This PR fixes the following suites:
Appender tests were failing because in Spark 3.4 log4j-slf4j2-impl is being used instead of log4j-slf4j-impl [SPARK-40511][BUILD][CORE] Upgrade slf4j to 2.0.3 spark#37844
(Fixes: #3559)
How was this patch tested?
Ran these UTs to confirm the fix