Package org.apache.spark
Class TaskKilled
Object
org.apache.spark.TaskKilled
- All Implemented Interfaces:
- Serializable,- TaskEndReason,- TaskFailedReason,- scala.Equals,- scala.Product
:: DeveloperApi ::
 Task was killed intentionally and needs to be rescheduled.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionTaskKilled(String reason, scala.collection.immutable.Seq<AccumulableInfo> accumUpdates, scala.collection.immutable.Seq<AccumulatorV2<?, ?>> accums, scala.collection.immutable.Seq<Object> metricPeaks) 
- 
Method SummaryModifier and TypeMethodDescriptionscala.collection.immutable.Seq<AccumulableInfo>abstract static Rapply(T1 v1, T2 v2, T3 v3, T4 v4) booleanWhether this task failure should be counted towards the maximum number of times the task is allowed to fail before the stage is aborted.scala.collection.immutable.Seq<Object>reason()Error message displayed in the web UI.static StringtoString()Methods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface scala.EqualscanEqual, equalsMethods inherited from interface scala.ProductproductArity, productElement, productElementName, productElementNames, productIterator, productPrefix
- 
Constructor Details- 
TaskKilledpublic TaskKilled(String reason, scala.collection.immutable.Seq<AccumulableInfo> accumUpdates, scala.collection.immutable.Seq<AccumulatorV2<?, ?>> accums, scala.collection.immutable.Seq<Object> metricPeaks) 
 
- 
- 
Method Details- 
applypublic abstract static R apply(T1 v1, T2 v2, T3 v3, T4 v4) 
- 
toString
- 
reason
- 
accumUpdates
- 
metricPeaks
- 
toErrorStringDescription copied from interface:TaskFailedReasonError message displayed in the web UI.- Specified by:
- toErrorStringin interface- TaskFailedReason
 
- 
countTowardsTaskFailurespublic boolean countTowardsTaskFailures()Description copied from interface:TaskFailedReasonWhether this task failure should be counted towards the maximum number of times the task is allowed to fail before the stage is aborted. Set to false in cases where the task's failure was unrelated to the task; for example, if the task failed because the executor it was running on was killed.- Specified by:
- countTowardsTaskFailuresin interface- TaskFailedReason
- Returns:
- (undocumented)
 
 
-