Re: Continuous transfer of data from a partitioned table

2024-02-13 Thread Giannis Polyzos
You can check the Oracle CDC connector, which provides that https://ververica.github.io/flink-cdc-connectors/master/content/connectors/oracle-cdc.html Best, G. On Tue, Feb 13, 2024 at 3:25 PM К В wrote: > Hello! > > We need to read data from an Oracle database table in order to pass it to > Kaf

Continuous transfer of data from a partitioned table

2024-02-13 Thread К В
Hello! We need to read data from an Oracle database table in order to pass it to Kafka. Data is inserted in the table periodically. The table has multiple partitions. Data should be processed parallel, each task should consume one partition in the database. Can this be done using a Flink task? Ho