cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
cancel
Showing results for 
Search instead for 
Did you mean: 

DLT run filas with "com.databricks.cdc.spark.DebeziumJDBCMicroBatchProvider not found"

smedegaard
New Contributor III

I've created a streaming live table from a foreign catalog. When I run the DLT pipeline it fils with "com.databricks.cdc.spark.DebeziumJDBCMicroBatchProvider not found".

I haven't seen any documentation that suggests I need to install Debezium manually for DLT.
What am I missing?
```
CREATE OR REFRESH STREAMING LIVE TABLE temp_X_1
AS
SELECT
hourvalues.Value
, hourvalues.DateTime
, reduction.EName
, object_descriptions.Description
, units.UnitTxt
FROM
STREAM(`raw-data`.dbo.reduction) AS reduction
INNER JOIN
STREAM(`raw-data`.dbo.hourvalues) AS hourvalues
ON hourvalues.ReportIx = reduction.ReportIx
INNER JOIN
STREAM(`raw-data`.dbo.tbdme_objectdesc) AS object_descriptions
ON object_descriptions.EName = reduction.EName
INNER JOIN
STREAM(`raw-data`.dbo.tbdme_objectUnit) AS units
ON units.EName = reduction.EName
WHERE
reduction.EName LIKE 'XXX%'
```

0 REPLIES 0
Welcome to Databricks Community: Lets learn, network and celebrate together

Join our fast-growing data practitioner and expert community of 80K+ members, ready to discover, help and collaborate together while making meaningful connections. 

Click here to register and join today! 

Engage in exciting technical discussions, join a group with your peers and meet our Featured Members.