0

As MySQL along with Debezium has this particular CDC JSON data format.

{
   "before":null,
   "after": {
      "pk":"1",
      "value":"New data"
   },
   "source": {
      "snapshot":"incremental"
   },
   "op":"r",
   "ts_ms":"1620393591654",
   "transaction":null
}

Does every database have different CDC JSON data format? If we change connector, for example instead of debezium any other connector. Will this JSON data format change? Or Just columns and table values are going to change?

Thanks in advance

  • This so depends upon what you are using to generate this – RiggsFolly Jun 29 '21 at 15:16
  • I will be using connectors to fetch out CDC data out of different databases and want to insert into Kafka, So I want to make sure that these formats will be different or same. – Shubham Shirur Jun 30 '21 at 10:46

0 Answers0