Class UnresolvedFlow
Object
org.apache.spark.sql.pipelines.graph.UnresolvedFlow
- All Implemented Interfaces:
- Serializable,- org.apache.spark.internal.Logging,- Flow,- GraphElement,- scala.Equals,- scala.Product
A 
Flow whose output schema and dependencies aren't known.- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.apache.spark.internal.Loggingorg.apache.spark.internal.Logging.LogStringContext, org.apache.spark.internal.Logging.SparkShellLoggingFilter
- 
Constructor SummaryConstructorsConstructorDescriptionUnresolvedFlow(org.apache.spark.sql.catalyst.TableIdentifier identifier, org.apache.spark.sql.catalyst.TableIdentifier destinationIdentifier, FlowFunction func, QueryContext queryContext, scala.collection.immutable.Map<String, String> sqlConf, boolean once, QueryOrigin origin) 
- 
Method SummaryModifier and TypeMethodDescriptionabstract static Rapply(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) org.apache.spark.sql.catalyst.TableIdentifierThe dataset that this Flow represents a write to.func()TheFlowFunctioncontaining the user's query.org.apache.spark.sql.catalyst.TableIdentifierReturns the unique identifier for thisGraphElement.booleanonce()Whether this is a ONCE flow.origin()Contains provenance to tie back this GraphElement to the user code that defined it.The current query context (catalog and database) when the query is defined.sqlConf()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 org.apache.spark.sql.pipelines.graph.GraphElementdisplayName, sparkMethods inherited from interface org.apache.spark.internal.LogginginitializeForcefully, initializeLogIfNecessary, initializeLogIfNecessary, initializeLogIfNecessary$default$2, isTraceEnabled, log, logBasedOnLevel, logDebug, logDebug, logDebug, logDebug, logError, logError, logError, logError, logInfo, logInfo, logInfo, logInfo, logName, LogStringContext, logTrace, logTrace, logTrace, logTrace, logWarning, logWarning, logWarning, logWarning, MDC, org$apache$spark$internal$Logging$$log_, org$apache$spark$internal$Logging$$log__$eq, withLogContextMethods inherited from interface scala.ProductproductArity, productElement, productElementName, productElementNames, productIterator, productPrefix
- 
Constructor Details- 
UnresolvedFlowpublic UnresolvedFlow(org.apache.spark.sql.catalyst.TableIdentifier identifier, org.apache.spark.sql.catalyst.TableIdentifier destinationIdentifier, FlowFunction func, QueryContext queryContext, scala.collection.immutable.Map<String, String> sqlConf, boolean once, QueryOrigin origin) 
 
- 
- 
Method Details- 
applypublic abstract static R apply(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) 
- 
toString
- 
identifierpublic org.apache.spark.sql.catalyst.TableIdentifier identifier()Description copied from interface:GraphElementReturns the unique identifier for thisGraphElement.- Specified by:
- identifierin interface- Flow
- Specified by:
- identifierin interface- GraphElement
 
- 
destinationIdentifierpublic org.apache.spark.sql.catalyst.TableIdentifier destinationIdentifier()Description copied from interface:FlowThe dataset that this Flow represents a write to.- Specified by:
- destinationIdentifierin interface- Flow
- Returns:
- (undocumented)
 
- 
funcDescription copied from interface:FlowTheFlowFunctioncontaining the user's query.
- 
queryContextDescription copied from interface:FlowThe current query context (catalog and database) when the query is defined.- Specified by:
- queryContextin interface- Flow
 
- 
sqlConf
- 
oncepublic boolean once()Description copied from interface:FlowWhether this is a ONCE flow. ONCE flows should run only once per full refresh.
- 
originDescription copied from interface:GraphElementContains provenance to tie back this GraphElement to the user code that defined it.This must be set when a GraphElementis directly created by some user code. Subsequently, this initial origin must be propagated as is without modification. If thisGraphElementis copied or converted to a different type, then this origin must be copied as is.- Specified by:
- originin interface- GraphElement
- Returns:
- (undocumented)
 
 
-