-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable Change Data Feed #704
Comments
CDF is only available in Delta on Databricks right now. So using Delta 1.0 locally will not allow you to use CDF. I suggest contacting your Databricks contact person to discuss this further. |
Thanks a lot for your response |
Looking forward to adding CDF to Delta OSS! @dennyglee |
Definitely! We're marching towards Delta Lake 2.0 (the RC became available for testing in late June). Test it out now if you can and provide us feedback, eh?! :) |
2.0.0 has been released. Closing this as a duplicate of #1105 |
We are developing an application for Azure Databricks. We are using DBR 8.3, which has the experimental feature of Change Data Feed.
For testing purposes, we have a dockerized local environment with Spark 3.1.2 and spark-delta 1.0.0. When we want to create a CDF enabled table, we use:
DeltaTable.createIfNotExists(spark).tableName("TableName").addColumns(schema).location(path).property("delta.enableChangeDataFeed", "true").execute()
When we try to execute that, we receive the error:
Configuration delta.enableChangeDataFeed cannot be set. Change data feed from Delta is not yet available.
Is there anyway to enable this for local testing purposes?
The text was updated successfully, but these errors were encountered: