You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by kayousterhout <gi...@git.apache.org> on 2015/10/19 07:42:45 UTC

[GitHub] spark pull request: [SPARK-11178] Improving naming around task fai...

GitHub user kayousterhout opened a pull request:

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

    [SPARK-11178] Improving naming around task failures.

    Commit af3bc59d1f5d9d952c2d7ad1af599c49f1dbdaf0 introduced new
    functionality so that if an executor dies for a reason that's not
    caused by one of the tasks running on the executor (e.g., due to
    pre-emption), Spark doesn't count the failure towards the maximum
    number of failures for the task.  That commit introduced some vague
    naming that this commit attempts to fix; in particular:
    
    (1) The variable "isNormalExit", which was used to refer to cases where
    the executor died for a reason unrelated to the tasks running on the
    machine, has been renamed to "exitUnrelatedToRunningTasks". The problem
    with the existing name is that it's not clear (at least to me!) what it
    means for an exit to be "normal"; the new name is intended to make the
    purpose of this variable more clear.
    
    (2) The variable "shouldEventuallyFailJob" has been renamed to
    "countTowardsTaskFailures". This variable is used to determine whether
    a task's failure should be counted towards the maximum number of failures
    allowed for a task before the associated Stage is aborted. The problem
    with the existing name is that it can be confused with implying that
    the task's failure should immediately cause the stage to fail because it
    is somehow fatal (this is the case for a fetch failure, for example: if
    a task fails because of a fetch failure, there's no point in retrying,
    and the whole stage should be failed).
    
    There are a couple of remaining issues that it would be helpful if
    folks commented on:
    
    (a) In YarnAllocator.scala, line 447: what does "exited normally" mean
    here? I'm hoping to improve the comment to be clearer to those less
    familiar with YARN.
    
    (b) In SparkDeploySchedulerBackend, the original commit seems to have
    changed the behavior here so that when executorRemoved is called, the
    failure isn't counted towards the task's maximum number of failures.
    Why is this? It looks like executorRemoved can be called because
    the JVM died, which can be the result of an issue with a running task?
    
    (c) This commit changes the JsonProtocol. I think this is OK because the
    existing Json was never part of a release, so this only affects folks
    who run on master, and it just means that if someone uses the new
    code to load old event logs, the value of "isNormalExit" i.e.
    "exitUnrelatedToRunningTasks" won't display correctly, but it would be
    great if others could verify this.
    
    (d) I don't love using a negative in the variable name
    ("exitUnrelatedToRunningTasks") because it leads to a double-negative
    when the variable is false.  But I also thought this might be more clear
    than a variable called "exitRelatedToRunningTasks", because with the latter
    name, it seems like it should always be true.  More importantly, I didn't
    wnt to reverse the variable unless others agreed it should be done, because
    it's annoying to reverse all of the uses of it.  Let me know if you think it
    should be reversed, and I'll do that.
    
    (e) For the case where the commit failed, we never count that towards the
    max failures.  Is there any legimate reason the commit could fail? I'm
    wondering if it's possible to have a stage that fails infinitely many times
    due to a real problem with committing the task.
    
    cc @andrewor14 @mccheah and @vanzin who were involved in the original naming

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

    $ git pull https://github.com/kayousterhout/spark-1 SPARK-11178

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

    https://github.com/apache/spark/pull/9164.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 #9164
    
----
commit cf6f21ee6d692827cebb7b238c0218387fcf6032
Author: Kay Ousterhout <ka...@gmail.com>
Date:   2015-10-17T03:09:11Z

    [SPARK-11178] Improving naming around task failures.
    
    Commit af3bc59d1f5d9d952c2d7ad1af599c49f1dbdaf0 introduced new
    functionality so that if an executor dies for a reason that's not
    caused by one of the tasks running on the executor (e.g., due to
    pre-emption), Spark doesn't count the failure towards the maximum
    number of failures for the task.  That commit introduced some vague
    naming that this commit attempts to fix; in particular:
    
    (1) The variable "isNormalExit", which was used to refer to cases where
    the executor died for a reason unrelated to the tasks running on the
    machine, has been renamed to "exitUnrelatedToRunningTasks". The problem
    with the existing name is that it's not clear (at least to me!) what it
    means for an exit to be "normal"; the new name is intended to make the
    purpose of this variable more clear.
    
    (2) The variable "shouldEventuallyFailJob" has been renamed to
    "countTowardsTaskFailures". This variable is used to determine whether
    a task's failure should be counted towards the maximum number of failures
    allowed for a task before the associated Stage is aborted. The problem
    with the existing name is that it can be confused with implying that
    the task's failure should immediately cause the stage to fail because it
    is somehow fatal (this is the case for a fetch failure, for example: if
    a task fails because of a fetch failure, there's no point in retrying,
    and the whole stage should be failed).
    
    There are a couple of remaining issues that it would be helpful if
    folks commented on:
    
    (a) In YarnAllocator.scala, line 447: what does "exited normally" mean
    here? I'm hoping to improve the comment to be clearer to those less
    familiar with YARN.
    
    (b) In SparkDeploySchedulerBackend, the original commit seems to have
    changed the behavior here so that when executorRemoved is called, the
    failure isn't counted towards the task's maximum number of failures.
    Why is this? It looks like executorRemoved can be called because
    the JVM died, which can be the result of an issue with a running task?
    
    (c) This commit changes the JsonProtocol. I think this is OK because the
    existing Json was never part of a release, so this only affects folks
    who run on master, and it just means that if someone uses the new
    code to load old event logs, the value of "isNormalExit" i.e.
    "exitUnrelatedToRunningTasks" won't display correctly, but it would be
    great if others could verify this.
    
    (d) I don't love using a negative in the variable name
    ("exitUnrelatedToRunningTasks") because it leads to a double-negative
    when the variable is false.  But I also thought this might be more clear
    than a variable called "exitRelatedToRunningTasks", because with the latter
    name, it seems like it should always be true.  More importantly, I didn't
    wnt to reverse the variable unless others agreed it should be done, because
    it's annoying to reverse all of the uses of it.  Let me know if you think it
    should be reversed, and I'll do that.
    
    (e) For the case where the commit failed, we never count that towards the
    max failures.  Is there any legimate reason the commit could fail? I'm
    wondering if it's possible to have a stage that fails infinitely many times
    due to a real problem with committing the task.

----


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151654954
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151026436
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151617073
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149298324
  
    **[Test build #43930 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43930/consoleFull)** for PR 9164 at commit [`28070a5`](https://github.com/apache/spark/commit/28070a553b0ded8c7b6be9ab830ac8f682c6be01).


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-150991004
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151620916
  
    **[Test build #44461 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44461/consoleFull)** for PR 9164 at commit [`4c09b25`](https://github.com/apache/spark/commit/4c09b255a2fd75777e3023ff7667a3737539cdff).


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151026432
  
     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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151588399
  
    **[Test build #44455 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44455/consoleFull)** for PR 9164 at commit [`4c09b25`](https://github.com/apache/spark/commit/4c09b255a2fd75777e3023ff7667a3737539cdff).


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151627390
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149337199
  
    **[Test build #43930 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43930/consoleFull)** for PR 9164 at commit [`28070a5`](https://github.com/apache/spark/commit/28070a553b0ded8c7b6be9ab830ac8f682c6be01).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:\n  * `case class ExecutorLostFailure(execId: String, exitUnrelatedToRunningTasks: Boolean = false)`\n  * `case class ExecutorExited(exitCode: Int, exitUnrelatedToRunningTasks: Boolean, reason: String)`\n


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151250195
  
     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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151618525
  
    Jenkins, 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: [SPARK-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149304490
  
    Thanks for picking up some things we missed!
    
    "In YarnAllocator.scala, line 447: what does "exited normally" mean here? I'm hoping to improve the comment to be clearer to those less familiar with YARN." - "exited normally" is a case when an executor would exit not because of the user's code or the job itself, but because of events that occur during the YARN application lifecycle. In other words, the executor does not exit because of problems, per se, but exits in "normal" operation. The definition of "normal" of course is still vague.
    
    "In SparkDeploySchedulerBackend, the original commit seems to have changed the behavior..." - this might unfortunately be a bug in how I refactored things. How would this manifest? @kayousterhout , would it be possible for you to reproduce it and fix if necessary?
    
    Changing JsonProtocol seems fine.
    
    "For the case where the commit failed, we never count that towards the max failures. Is there any legimate reason the commit could fail? I'm wondering if it's possible to have a stage that fails infinitely many times due to a real problem with committing the task." - the TaskCommitDenied failed event is explicitly coordinated by the driver, and is fired only if the driver saw that a previous copy of this task had already started committing the output before this one. This is relevant in speculative execution mode. TaskCommitDenied isn't fired if the commit itself fails however. See SparkHadoopMapRedUtil.commitTask.


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151057431
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44338/
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-150726342
  
    @mccheah ah you're right; I assumed she was asking about when commits would fail in general.


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149109799
  
    **[Test build #43913 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43913/consoleFull)** for PR 9164 at commit [`cf6f21e`](https://github.com/apache/spark/commit/cf6f21ee6d692827cebb7b238c0218387fcf6032).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:\n  * `case class ExecutorLostFailure(execId: String, exitUnrelatedToRunningTasks: Boolean = false)`\n  * `case class ExecutorExited(exitCode: Int, exitUnrelatedToRunningTasks: Boolean, reason: String)`\n


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151057244
  
      [Test build #44338 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44338/console) for   PR 9164 at commit [`fc79278`](https://github.com/apache/spark/commit/fc792785d408914a51811d9c46f6da07bfb8fa9e).
     * This patch **passes all tests**.
     * This patch **does not merge cleanly**.
     * This patch adds the following public classes _(experimental)_:
      * `case class ExecutorLostFailure(execId: String, exitCausedByApp: Boolean = true)`
      * `case class ExecutorExited(exitCode: Int, exitCausedByApp: Boolean, reason: String)`



---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151057429
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151617075
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44452/
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151585799
  
    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-11178] Improving naming around task fai...

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

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


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151618756
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149294813
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151616982
  
    **[Test build #44452 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44452/consoleFull)** for PR 9164 at commit [`b25f308`](https://github.com/apache/spark/commit/b25f308d9dc6b946d95e4709b4d5d19f1d05ce9f).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:\n  * `case class ExecutorLostFailure(execId: String, exitCausedByApp: Boolean = true)`\n  * `case class ExecutorExited(exitCode: Int, exitCausedByApp: Boolean, reason: String)`\n


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151584459
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151661428
  
    lgtm


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151585224
  
    **[Test build #44452 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44452/consoleFull)** for PR 9164 at commit [`b25f308`](https://github.com/apache/spark/commit/b25f308d9dc6b946d95e4709b4d5d19f1d05ce9f).


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-150991319
  
      [Test build #44322 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44322/consoleFull) for   PR 9164 at commit [`feb7d7b`](https://github.com/apache/spark/commit/feb7d7be9d41b0d479a2988795c17cb7b244fde0).


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149108145
  
     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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149337615
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43930/
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#discussion_r42953292
  
    --- Diff: core/src/main/scala/org/apache/spark/scheduler/ExecutorLossReason.scala ---
    @@ -28,12 +28,15 @@ class ExecutorLossReason(val message: String) extends Serializable {
     }
     
     private[spark]
    -case class ExecutorExited(exitCode: Int, isNormalExit: Boolean, reason: String)
    +case class ExecutorExited(exitCode: Int, exitCausedByApp: Boolean, reason: String)
       extends ExecutorLossReason(reason)
     
     private[spark] object ExecutorExited {
    -  def apply(exitCode: Int, isNormalExit: Boolean): ExecutorExited = {
    -    ExecutorExited(exitCode, isNormalExit, ExecutorExitCode.explainExitCode(exitCode))
    +  def apply(exitCode: Int, exitUnrelatedToRunningTasks: Boolean): ExecutorExited = {
    --- End diff --
    
    Did you forget to update 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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151250235
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-150726087
  
    @vanzin - see my earlier comment on the commit failing case. This particular event that is handled is in the case that multiple copies of the same file-writing task try to commit output.


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151627393
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44455/
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151286194
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44373/
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151286020
  
    **[Test build #44373 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44373/consoleFull)** for PR 9164 at commit [`b93e58e`](https://github.com/apache/spark/commit/b93e58e5d109a454cfe422bd753b503986070722).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:\n  * `case class ExecutorLostFailure(execId: String, exitCausedByApp: Boolean = true)`\n  * `case class ExecutorExited(exitCode: Int, exitCausedByApp: Boolean, reason: String)`\n


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-150725822
  
    > (a) In YarnAllocator.scala, line 447: what does "exited normally"
    
    That means the container exited with exit status 0.
    
    > (c) This commit changes the JsonProtocol. I think this is OK because the existing Json was never part of a release
    
    Correct.
    
    > (d) I don't love using a negative in the variable name ("exitUnrelatedToRunningTasks")
    
    I don't love that name either. Maybe `exitCausedByApp`? `exitIsAppRelated`?
    
    > (e) Is there any legimate reason the commit could fail?
    
    Intermittent HDFS or network issues, for example.



---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151654792
  
    **[Test build #44461 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44461/consoleFull)** for PR 9164 at commit [`4c09b25`](https://github.com/apache/spark/commit/4c09b255a2fd75777e3023ff7667a3737539cdff).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:\n  * `case class ExecutorLostFailure(execId: String, exitCausedByApp: Boolean = true)`\n  * `case class ExecutorExited(exitCode: Int, exitCausedByApp: Boolean, reason: String)`\n


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151007357
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-150994305
  
    Seems like you have to rebase; could you also update the description if the questions have been answered?


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151618706
  
     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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151027212
  
      [Test build #44338 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44338/consoleFull) for   PR 9164 at commit [`fc79278`](https://github.com/apache/spark/commit/fc792785d408914a51811d9c46f6da07bfb8fa9e).


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151654957
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44461/
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-150990998
  
     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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151007317
  
      [Test build #44322 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44322/console) for   PR 9164 at commit [`feb7d7b`](https://github.com/apache/spark/commit/feb7d7be9d41b0d479a2988795c17cb7b244fde0).
     * This patch **fails Spark unit tests**.
     * This patch **does not merge cleanly**.
     * This patch adds the following public classes _(experimental)_:
      * `case class ExecutorLostFailure(execId: String, exitCausedByApp: Boolean = true)`
      * `case class ExecutorExited(exitCode: Int, exitCausedByApp: Boolean, reason: String)`



---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149109801
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-150990593
  
    Just filed #9273 about the bug and updated the comments / naming based on @vanzin's recommendation


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151252074
  
    **[Test build #44373 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44373/consoleFull)** for PR 9164 at commit [`b93e58e`](https://github.com/apache/spark/commit/b93e58e5d109a454cfe422bd753b503986070722).


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151007358
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44322/
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149337613
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149294781
  
     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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151584414
  
     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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149108159
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151585767
  
     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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149109802
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43913/
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151286189
  
    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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151627226
  
    **[Test build #44455 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/44455/consoleFull)** for PR 9164 at commit [`4c09b25`](https://github.com/apache/spark/commit/4c09b255a2fd75777e3023ff7667a3737539cdff).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:\n  * `case class ExecutorLostFailure(execId: String, exitCausedByApp: Boolean = true)`\n  * `case class ExecutorExited(exitCode: Int, exitCausedByApp: Boolean, reason: String)`\n


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-149109090
  
    **[Test build #43913 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43913/consoleFull)** for PR 9164 at commit [`cf6f21e`](https://github.com/apache/spark/commit/cf6f21ee6d692827cebb7b238c0218387fcf6032).


---
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-11178] Improving naming around task fai...

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

    https://github.com/apache/spark/pull/9164#issuecomment-151422000
  
    LGTM.


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