You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to debezium
Hello,
I'm using the Debezium CDC Connector to successfully extract data from a Postgres table to a topic in Kafka. I have a POINT column type in that table that serializes to a struct in Json/Avro with srid, wkb, x, and y. I'm now using a JDBC Connector to try to move that to a destination datastore, but looking for a way to convert this value BACK to a point within Kafka connect. Do I need to write a custom converter to handle this?
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to debezium
Hi,
The key question is whether your chosen sink connector supports POINT values to begin with? I.e. can it insert/update values in such column? If so, you could either implement a custom Debezium converter (https://debezium.io/documentation/reference/development/converters.html) for emitting the POINT value in a representation handled by your sink connector, or you could implement an SMT which takes the Debezium struct and converts it accordingly.