[GitHub] spark issue #12524: [SPARK-12524][Core]DagScheduler may submit a task set fo...

2017-03-07 Thread kayousterhout
Github user kayousterhout commented on the issue:

https://github.com/apache/spark/pull/12524
  
@seayi -- can you close this PR, since it's a duplicate of #16620?


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #12524: [SPARK-12524][Core]DagScheduler may submit a task set fo...

2017-02-23 Thread kayousterhout
Github user kayousterhout commented on the issue:

https://github.com/apache/spark/pull/12524
  
Can you update the PR description here to have the JIRA number 
(SPARK-14658), not the PR number?


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #12524: [SPARK-12524][Core]DagScheduler may submit a task set fo...

2017-02-23 Thread kayousterhout
Github user kayousterhout commented on the issue:

https://github.com/apache/spark/pull/12524
  
Also, the approach in this PR was discussed and rejected in #16620 (see 
https://github.com/apache/spark/pull/16620#issuecomment-279125227 for a 
description of why; the approach here will also fail the DAGSchedulerSuite unit 
tests).


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #12524: [SPARK-12524][Core]DagScheduler may submit a task set fo...

2017-02-23 Thread kayousterhout
Github user kayousterhout commented on the issue:

https://github.com/apache/spark/pull/12524
  
I just closed the PR as a duplicate and agree with @markhamstra that this 
duplicates #16620 (let's move discussion about whether this is a duplicate to 
the JIRA so it's recorded)


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #12524: [SPARK-12524][Core]DagScheduler may submit a task set fo...

2017-02-16 Thread mridulm
Github user mridulm commented on the issue:

https://github.com/apache/spark/pull/12524
  
@JoshRosen This is interesting : thanks for the details !
On the face of it, I think @markhamstra's comment about #16620 should apply 
- but given the additional details, it might possible to reproduce it 
consistently ?
I am hoping we can create a repeatable test to trigger this : which should 
greatly speed up the debugging. The earlier case was not reproducible when I 
tried, but we have more info now ...


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #12524: [SPARK-12524][Core]DagScheduler may submit a task set fo...

2017-02-16 Thread markhamstra
Github user markhamstra commented on the issue:

https://github.com/apache/spark/pull/12524
  
@JoshRosen  I haven't tried to walk through the logs in your JIRA comment, 
but it wouldn't surprise me at all if this is the same issue that we've been 
working through in https://github.com/apache/spark/pull/16620


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #12524: [SPARK-12524][Core]DagScheduler may submit a task set fo...

2017-02-16 Thread JoshRosen
Github user JoshRosen commented on the issue:

https://github.com/apache/spark/pull/12524
  
Per [my comment on the 
JIRA](https://issues.apache.org/jira/browse/SPARK-14658?focusedCommentId=15870777&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15870777),
 I believe that this is _not_ a duplicate of #12436 as was originally 
suggested, so I'd propose that we revive discussion and review of this.

@mridulm, I have logs from a reproduction which occurred on a Spark 2.1.0 
production cluster, which I posted on the JIRA 
(https://issues.apache.org/jira/browse/SPARK-14658). I'm still not entirely 
sure what's happening here, but one clue comes from the fact that it's the 
_third_ submission of the task set which is failing. My hunch is that there's 
an invariant regarding overlapping original attempts and re-attempts which is 
violated when a re-attempt itself fails and is re-attempted again.

/cc @kayousterhout and @markhamstra for review of this scheduler-related 
patch.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #12524: [SPARK-12524][Core]DagScheduler may submit a task set fo...

2016-10-11 Thread mridulm
Github user mridulm commented on the issue:

https://github.com/apache/spark/pull/12524
  
@seayi any progress on this ? Would be good to add this in if consistently 
reproducible.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #12524: [SPARK-12524][Core]DagScheduler may submit a task set fo...

2016-07-22 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue:

https://github.com/apache/spark/pull/12524
  
Can one of the admins verify this patch?


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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