You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by harishreedharan <gi...@git.apache.org> on 2015/10/20 08:02:34 UTC

[GitHub] spark pull request: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

GitHub user harishreedharan opened a pull request:

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

    [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE is set before SparkHad…

    …oopUtil.get is called.
    
    If `StreamingContext.getOrCreate` is used in `yarn-client` mode, a `ClassCastException` gets thrown when `Client.scala` is initialized and `YarnSparkHadoopUtil.get` is called. This fails because the `SparkHadoopUtil.get` method is called in the `getOrCreate` method default argument, before SPARK_YARN_MODE is set.

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

    $ git pull https://github.com/harishreedharan/spark streaming-yarn-client

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

    https://github.com/apache/spark/pull/9174.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 #9174
    
----
commit 4a48bf02706e703fca6a4047f9b68ba67f816706
Author: Hari Shreedharan <hs...@apache.org>
Date:   2015-10-20T05:58:11Z

    [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE is set before SparkHadoopUtil.get is called.
    
    If `StreamingContext.getOrCreate` is used in `yarn-client` mode, a `ClassCastException` gets thrown when `Client.scala` is initialized and `YarnSparkHadoopUtil.get` is called. This fails because the `SparkHadoopUtil.get` method is called in the `getOrCreate` method default argument, before SPARK_YARN_MODE is set.

----


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149448332
  
     Merged build triggered.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149673003
  
    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 pull request: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149448598
  
    **[Test build #43966 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43966/consoleFull)** for PR 9174 at commit [`fbd4b8d`](https://github.com/apache/spark/commit/fbd4b8d5ec17b881541a52c9f1876b8d978ddc21).


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

Posted by tgravescs <gi...@git.apache.org>.
Github user tgravescs commented on the pull request:

    https://github.com/apache/spark/pull/9174#issuecomment-149582431
  
    Is there anything that would break that doesn't go through SparkSubmit now?  I haven't looked at the newer launcher stuff. @vanzin   I know there were people using Client interface directly even though we say its not official api.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

Posted by harishreedharan <gi...@git.apache.org>.
Github user harishreedharan commented on the pull request:

    https://github.com/apache/spark/pull/9174#issuecomment-149442366
  
    /cc @tdas @tgravescs @vanzin 


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

Posted by harishreedharan <gi...@git.apache.org>.
Github user harishreedharan commented on the pull request:

    https://github.com/apache/spark/pull/9174#issuecomment-149651474
  
    Looks like SPARK-10812 would actually take care of this - since the check happens in run time. 
    
    +1 on backporting that to 1.5 branch. I will close this one.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149629791
  
     Merged build triggered.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149475646
  
    **[Test build #43966 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43966/consoleFull)** for PR 9174 at commit [`fbd4b8d`](https://github.com/apache/spark/commit/fbd4b8d5ec17b881541a52c9f1876b8d978ddc21).
     * 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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149629827
  
    Merged build started.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149443919
  
    **[Test build #43965 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43965/consoleFull)** for PR 9174 at commit [`4a48bf0`](https://github.com/apache/spark/commit/4a48bf02706e703fca6a4047f9b68ba67f816706).


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149469198
  
    **[Test build #43965 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43965/consoleFull)** for PR 9174 at commit [`4a48bf0`](https://github.com/apache/spark/commit/4a48bf02706e703fca6a4047f9b68ba67f816706).
     * 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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149469318
  
    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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149475956
  
    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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

Posted by vanzin <gi...@git.apache.org>.
Github user vanzin commented on the pull request:

    https://github.com/apache/spark/pull/9174#issuecomment-149650555
  
    I have a feeling this is not a problem in master, because of SPARK-10812.
    
    In branch-1.5 and earlier, won't you get the same exception if you do not use spark-submit? e.g. if you directly call `StreamingContext.getOrCreate` for yarn-client mode from within your running app that was not launched by SparkSubmit.
    
    I believe SPARK-10812 fixes both of those cases, so maybe we should just cherry-pick that into 1.5 instead.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

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


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149443519
  
    Merged build started.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#discussion_r42516999
  
    --- Diff: yarn/src/main/scala/org/apache/spark/deploy/yarn/Client.scala ---
    @@ -1025,9 +1025,6 @@ object Client extends Logging {
             "future version of Spark. Use ./bin/spark-submit with \"--master yarn\"")
         }
     
    -    // Set an env variable indicating we are running in YARN mode.
    -    // Note that any env variable with the SPARK_ prefix gets propagated to all (remote) processes
    -    System.setProperty("SPARK_YARN_MODE", "true")
    --- End diff --
    
    Ok, to be safe I will revert the last commit where I removed the other
    places where it was being set and add a comment there
    
    On Tuesday, October 20, 2015, Imran Rashid <no...@github.com> wrote:
    
    > In yarn/src/main/scala/org/apache/spark/deploy/yarn/Client.scala
    > <https://github.com/apache/spark/pull/9174#discussion_r42515407>:
    >
    > > @@ -1025,9 +1025,6 @@ object Client extends Logging {
    > >          "future version of Spark. Use ./bin/spark-submit with \"--master yarn\"")
    > >      }
    > >
    > > -    // Set an env variable indicating we are running in YARN mode.
    > > -    // Note that any env variable with the SPARK_ prefix gets propagated to all (remote) processes
    > > -    System.setProperty("SPARK_YARN_MODE", "true")
    >
    > to @tgravescs <https://github.com/tgravescs> point, would it hurt to
    > leave this in here? and then change the comment to indicate that it should
    > normally be set by SparkSubmit but left here in case anybody is still using
    > this.
    >
    > —
    > Reply to this email directly or view it on GitHub
    > <https://github.com/apache/spark/pull/9174/files#r42515407>.
    >
    
    
    -- 
    
    Thanks,
    Hari



---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149469319
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43965/
    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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149672579
  
    **[Test build #43993 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43993/consoleFull)** for PR 9174 at commit [`92aca7d`](https://github.com/apache/spark/commit/92aca7d0a3e956332c9adaccf597f289ff21bb98).
     * 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 pull request: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149448353
  
    Merged build started.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149443497
  
     Merged build triggered.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149673007
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43993/
    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 pull request: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149475959
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43966/
    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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#discussion_r42515407
  
    --- Diff: yarn/src/main/scala/org/apache/spark/deploy/yarn/Client.scala ---
    @@ -1025,9 +1025,6 @@ object Client extends Logging {
             "future version of Spark. Use ./bin/spark-submit with \"--master yarn\"")
         }
     
    -    // Set an env variable indicating we are running in YARN mode.
    -    // Note that any env variable with the SPARK_ prefix gets propagated to all (remote) processes
    -    System.setProperty("SPARK_YARN_MODE", "true")
    --- End diff --
    
    to @tgravescs point, would it hurt to leave this in here?  and then change the comment to indicate that it should normally be set by SparkSubmit but left here in case anybody is still using this.


---
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: [SPARK-11201] [YARN] Make sure SPARK_YARN_MODE...

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

    https://github.com/apache/spark/pull/9174#issuecomment-149630006
  
    **[Test build #43993 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43993/consoleFull)** for PR 9174 at commit [`92aca7d`](https://github.com/apache/spark/commit/92aca7d0a3e956332c9adaccf597f289ff21bb98).


---
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