You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@flink.apache.org by "Yan Zhou [FDS Science]" <yz...@coupang.com> on 2018/01/10 00:04:47 UTC

is it possible to convert "retract" datastream to table

Hi,


There are APIs to convert a dynamic table to retract stream. Is there any way to construct a "retract" data stream and convert it into table? I want to read the change log of relational database from kafka, "apply" the changes within flink( by creating CRow DataStream), register/create a table on the CRow DataStream. Is there any way to do this?


Best

Yan

Re: is it possible to convert "retract" datastream to table

Posted by Timo Walther <tw...@apache.org>.
Hi Yan,

there are no table source interfaces that allow for creating a retract 
stream directly yet. Such an interface has to be carefully designed 
because built-in operators assume that only records that have been 
emitted previously are retracted. However, they are planned for future 
Flink versions.

As a workaround you could implement a custom rule that translates parts 
of your plan into a custom DataStream operator. This might require some 
investigation how the translation is done internally because this is not 
documented. I don't know if it would be worth the effort. You might take 
a look at TableEnvironment.getConfig().setCalciteConfig() where you can 
add additional rules. You can use the available rules in 
org.apache.flink.table.plan.rules.FlinkRuleSets as a reference.

I hope this helps.

Regards,
Timo


Am 1/10/18 um 1:04 AM schrieb Yan Zhou [FDS Science]:
>
> Hi,
>
>
> There are APIs to convert a dynamic table to retract stream. Is there 
> any way to construct a "retract" data stream and convert it into 
> table? I want to read the change log of relational database from 
> kafka, "apply" the changes within flink( by creating CRow 
> DataStream), register/create a table on the CRow DataStream. Is there 
> any way to do this?
>
>
> Best
>
> Yan
>


Re: is it possible to convert "retract" datastream to table

Posted by Fabian Hueske <fh...@gmail.com>.
Hi,

Unfortunately, converting a retraction stream into a Table is not supported
yet.
However this is definitely on our road map and will be added in a future
version.

Best, Fabian

2018-01-10 1:04 GMT+01:00 Yan Zhou [FDS Science] <yz...@coupang.com>:

> Hi,
>
>
> There are APIs to convert a dynamic table to retract stream. Is there any
> way to construct a "retract" data stream and convert it into table? I
> want to read the change log of relational database from kafka, "apply" the
> changes within flink( by creating CRow DataStream), register/create a table
> on the CRow DataStream. Is there any way to do this?
>
>
> Best
>
> Yan
>