Class FailureStoppingFlow
Object
org.apache.spark.sql.pipelines.graph.RunFailure
org.apache.spark.sql.pipelines.graph.FailureStoppingOperation
org.apache.spark.sql.pipelines.graph.FailureStoppingFlow
- All Implemented Interfaces:
- Serializable,- RunTerminationReason,- scala.Equals,- scala.Product
public class FailureStoppingFlow
extends FailureStoppingOperation
implements scala.Product, Serializable
Indicates that there was a failure while stopping the flow.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionFailureStoppingFlow(scala.collection.immutable.Seq<org.apache.spark.sql.catalyst.TableIdentifier> flowIdentifiers) 
- 
Method SummaryModifier and TypeMethodDescriptionabstract static Rapply(T1 v1) scala.Option<Throwable>cause()Exception associated with the given run termination.scala.collection.immutable.Seq<org.apache.spark.sql.catalyst.TableIdentifier>booleanisFatal()Whether or not this failure is considered fatal / irrecoverable.message()User visible message associated with run termination.Name of the operation that failed to stop.static StringtoString()Methods inherited from class org.apache.spark.sql.pipelines.graph.RunFailureterminalStateMethods 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- 
FailureStoppingFlowpublic FailureStoppingFlow(scala.collection.immutable.Seq<org.apache.spark.sql.catalyst.TableIdentifier> flowIdentifiers) 
 
- 
- 
Method Details- 
applypublic abstract static R apply(T1 v1) 
- 
toString
- 
flowIdentifierspublic scala.collection.immutable.Seq<org.apache.spark.sql.catalyst.TableIdentifier> flowIdentifiers()
- 
isFatalpublic boolean isFatal()Description copied from class:RunFailureWhether or not this failure is considered fatal / irrecoverable.- Specified by:
- isFatalin class- RunFailure
 
- 
operationDescription copied from class:FailureStoppingOperationName of the operation that failed to stop.- Specified by:
- operationin class- FailureStoppingOperation
 
- 
messageDescription copied from interface:RunTerminationReasonUser visible message associated with run termination. This will also be set as the message in the associated terminal run progress log.- Specified by:
- messagein interface- RunTerminationReason
- Returns:
- (undocumented)
 
- 
causeDescription copied from interface:RunTerminationReasonException associated with the given run termination. This exception will be included in the error details in the associated terminal run progress event.- Specified by:
- causein interface- RunTerminationReason
- Returns:
- (undocumented)
 
 
-