Interface DeltaWrite
- All Superinterfaces:
Write
A logical representation of a data source write that handles a delta of rows.
- Since:
- 3.4.0
-
Method Summary
Modifier and TypeMethodDescriptiondefault DeltaBatchWrite
toBatch()
Returns aBatchWrite
to write data to batch source.Methods inherited from interface org.apache.spark.sql.connector.write.Write
description, supportedCustomMetrics, toStreaming
-
Method Details
-
toBatch
Description copied from interface:Write
Returns aBatchWrite
to write data to batch source. By default this method throws exception, data sources must overwrite this method to provide an implementation, if theTable
that creates this write returnsTableCapability.BATCH_WRITE
support in itsTable.capabilities()
.
-