Tony Piazza
04/04/2023, 10:39 PMjava.io.IOException: Failed to deserialize consumer record
Full stack trace attached. Please let me know if you have any advice on what we might be doing wrong.Tony Piazza
04/04/2023, 10:44 PMCREATE TABLE mock_projects (
_id STRING,
name STRING
) WITH (
'connector' = 'kafka',
'format' = 'debezium-json',
'topic' = 'projects',
'properties.bootstrap.servers' = 'cdc-cluster-kafka-bootstrap:9092',
'properties.group.id' = 'mock_projects_group',
'scan.startup.mode' = 'earliest-offset',
'debezium-json.schema-include' = 'true'
);
sap1ens
04/04/2023, 10:48 PMbefore
and after
values are encoded as strings, but the debezium-json format expects objects.Tony Piazza
04/05/2023, 2:10 AM