Uh oh!
There was an error while loading. Please reload this page.
[SPARK-14796][SQL] Add spark.sql.optimizer.inSetConversionThreshold config option. - #12562
[SPARK-14796][SQL] Add spark.sql.optimizer.inSetConversionThreshold config option.#12562dongjoon-hyun wants to merge 2 commits into
Conversation
rxin
commented
Apr 21, 2016
Can we add a unit test in the appropriate optimizer suite? We also need to come up with a better name. |
dongjoon-hyun
commented
Apr 21, 2016
Thank you for review, @rxin . |
SparkQA
commented
Apr 21, 2016
Test build #56492 has finished for PR 12562 at commit
|
dongjoon-hyun
commented
Apr 21, 2016
Oh, sorry. There exists already |
SparkQA
commented
Apr 21, 2016
Test build #56511 has finished for PR 12562 at commit
|
SparkQA
commented
Apr 21, 2016
Test build #56514 has finished for PR 12562 at commit
|
SparkQA
commented
Apr 21, 2016
Test build #56550 has finished for PR 12562 at commit
|
There was a problem hiding this comment.
I'd give this a more descriptive name, and explicitly say setting the threshold for turning into InSet
rxin
commented
Apr 21, 2016
maybe inSetConversionThreshold? |
dongjoon-hyun
commented
Apr 21, 2016
Thank you so much, @rxin and @marmbrus !
By the way, @marmbrus d you mean the duplication of value |
SparkQA
commented
Apr 21, 2016
Test build #56573 has finished for PR 12562 at commit
|
rxin
commented
Apr 22, 2016
Merging in master. Thanks. |
What changes were proposed in this pull request?
Currently,
OptimizeInoptimizer replacesInexpression intoInSetexpression if the size of set is greater than a constant, 10.This issue aims to make a configuration
spark.sql.optimizer.inSetConversionThresholdfor that.After this PR,
OptimizerInis configurable.How was this patch tested?
Pass the Jenkins tests (with a new testcase)