Delta: Replicate MySQL Tables to Delta Tables

Created on 16 Dec 2019  路  1Comment  路  Source: delta-io/delta

delta lake There is no such example implementation. thank you
Read mysql data in real time

spark.readStream
.format("preview-cdcFromMysql")
.option("host", )
.option("username", )
.option("password", dbutils.secrets.get(, )
.option("database", )
.option("table",

)
.load()
.writeStream
.format("preview-cdcToDelta")
.option("checkpointLocation", )
.start()

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).

>All comments

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).

Was this page helpful?
0 / 5 - 0 ratings

Related issues

NimeshSatam picture NimeshSatam  路  8Comments

tdas picture tdas  路  4Comments

ChethanUK picture ChethanUK  路  3Comments

zsxwing picture zsxwing  路  4Comments

tdas picture tdas  路  6Comments