Uh oh!
There was an error while loading. Please reload this page.
[SPARK-20735][SQL][TEST] Enable cross join in TPCDSQueryBenchmark - #17977
Closed
dongjoon-hyun wants to merge 1 commit into
Closed
[SPARK-20735][SQL][TEST] Enable cross join in TPCDSQueryBenchmark#17977dongjoon-hyun wants to merge 1 commit into
dongjoon-hyun wants to merge 1 commit into
Conversation
dongjoon-hyun
commented
May 14, 2017
MemberAuthor
Hi, @sameeragarwal . |
SparkQA
commented
May 14, 2017
Test build #76907 has finished for PR 17977 at commit
|
wzhfy
commented
May 15, 2017
Contributor
LGTM. I always set this true when running tpcds. |
dongjoon-hyun
commented
May 15, 2017
MemberAuthor
Thank you for review, @wzhfy ! |
sameeragarwal
commented
May 15, 2017
Member
LGTM, thanks! |
MemberAuthor
Thank you for review, @sameeragarwal ! :D |
asfgit pushed a commit
that referenced
this pull request
May 15, 2017
## What changes were proposed in this pull request? Since [SPARK-17298](https://issues.apache.org/jira/browse/SPARK-17298), some queries (q28, q61, q77, q88, q90) in the test suites fail with a message "_Use the CROSS JOIN syntax to allow cartesian products between these relations_". This benchmark is used as a reference model for Spark TPC-DS, so this PR aims to enable the correct configuration in `TPCDSQueryBenchmark.scala`. ## How was this patch tested? Manual. (Run TPCDSQueryBenchmark) Author: Dongjoon Hyun <dongjoon@apache.org> Closes#17977 from dongjoon-hyun/SPARK-20735. (cherry picked from commit bbd163d) Signed-off-by: Xiao Li <gatorsmile@gmail.com>
asfgit pushed a commit
that referenced
this pull request
May 15, 2017
## What changes were proposed in this pull request? Since [SPARK-17298](https://issues.apache.org/jira/browse/SPARK-17298), some queries (q28, q61, q77, q88, q90) in the test suites fail with a message "_Use the CROSS JOIN syntax to allow cartesian products between these relations_". This benchmark is used as a reference model for Spark TPC-DS, so this PR aims to enable the correct configuration in `TPCDSQueryBenchmark.scala`. ## How was this patch tested? Manual. (Run TPCDSQueryBenchmark) Author: Dongjoon Hyun <dongjoon@apache.org> Closes#17977 from dongjoon-hyun/SPARK-20735. (cherry picked from commit bbd163d) Signed-off-by: Xiao Li <gatorsmile@gmail.com>
gatorsmile
commented
May 15, 2017
Member
Thanks! Merging to master/2.2/2.1 |
dongjoon-hyun
commented
May 15, 2017
MemberAuthor
Thank you for review and merging, @gatorsmile . |
robert3005 pushed a commit
to palantir/spark
that referenced
this pull request
May 19, 2017
## What changes were proposed in this pull request? Since [SPARK-17298](https://issues.apache.org/jira/browse/SPARK-17298), some queries (q28, q61, q77, q88, q90) in the test suites fail with a message "_Use the CROSS JOIN syntax to allow cartesian products between these relations_". This benchmark is used as a reference model for Spark TPC-DS, so this PR aims to enable the correct configuration in `TPCDSQueryBenchmark.scala`. ## How was this patch tested? Manual. (Run TPCDSQueryBenchmark) Author: Dongjoon Hyun <dongjoon@apache.org> Closesapache#17977 from dongjoon-hyun/SPARK-20735.
lycplus pushed a commit
to lycplus/spark
that referenced
this pull request
May 24, 2017
## What changes were proposed in this pull request? Since [SPARK-17298](https://issues.apache.org/jira/browse/SPARK-17298), some queries (q28, q61, q77, q88, q90) in the test suites fail with a message "_Use the CROSS JOIN syntax to allow cartesian products between these relations_". This benchmark is used as a reference model for Spark TPC-DS, so this PR aims to enable the correct configuration in `TPCDSQueryBenchmark.scala`. ## How was this patch tested? Manual. (Run TPCDSQueryBenchmark) Author: Dongjoon Hyun <dongjoon@apache.org> Closesapache#17977 from dongjoon-hyun/SPARK-20735.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
Since SPARK-17298, some queries (q28, q61, q77, q88, q90) in the test suites fail with a message "Use the CROSS JOIN syntax to allow cartesian products between these relations".
This benchmark is used as a reference model for Spark TPC-DS, so this PR aims to enable the correct configuration in
TPCDSQueryBenchmark.scala.How was this patch tested?
Manual. (Run TPCDSQueryBenchmark)