UnresolvedRelation Leaf Logical Operator for Table Reference
UnresolvedRelation is a leaf logical operator to represent a table reference in a logical query plan that has yet to be resolved (i.e. looked up in a catalog).
|
Note
|
If after Analyzer has finished analyzing a logical query plan the plan has still a
|
UnresolvedRelation is created when:
-
SparkSessionis requested to create a DataFrame from a table -
DataFrameWriteris requested to insert a DataFrame into a table -
INSERT INTO (TABLE)orINSERT OVERWRITE TABLESQL commands are executed -
CreateHiveTableAsSelectCommandcommand is executed
|
Tip
|
Use
|
|
Note
|
UnresolvedRelation is resolved to…FIXME
|
spark技术分享