You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by ferdonline <gi...@git.apache.org> on 2018/04/17 16:47:30 UTC

[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

GitHub user ferdonline opened a pull request:

    https://github.com/apache/spark/pull/21087

    [SPARK-23997][SQL] Configurable maximum number of buckets

    ## What changes were proposed in this pull request?
    This PR implements the possibility of the user to override the maximum number of buckets when saving to a table. 
    Currently the limit is a hard-coded 100k, which might be insufficient for large workloads.
    A new configuration entry is proposed: `spark.sql.bucketing.maxBuckets`, which defaults to the previous 100k.
    
    ## How was this patch tested?
    Added unit tests in the following spark.sql test suites:
    
    - CreateTableAsSelectSuite
    - BucketedWriteSuite


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/ferdonline/spark enh/configurable_bucket_limit

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/21087.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #21087
    
----
commit 61a476fe1f90b2e4c8ddbf82024f8116d737d2ef
Author: Fernando Pereira <fe...@...>
Date:   2018-04-17T12:53:59Z

    Adding configurable max buckets

commit a8846568db9eb63095c9dc55e8b71906ff95e6b0
Author: Fernando Pereira <fe...@...>
Date:   2018-04-17T15:22:18Z

    fixing tests in spark.sql

----


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #95244 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95244/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #95244 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95244/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).
     * This patch **fails due to an unknown error code, -9**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94274/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r208103944
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/sources/BucketedWriteSuite.scala ---
    @@ -48,16 +49,40 @@ abstract class BucketedWriteSuite extends QueryTest with SQLTestUtils {
         intercept[AnalysisException](df.write.bucketBy(2, "k").saveAsTable("tt"))
       }
     
    -  test("numBuckets be greater than 0 but less than 100000") {
    +  test("numBuckets be greater than 0 but less than default bucketing.maxBuckets (100000)") {
         val df = Seq(1 -> "a", 2 -> "b").toDF("i", "j")
     
    -    Seq(-1, 0, 100000).foreach(numBuckets => {
    -      val e = intercept[AnalysisException](df.write.bucketBy(numBuckets, "i").saveAsTable("tt"))
    -      assert(
    -        e.getMessage.contains("Number of buckets should be greater than 0 but less than 100000"))
    +    Seq(-1, 0, 100001).foreach(numBuckets => {
    --- End diff --
    
    nit: Only two parts are necessary to be updated for ease of tracking updates. Other changes look unnecessary.
    `100000` -> `100001`
    `less than 100000` -> `less than`



---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Thanks! Merged to master.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    @gatorsmile I see. I will open the PR today.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #93984 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93984/testReport)** for PR 21087 at commit [`aad1068`](https://github.com/apache/spark/commit/aad106870e8af2ed2a9b637da338a79ffa63bb97).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #95249 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95249/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by ferdonline <gi...@git.apache.org>.
Github user ferdonline commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    It seems the tests timed-out. Any chance to re-run them?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94276 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94276/testReport)** for PR 21087 at commit [`e517f66`](https://github.com/apache/spark/commit/e517f66481f428a6c26888293ba802fccd22091b).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94528/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r208105302
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---
    @@ -1490,6 +1495,8 @@ class SQLConf extends Serializable with Logging {
     
       def bucketingEnabled: Boolean = getConf(SQLConf.BUCKETING_ENABLED)
     
    +  def bucketingMaxBuckets: Long = getConf(SQLConf.BUCKETING_MAX_BUCKETS)
    --- End diff --
    
    Do we still need `Long` instead of `Int`?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r212521145
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/interface.scala ---
    @@ -164,9 +165,12 @@ case class BucketSpec(
         numBuckets: Int,
         bucketColumnNames: Seq[String],
         sortColumnNames: Seq[String]) {
    -  if (numBuckets <= 0 || numBuckets >= 100000) {
    +  def conf: SQLConf = SQLConf.get
    +
    +  if (numBuckets <= 0 || numBuckets > conf.bucketingMaxBuckets) {
    --- End diff --
    
    Could you submit a followup PR to address this message issue?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r212521169
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/interface.scala ---
    @@ -164,9 +165,12 @@ case class BucketSpec(
         numBuckets: Int,
         bucketColumnNames: Seq[String],
         sortColumnNames: Seq[String]) {
    -  if (numBuckets <= 0 || numBuckets >= 100000) {
    +  def conf: SQLConf = SQLConf.get
    +
    +  if (numBuckets <= 0 || numBuckets > conf.bucketingMaxBuckets) {
    --- End diff --
    
    We can merge this PR first. 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #95238 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95238/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #93913 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93913/testReport)** for PR 21087 at commit [`a884656`](https://github.com/apache/spark/commit/a8846568db9eb63095c9dc55e8b71906ff95e6b0).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #95194 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95194/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #95194 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95194/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).
     * This patch **fails due to an unknown error code, -9**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by ferdonline <gi...@git.apache.org>.
Github user ferdonline commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    It would be great if some admin could review. If there is anything to improve please tell. It is very simple though.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r209077023
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---
    @@ -580,6 +580,11 @@ object SQLConf {
         .booleanConf
         .createWithDefault(true)
     
    +  val BUCKETING_MAX_BUCKETS = buildConf("spark.sql.bucketing.maxBuckets")
    +    .doc("The maximum number of buckets allowed. Defaults to 100000")
    +    .intConf
    --- End diff --
    
    `.checkValue(_ > 0, "the value of spark.sql.sources.bucketing.maxBuckets must be larger than 0")`


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Can one of the admins verify this patch?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95194/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94507/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95238/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by ferdonline <gi...@git.apache.org>.
Github user ferdonline commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #95249 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95249/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by ferdonline <gi...@git.apache.org>.
Github user ferdonline commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94276 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94276/testReport)** for PR 21087 at commit [`e517f66`](https://github.com/apache/spark/commit/e517f66481f428a6c26888293ba802fccd22091b).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #93913 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93913/testReport)** for PR 21087 at commit [`a884656`](https://github.com/apache/spark/commit/a8846568db9eb63095c9dc55e8b71906ff95e6b0).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94507 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94507/testReport)** for PR 21087 at commit [`6049059`](https://github.com/apache/spark/commit/6049059cd1ea2969fbed271ef2002a7df209aa1d).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95249/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93913/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94492/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/21087


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94492 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94492/testReport)** for PR 21087 at commit [`628b4e3`](https://github.com/apache/spark/commit/628b4e316f0988eecd8909f667bc7c6e804cea9f).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    @kiszk Please submit a follow-up PR to address your comment?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94274 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94274/testReport)** for PR 21087 at commit [`8ddc4eb`](https://github.com/apache/spark/commit/8ddc4ebed9623d571eb778b56a542f91db43f743).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Can one of the admins verify this patch?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93984/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94492 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94492/testReport)** for PR 21087 at commit [`628b4e3`](https://github.com/apache/spark/commit/628b4e316f0988eecd8909f667bc7c6e804cea9f).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    ok to test


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r207534444
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---
    @@ -580,6 +580,11 @@ object SQLConf {
         .booleanConf
         .createWithDefault(true)
     
    +  val BUCKETING_MAX_BUCKETS = buildConf("spark.sql.bucketing.maxBuckets")
    +    .doc("The maximum number of buckets allowed. Defaults to 100000")
    +    .longConf
    --- End diff --
    
    Why is this type `long` while the type of `numBuckets` is `Int`?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r209076282
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---
    @@ -580,6 +580,11 @@ object SQLConf {
         .booleanConf
         .createWithDefault(true)
     
    +  val BUCKETING_MAX_BUCKETS = buildConf("spark.sql.bucketing.maxBuckets")
    --- End diff --
    
    Make it consistent with `spark.sql.sources.bucketing.enabled`? rename it to `spark.sql.sources.bucketing.maxBuckets`?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94274 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94274/testReport)** for PR 21087 at commit [`8ddc4eb`](https://github.com/apache/spark/commit/8ddc4ebed9623d571eb778b56a542f91db43f743).
     * This patch **fails to build**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Can one of the admins verify this patch?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94528 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94528/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by ferdonline <gi...@git.apache.org>.
Github user ferdonline commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r209081079
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---
    @@ -580,6 +580,11 @@ object SQLConf {
         .booleanConf
         .createWithDefault(true)
     
    +  val BUCKETING_MAX_BUCKETS = buildConf("spark.sql.bucketing.maxBuckets")
    --- End diff --
    
    Oh... did it change or I overlooked 'sources'? Sure I will change!


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Can one of the admins verify this patch?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by ferdonline <gi...@git.apache.org>.
Github user ferdonline commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #93984 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93984/testReport)** for PR 21087 at commit [`aad1068`](https://github.com/apache/spark/commit/aad106870e8af2ed2a9b637da338a79ffa63bb97).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94507 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94507/testReport)** for PR 21087 at commit [`6049059`](https://github.com/apache/spark/commit/6049059cd1ea2969fbed271ef2002a7df209aa1d).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Can one of the admins verify this patch?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95244/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #95238 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95238/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r211080067
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/interface.scala ---
    @@ -164,9 +165,12 @@ case class BucketSpec(
         numBuckets: Int,
         bucketColumnNames: Seq[String],
         sortColumnNames: Seq[String]) {
    -  if (numBuckets <= 0 || numBuckets >= 100000) {
    +  def conf: SQLConf = SQLConf.get
    +
    +  if (numBuckets <= 0 || numBuckets > conf.bucketingMaxBuckets) {
    --- End diff --
    
    Since the condition is changed from `>` to `>=`, there is inconsistent between the condition and the error message.
    
    If this condition is true, the message is like `... but less than or equal to bucketing.maxBuckets ...`.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94276/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #21087: [SPARK-23997][SQL] Configurable maximum number of...

Posted by ferdonline <gi...@git.apache.org>.
Github user ferdonline commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21087#discussion_r207815199
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---
    @@ -580,6 +580,11 @@ object SQLConf {
         .booleanConf
         .createWithDefault(true)
     
    +  val BUCKETING_MAX_BUCKETS = buildConf("spark.sql.bucketing.maxBuckets")
    +    .doc("The maximum number of buckets allowed. Defaults to 100000")
    +    .longConf
    --- End diff --
    
    I was following the convention used in config entries, where integrals use longConf, without making further changes. However I agree we could update the class type as well to match. Will submit the patch.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by ferdonline <gi...@git.apache.org>.
Github user ferdonline commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    Any further changes?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #21087: [SPARK-23997][SQL] Configurable maximum number of bucket...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21087
  
    **[Test build #94528 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94528/testReport)** for PR 21087 at commit [`ebd9265`](https://github.com/apache/spark/commit/ebd926530c1d8b2f515a4a233f5963eafc17e460).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org