public class ExceptionFailure extends java.lang.Object implements TaskFailedReason, scala.Product, scala.Serializable
stackTrace
contains the stack trace of the exception itself. It still exists for backward
compatibility. It's better to use this(e: Throwable, metrics: Option[TaskMetrics])
to
create ExceptionFailure
as it will handle the backward compatibility properly.
fullStackTrace
is a better representation of the stack trace because it contains the whole
stack trace including the exception and its causes
exception
is the actual exception that caused the task to fail. It may be None
in
the case that the exception is not in fact serializable. If a task fails more than
once (due to retries), exception
is that one that caused the last failure.
Constructor and Description |
---|
ExceptionFailure(java.lang.String className,
java.lang.String description,
java.lang.StackTraceElement[] stackTrace,
java.lang.String fullStackTrace,
scala.Option<org.apache.spark.executor.TaskMetrics> metrics,
scala.Option<org.apache.spark.ThrowableSerializationWrapper> exceptionWrapper) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
className() |
java.lang.String |
description() |
scala.Option<java.lang.Throwable> |
exception() |
java.lang.String |
fullStackTrace() |
scala.Option<org.apache.spark.executor.TaskMetrics> |
metrics() |
java.lang.StackTraceElement[] |
stackTrace() |
java.lang.String |
toErrorString()
Error message displayed in the web UI.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
countTowardsTaskFailures
public ExceptionFailure(java.lang.String className, java.lang.String description, java.lang.StackTraceElement[] stackTrace, java.lang.String fullStackTrace, scala.Option<org.apache.spark.executor.TaskMetrics> metrics, scala.Option<org.apache.spark.ThrowableSerializationWrapper> exceptionWrapper)
public java.lang.String className()
public java.lang.String description()
public java.lang.StackTraceElement[] stackTrace()
public java.lang.String fullStackTrace()
public scala.Option<org.apache.spark.executor.TaskMetrics> metrics()
public scala.Option<java.lang.Throwable> exception()
public java.lang.String toErrorString()
TaskFailedReason
toErrorString
in interface TaskFailedReason