GitHub user jinxing64 opened a pull request:
https://github.com/apache/spark/pull/16738
[SPARK-19398] remove one misleading log in TaskSetManager.
## What changes were proposed in this pull request?
Log below is misleading:
```
if (successful(index)) {
logInfo(
s"Task ${info.id} in stage ${taskSet.id} (TID $tid) failed, " +
"but another instance of the task has already succeeded, " +
"so not re-queuing the task to be re-executed.")
}
```
If fetch failed, the task is marked as successful in TaskSetManager::
handleFailedTask. Then log above will be printed. The successful just means
task will not be scheduled any longer, not a real success.
## How was this patch tested?
Existing unit tests can cover this.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/jinxing64/spark SPARK-19398
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/spark/pull/16738.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 #16738
----
commit 992bd3ce21d8c7f606307e4d99d236b7de2d82fe
Author: jinxing <[email protected]>
Date: 2017-01-30T05:02:18Z
[SPARK-19398] remove one misleading log in TaskSetManager.
----
---
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 [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]