我正在尝试将 spark 中的流数据写入 delta 格式,但看起来它不允许我在outputMode()中使用更新,下面是我的代码和错误消息:
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;'```