package tables
- Alphabetic
- Public
- All
Type Members
-
class
DeltaMergeBuilder extends AnalysisHelper
:: Evolving ::
:: Evolving ::
Builder to specify how to merge data from source DataFrame into the target Delta table. You can specify 1, 2 or 3
whenclauses of which there can be at most 2whenMatchedclauses and at most 1whenNotMatchedclause. Here are the constraints on these clauses.whenMatchedclauses:- There can be at most one
updateaction and onedeleteaction inwhenMatchedclauses. - Each
whenMatchedclause can have an optional condition. However, if there are twowhenMatchedclauses, then the first one must have a condition. - When there are two
whenMatchedclauses and there are conditions (or the lack of) such that a row matches both clauses, then the first clause/action is executed. In other words, the order of thewhenMatchedclauses matter. - If none of the
whenMatchedclauses match a source-target row pair that satisfy the merge condition, then the target rows will not be updated or deleted. - If you want to update all the columns of the target Delta table with the
corresponding column of the source DataFrame, then you can use the
whenMatched(...).updateAll(). This is equivalent towhenMatched(...).updateExpr(Map( ("col1", "source.col1"), ("col2", "source.col2"), ...))
- There can be at most one
whenNotMatchedclauses:- This clause can have only an
insertaction, which can have an optional condition. - If the
whenNotMatchedclause is not present or if it is present but the non-matching source row does not satisfy the condition, then the source row is not inserted. - If you want to insert all the columns of the target Delta table with the
corresponding column of the source DataFrame, then you can use
whenMatched(...).insertAll(). This is equivalent towhenMatched(...).insertExpr(Map( ("col1", "source.col1"), ("col2", "source.col2"), ...))
- This clause can have only an
Scala example to update a key-value Delta table with new key-values from a source DataFrame:
deltaTable .as("target") .merge( source.as("source"), "target.key = source.key") .whenMatched .updateExpr(Map( "value" -> "source.value")) .whenNotMatched .insertExpr(Map( "key" -> "source.key", "value" -> "source.value")) .execute()
Java example to update a key-value Delta table with new key-values from a source DataFrame:
deltaTable .as("target") .merge( source.as("source"), "target.key = source.key") .whenMatched .updateExpr( new HashMap<String, String>() {{ put("value", "source.value"); }}) .whenNotMatched .insertExpr( new HashMap<String, String>() {{ put("key", "source.key"); put("value", "source.value"); }}) .execute();
- Annotations
- @Evolving()
- Since
0.3.0
-
class
DeltaMergeMatchedActionBuilder extends AnyRef
:: Evolving ::
:: Evolving ::
Builder class to specify the actions to perform when a target table row has matched a source row based on the given merge condition and optional match condition.
See DeltaMergeBuilder for more information.
- Annotations
- @Evolving()
- Since
0.3.0
-
class
DeltaMergeNotMatchedActionBuilder extends AnyRef
:: Evolving ::
:: Evolving ::
Builder class to specify the actions to perform when a source row has not matched any target Delta table row based on the merge condition, but has matched the additional condition if specified.
See DeltaMergeBuilder for more information.
- Annotations
- @Evolving()
- Since
0.3.0
-
class
DeltaTable extends DeltaTableOperations
:: Evolving ::
:: Evolving ::
Main class for programmatically interacting with Delta tables. You can create DeltaTable instances using the static methods.
DeltaTable.forPath(sparkSession, pathToTheDeltaTable)
- Annotations
- @Evolving()
- Since
0.3.0
Value Members
- object DeltaMergeBuilder
- object DeltaMergeMatchedActionBuilder
- object DeltaMergeNotMatchedActionBuilder
-
object
DeltaTable
:: Evolving ::
:: Evolving ::
Companion object to create DeltaTable instances.
DeltaTable.forPath(sparkSession, pathToTheDeltaTable)
- Since
0.3.0