You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by dongjoon-hyun <gi...@git.apache.org> on 2017/07/03 09:31:56 UTC

[GitHub] spark pull request #18512: [SPARK-20946][SQL] simplify the config setting lo...

GitHub user dongjoon-hyun opened a pull request:

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

    [SPARK-20946][SQL] simplify the config setting logic in SparkSession.getOrCreate

    ## What changes were proposed in this pull request?
    
    (Please fill in changes proposed in this fix)
    
    ## How was this patch tested?
    
    (Please explain how this patch was tested. E.g. unit tests, integration tests, manual tests)
    (If this patch involves UI changes, please attach a screenshot; otherwise, remove this)
    
    Please review http://spark.apache.org/contributing.html before opening a pull request.


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

    $ git pull https://github.com/dongjoon-hyun/spark SPARK-20946

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

    https://github.com/apache/spark/pull/18512.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 #18512
    
----
commit fe7bdad1530dadefb0283fac597137a3db2538c1
Author: Wenchen Fan <we...@databricks.com>
Date:   2017-06-01T05:17:05Z

    simplify the config setting logic in SparkSession.getOrCreate

commit b84806b78c96564fb7f093b679979ef4cd733880
Author: Wenchen Fan <we...@databricks.com>
Date:   2017-06-02T03:41:42Z

    address comments

commit 705ccc007817bdcb9b87ef0141b16ae03e760ef6
Author: Dongjoon Hyun <do...@apache.org>
Date:   2017-07-03T09:30:31Z

    fix

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #18512: [SPARK-20946][SQL] Simplify the config setting lo...

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

    https://github.com/apache/spark/pull/18512
  
    @gatorsmile and @cloud-fan .
    Please let me know if I need to do something more in this PR. :)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

    https://github.com/apache/spark/pull/18512
  
    Retest this please.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #18512: [SPARK-20946][SQL] Simplify the config setting lo...

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

    https://github.com/apache/spark/pull/18512#discussion_r125335962
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala ---
    @@ -904,22 +906,14 @@ object SparkSession {
     
             // No active nor global default session. Create a new one.
             val sparkContext = userSuppliedContext.getOrElse {
    -          // set app name if not given
    -          val randomAppName = java.util.UUID.randomUUID().toString
               val sparkConf = new SparkConf()
               options.foreach { case (k, v) => sparkConf.set(k, v) }
    -          if (!sparkConf.contains("spark.app.name")) {
    -            sparkConf.setAppName(randomAppName)
    -          }
    -          val sc = SparkContext.getOrCreate(sparkConf)
    -          // maybe this is an existing SparkContext, update its SparkConf which maybe used
    -          // by SparkSession
    -          options.foreach { case (k, v) => sc.conf.set(k, v) }
    -          if (!sc.conf.contains("spark.app.name")) {
    -            sc.conf.setAppName(randomAppName)
    -          }
    -          sc
    +          // set a random app name if not given.
    +          sparkConf.setAppName(options.getOrElse("spark.app.name",
    +            java.util.UUID.randomUUID().toString))
    +          SparkContext.getOrCreate(sparkConf)
             }
    +        options.foreach { case (k, v) => sparkContext.conf.set(k, v) }
    --- End diff --
    
    The existing behavior is weird. See https://github.com/apache/spark/pull/18517/


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

    https://github.com/apache/spark/pull/18512
  
    **[Test build #79097 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/79097/testReport)** for PR 18512 at commit [`705ccc0`](https://github.com/apache/spark/commit/705ccc007817bdcb9b87ef0141b16ae03e760ef6).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] simplify the config setting logic in ...

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

    https://github.com/apache/spark/pull/18512
  
    **[Test build #79089 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/79089/testReport)** for PR 18512 at commit [`705ccc0`](https://github.com/apache/spark/commit/705ccc007817bdcb9b87ef0141b16ae03e760ef6).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #18512: [SPARK-20946][SQL] Simplify the config setting lo...

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

    https://github.com/apache/spark/pull/18512#discussion_r125325591
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala ---
    @@ -904,22 +906,14 @@ object SparkSession {
     
             // No active nor global default session. Create a new one.
             val sparkContext = userSuppliedContext.getOrElse {
    -          // set app name if not given
    -          val randomAppName = java.util.UUID.randomUUID().toString
               val sparkConf = new SparkConf()
               options.foreach { case (k, v) => sparkConf.set(k, v) }
    -          if (!sparkConf.contains("spark.app.name")) {
    -            sparkConf.setAppName(randomAppName)
    -          }
    -          val sc = SparkContext.getOrCreate(sparkConf)
    -          // maybe this is an existing SparkContext, update its SparkConf which maybe used
    -          // by SparkSession
    -          options.foreach { case (k, v) => sc.conf.set(k, v) }
    -          if (!sc.conf.contains("spark.app.name")) {
    -            sc.conf.setAppName(randomAppName)
    -          }
    -          sc
    +          // set a random app name if not given.
    +          sparkConf.setAppName(options.getOrElse("spark.app.name",
    +            java.util.UUID.randomUUID().toString))
    +          SparkContext.getOrCreate(sparkConf)
             }
    +        options.foreach { case (k, v) => sparkContext.conf.set(k, v) }
    --- End diff --
    
    ```
        sparkContext.stop()
        val conf = new SparkConf().setAppName("test").setMaster("local").set("key1", "value1")
        val sparkContext2 = new SparkContext(conf)
        val session =
          SparkSession.builder().config("key2", "value2").sparkContext(sparkContext2).getOrCreate()
        assert(session.conf.get("key1") == "value1")
        assert(session.conf.get("key2") == "value2")
        assert(session.sparkContext.conf.get("key1") == "value1")
        assert(session.sparkContext.conf.get("key2").isEmpty) // <-- This line will fail after the changes of this PR.
        assert(session.sparkContext.conf.get("spark.app.name") == "test")
        session.stop()
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

    https://github.com/apache/spark/pull/18512
  
    The failure seems to be irrelevant.
    ```
    org.apache.spark.sql.kafka010.KafkaSourceSuite.subscribing topic by name from latest offsets (failOnDataLoss: true)
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

    https://github.com/apache/spark/pull/18512
  
    LGTM, thanks for picking it up!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #18512: [SPARK-20946][SQL] Simplify the config setting lo...

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

    https://github.com/apache/spark/pull/18512#discussion_r125252781
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala ---
    @@ -904,22 +906,14 @@ object SparkSession {
     
             // No active nor global default session. Create a new one.
             val sparkContext = userSuppliedContext.getOrElse {
    -          // set app name if not given
    -          val randomAppName = java.util.UUID.randomUUID().toString
               val sparkConf = new SparkConf()
               options.foreach { case (k, v) => sparkConf.set(k, v) }
    --- End diff --
    
    This line is changed. `options` are copied into new SparkConf.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #18512: [SPARK-20946][SQL] Simplify the config setting lo...

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

    https://github.com/apache/spark/pull/18512#discussion_r125310663
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala ---
    @@ -904,22 +906,14 @@ object SparkSession {
     
             // No active nor global default session. Create a new one.
             val sparkContext = userSuppliedContext.getOrElse {
    -          // set app name if not given
    -          val randomAppName = java.util.UUID.randomUUID().toString
               val sparkConf = new SparkConf()
               options.foreach { case (k, v) => sparkConf.set(k, v) }
    -          if (!sparkConf.contains("spark.app.name")) {
    -            sparkConf.setAppName(randomAppName)
    -          }
    -          val sc = SparkContext.getOrCreate(sparkConf)
    -          // maybe this is an existing SparkContext, update its SparkConf which maybe used
    -          // by SparkSession
    -          options.foreach { case (k, v) => sc.conf.set(k, v) }
    -          if (!sc.conf.contains("spark.app.name")) {
    -            sc.conf.setAppName(randomAppName)
    -          }
    -          sc
    +          // set a random app name if not given.
    +          sparkConf.setAppName(options.getOrElse("spark.app.name",
    +            java.util.UUID.randomUUID().toString))
    +          SparkContext.getOrCreate(sparkConf)
             }
    +        options.foreach { case (k, v) => sparkContext.conf.set(k, v) }
    --- End diff --
    
    The only concern is `sparkContext` could be shared by multiple sessions. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #18512: [SPARK-20946][SQL] Simplify the config setting lo...

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

    https://github.com/apache/spark/pull/18512#discussion_r125313557
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala ---
    @@ -904,22 +906,14 @@ object SparkSession {
     
             // No active nor global default session. Create a new one.
             val sparkContext = userSuppliedContext.getOrElse {
    -          // set app name if not given
    -          val randomAppName = java.util.UUID.randomUUID().toString
               val sparkConf = new SparkConf()
               options.foreach { case (k, v) => sparkConf.set(k, v) }
    -          if (!sparkConf.contains("spark.app.name")) {
    -            sparkConf.setAppName(randomAppName)
    -          }
    -          val sc = SparkContext.getOrCreate(sparkConf)
    -          // maybe this is an existing SparkContext, update its SparkConf which maybe used
    -          // by SparkSession
    -          options.foreach { case (k, v) => sc.conf.set(k, v) }
    -          if (!sc.conf.contains("spark.app.name")) {
    -            sc.conf.setAppName(randomAppName)
    -          }
    -          sc
    +          // set a random app name if not given.
    +          sparkConf.setAppName(options.getOrElse("spark.app.name",
    +            java.util.UUID.randomUUID().toString))
    +          SparkContext.getOrCreate(sparkConf)
             }
    +        options.foreach { case (k, v) => sparkContext.conf.set(k, v) }
    --- End diff --
    
    We already did this in https://github.com/apache/spark/pull/18512/files#diff-d91c284798f1c98bf03a31855e26d71cL917 .
    
    The only difference is about `userSuppliedContext`, which is given by a [private method](https://github.com/apache/spark/pull/18512/files#diff-d91c284798f1c98bf03a31855e26d71cR767), so we should be able to check if it's safe or not.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #18512: [SPARK-20946][SQL] Simplify the config setting lo...

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

    https://github.com/apache/spark/pull/18512#discussion_r125312200
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala ---
    @@ -904,22 +906,14 @@ object SparkSession {
     
             // No active nor global default session. Create a new one.
             val sparkContext = userSuppliedContext.getOrElse {
    -          // set app name if not given
    -          val randomAppName = java.util.UUID.randomUUID().toString
               val sparkConf = new SparkConf()
               options.foreach { case (k, v) => sparkConf.set(k, v) }
    -          if (!sparkConf.contains("spark.app.name")) {
    -            sparkConf.setAppName(randomAppName)
    -          }
    -          val sc = SparkContext.getOrCreate(sparkConf)
    -          // maybe this is an existing SparkContext, update its SparkConf which maybe used
    -          // by SparkSession
    -          options.foreach { case (k, v) => sc.conf.set(k, v) }
    -          if (!sc.conf.contains("spark.app.name")) {
    -            sc.conf.setAppName(randomAppName)
    -          }
    -          sc
    +          // set a random app name if not given.
    +          sparkConf.setAppName(options.getOrElse("spark.app.name",
    +            java.util.UUID.randomUUID().toString))
    +          SparkContext.getOrCreate(sparkConf)
             }
    +        options.foreach { case (k, v) => sparkContext.conf.set(k, v) }
    --- End diff --
    
    Then, how do you think about #18501  using `initialSessionOptions`? That is used only once.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #18512: [SPARK-20946][SQL] Simplify the config setting logic in ...

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

    https://github.com/apache/spark/pull/18512
  
    Hi, @cloud-fan and @gatorsmile .
    Could you review this PR?



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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