Re: How to read UUID out of a JDBC table source

2020-05-18 Thread Dawid Wysakowicz
Hi Dario, What version of Flink are you using? Are you implementing your own TableSource or do you use the JdbcTableSource that comes with Flink? Which planner do you use blink or the old one? Unfortunately the rework of Table API type system is not finished yet, therefore there are still rough

How to read UUID out of a JDBC table source

2020-05-14 Thread Bonino Dario
Dear list, I need to use a Table Source to extract data from a PostgreSQL table that includes a column of type uuid. Data in the column is converted to java.util.UUID by the postgresql jdbc driver (I guess) however I was not able to find a way to define a Table schema for correctly reading

Re: JDBC table source

2017-09-26 Thread Fabian Hueske
o, to make a long story short: implementing a JDBC TableSource for batch >> query should be fairly easy. A true streaming solution that hooks into the >> changelog stream of a table is not possible at the moment. >> >> Cheers, Fabian >> >> 2017-09-26 15:04 GMT-04:00 Mohit Anchlia <mohitanch...@gmail.com>: >> >>> We are looking to stream data from the database. Is there already a jdbc >>> table source available for streaming? >>> >> >> >

Re: JDBC table source

2017-09-26 Thread Mohit Anchlia
.@gmail.com>: > >> We are looking to stream data from the database. Is there already a jdbc >> table source available for streaming? >> > >

Re: JDBC table source

2017-09-26 Thread Fabian Hueske
> We are looking to stream data from the database. Is there already a jdbc > table source available for streaming? >

JDBC table source

2017-09-26 Thread Mohit Anchlia
We are looking to stream data from the database. Is there already a jdbc table source available for streaming?