Uh oh!
There was an error while loading. Please reload this page.
[SPARK-36223][SQL][TEST] Cover 3 kinds of join in the TPCDSQueryTestSuite - #33510
[SPARK-36223][SQL][TEST] Cover 3 kinds of join in the TPCDSQueryTestSuite#33510roryqi wants to merge 12 commits into
Conversation
a603ffc to
46bbf1fCompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
42bb832 to
763c492CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
cloud-fan
commented
Nov 10, 2021
ok to test |
SparkQA
commented
Nov 10, 2021
Kubernetes integration test starting |
SparkQA
commented
Nov 10, 2021
Kubernetes integration test status failure |
SparkQA
commented
Nov 10, 2021
Test build #145066 has finished for PR 33510 at commit
|
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
SparkQA
commented
Nov 11, 2021
Kubernetes integration test starting |
SparkQA
commented
Nov 11, 2021
Kubernetes integration test starting |
SparkQA
commented
Nov 11, 2021
Kubernetes integration test status failure |
SparkQA
commented
Nov 11, 2021
Kubernetes integration test status failure |
SparkQA
commented
Nov 12, 2021
Test build #145167 has finished for PR 33510 at commit
|
SparkQA
commented
Nov 12, 2021
Test build #145170 has finished for PR 33510 at commit
|
SparkQA
commented
Nov 15, 2021
Kubernetes integration test starting |
SparkQA
commented
Nov 15, 2021
Kubernetes integration test status failure |
SparkQA
commented
Nov 15, 2021
Kubernetes integration test starting |
cloud-fan
commented
Nov 15, 2021
thanks, merging to master! |
SparkQA
commented
Nov 15, 2021
Kubernetes integration test status failure |
roryqi
commented
Nov 15, 2021
Thank you @cloud-fan@linhongliu-db and @HyukjinKwon for review. |
SparkQA
commented
Nov 15, 2021
Test build #145222 has finished for PR 33510 at commit
|
SparkQA
commented
Nov 15, 2021
Test build #145223 has finished for PR 33510 at commit
|
| assertResult(expectedSchema, s"Schema did not match\n$queryString") { schema } | ||
| assertResult(expectedOutput, s"Result did not match\n$queryString") { outputString } | ||
| } | ||
| val joinConfSet: Set[Map[String, String]] = |
There was a problem hiding this comment.
Hm, why is this set? Then joinConfSet.head won't be deterministic below, and there would be no point of needSort.
### What changes were proposed in this pull request? This is kind of a followup for #33510 and #34641. This PR proposes to split TPC-DS build in GitHub Actions. ### Why are the changes needed? Running these queries easily causes out-of-memory in GitHub Actions machines, and make the build flaky. We should deflake it. ### Does this PR introduce _any_ user-facing change? No, dev-only. ### How was this patch tested? GitHub Actions in this PR should test it out. Closes#34698 from HyukjinKwon/split-tpcds. Authored-by: Hyukjin Kwon <gurwls223@apache.org> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
What changes were proposed in this pull request?
In current github actions we run TPCDSQueryTestSuite for tpcds benchmark. But it's only tested under default configurations. Since we have added the
spark.sql.join.forceApplyShuffledHashJoinconfig. Now we can test all 3 join strategies in TPCDS to improve the coverage.Why are the changes needed?
Improve the coverage of join strategies in the TPCDS.
Does this PR introduce any user-facing change?
No, only for testing.
How was this patch tested?
No need.