delta lake There is no such example implementation. thank you
Read mysql data in real time
spark.readStream This is a not really a API of Delta, but rather just a connector built by a vendor that glues together Debezium and the MERGE INTO command (which is available in OSS Delta Lake).
.format("preview-cdcFromMysql")
.option("host",
.option("username",
.option("password", dbutils.secrets.get(
.option("database",
.option("table", )
.load()
.writeStream
.format("preview-cdcToDelta")
.option("checkpointLocation",
.start(>All comments
Related issues
NimeshSatam
路
8Comments
tdas
路
4Comments
ChethanUK
路
3Comments
zsxwing
路
4Comments
tdas
路
6Comments
Most helpful comment
This is a not really a API of Delta, but rather just a connector built by a vendor that glues together Debezium and the MERGE INTO command (which is available in OSS Delta Lake).