You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by madanadit <gi...@git.apache.org> on 2018/04/05 23:32:57 UTC

[GitHub] spark pull request #20989: [SPARK-23529][K8s] Support mounting hostPath volu...

GitHub user madanadit opened a pull request:

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

    [SPARK-23529][K8s] Support mounting hostPath volumes for executors

    ## What changes were proposed in this pull request?
    
    This PR introduces a new config `spark.kubernetes.executor.volumes` taking a values of the form  `hostPath:containerPath[:ro|rw][,...]`; where  `hostPath` is the path for the executor pod volume, `containerPath` is the mount path and `ro` is read-only mode.
    
    The use case is to enable short-circuit writes to distributed storage on k8s. The Alluxio File System uses domain sockets to enable short-circuit writes from the client to worker memory when co-located on the same host machine. A directory, lets say /tmp/domain on the host, is mounted on the Alluxio worker container as well as the Alluxio client ( = Spark executor) container. The worker creates a domain socket /tmp/domain/d and if the client container mounts the same directory, it can write directly to the Alluxio worker w/o passing through network stack. The end result is faster data access when data is local.
    
    ## How was this patch tested?
    
    Manual testing on a k8s v1.8 cluster.
    


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

    $ git pull https://github.com/madanadit/spark k8s-volumes

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

    https://github.com/apache/spark/pull/20989.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 #20989
    
----
commit addb8fec7c7fcd1535cfdc29594d74b04981ae19
Author: madanadit <ad...@...>
Date:   2018-04-05T01:02:25Z

    Spark executor volumes configuration

commit f33eaf53b914c3414a4d4a2bca9c5bc3d84aa268
Author: madanadit <ad...@...>
Date:   2018-04-05T20:05:48Z

    Fix style

commit 4016d6d33c296823e338f28deb7815c4be6607a1
Author: madanadit <ad...@...>
Date:   2018-04-05T20:12:28Z

    Undo unintended style change

commit c5b6c0bdc0ac46e87d4ca41ab27b81be62beee6f
Author: madanadit <ad...@...>
Date:   2018-04-05T20:57:45Z

    Read mode for mounted volumes

commit 17cfdf3afede72efd970c1d3ac92105257c1f63c
Author: madanadit <ad...@...>
Date:   2018-04-05T22:05:07Z

    Refactor

----


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    @foxish The failure seems to be because of `SparkRemoteFileTest` missing from branch-2.3 (only present in master branch). Which branch do you recommend targeting this PR towards?


---

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


[GitHub] spark pull request #20989: [SPARK-23529][K8s] Support mounting hostPath volu...

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

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


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution/2018/
    Test PASSed.


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

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


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Kubernetes integration test starting
    URL: https://amplab.cs.berkeley.edu/jenkins/job/testing-k8s-prb-spark-integration/1981/



---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    @foxish Can you take a look?. Thanks!


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

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


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution/2054/
    Test PASSed.


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution/2055/
    Test PASSed.


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    **[Test build #89004 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/89004/testReport)** for PR 20989 at commit [`3d8858a`](https://github.com/apache/spark/commit/3d8858ae6b60fb7453eb501c54d8f3f1e6612880).


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Kubernetes integration test status failure
    URL: https://amplab.cs.berkeley.edu/jenkins/job/testing-k8s-prb-spark-integration/1981/



---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    **[Test build #89003 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/89003/testReport)** for PR 20989 at commit [`d9f46d3`](https://github.com/apache/spark/commit/d9f46d35ba8aa4ae730fe63d81e18b2452d55d05).
     * 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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Kubernetes integration test status failure
    URL: https://amplab.cs.berkeley.edu/jenkins/job/testing-k8s-prb-spark-integration/2017/



---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

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


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Kubernetes integration test status failure
    URL: https://amplab.cs.berkeley.edu/jenkins/job/testing-k8s-prb-spark-integration/2014/



---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

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


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Kubernetes integration test starting
    URL: https://amplab.cs.berkeley.edu/jenkins/job/testing-k8s-prb-spark-integration/2016/



---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    **[Test build #88960 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/88960/testReport)** for PR 20989 at commit [`17cfdf3`](https://github.com/apache/spark/commit/17cfdf3afede72efd970c1d3ac92105257c1f63c).
     * 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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    **[Test build #88960 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/88960/testReport)** for PR 20989 at commit [`17cfdf3`](https://github.com/apache/spark/commit/17cfdf3afede72efd970c1d3ac92105257c1f63c).


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Kubernetes integration test starting
    URL: https://amplab.cs.berkeley.edu/jenkins/job/testing-k8s-prb-spark-integration/2017/



---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    **[Test build #89000 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/89000/testReport)** for PR 20989 at commit [`cb789ff`](https://github.com/apache/spark/commit/cb789ff821dc78b589f2ae806c963b2e1a8c2cff).
     * 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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    hi there - you should always open PR on master. we could backport to "older releases" as needed, or ask you to open a separate PR that is based on branch-2.3 (like this one you have now)



---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Thanks  @felixcheung!. I've re targeted to master in this [PR](https://github.com/apache/spark/pull/21032). Closing this one.


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

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


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

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


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

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


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    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 #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution/2052/
    Test PASSed.


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    **[Test build #89004 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/89004/testReport)** for PR 20989 at commit [`3d8858a`](https://github.com/apache/spark/commit/3d8858ae6b60fb7453eb501c54d8f3f1e6612880).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `public class SchemaColumnConvertNotSupportedException extends RuntimeException `
      * `class QueryExecutionException(message: String, cause: Throwable = null)`


---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Kubernetes integration test status failure
    URL: https://amplab.cs.berkeley.edu/jenkins/job/testing-k8s-prb-spark-integration/2016/



---

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


[GitHub] spark issue #20989: [SPARK-23529][K8s] Support mounting hostPath volumes for...

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

    https://github.com/apache/spark/pull/20989
  
    Kubernetes integration test starting
    URL: https://amplab.cs.berkeley.edu/jenkins/job/testing-k8s-prb-spark-integration/2014/



---

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