Hi Team, I'm working on a migration usecase where ...
# troubleshooting
a
Hi Team, I'm working on a migration usecase where my source is Kafka and sink is Postgresql. Now, i have few lookup tables in the target DB which I would like to use in my transformations. When I use the Flink Table API, its not able to read the UUID data type in the lookup table. Its throwing:
Copy code
Caused by: java.lang.ClassCastException: class java.util.UUID cannot be cast to class java.lang.String (java.util.UUID and java.lang.String are in module java.base of loader 'bootstrap')
Any idea how to read UUID fields from postgres in Flink ?