I'm trying to write stream data in spark to delta format, but it looks like it won't allow me to use update in outputMode(), below is my code and error message:
deltaStreamingQuery = (eventsDF
.writeStream
.format("delta")
.option("checkpointLocation", checkpointPath)
.outputMode("update")
.queryName("stream_1p")
.start(writePath)
)
AnalysisException: 'Data source com.databricks.sql.transaction.tahoe.sources.DeltaDataSource does not support Update output mode;'```