Where can i find MySQL retract stream table sink java soure code?

Posted by wanglei2@geekplus.com.cn on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Where-can-i-find-MySQL-retract-stream-table-sink-java-soure-code-tp33888.html


Create one table with kafka,  another table with MySQL  using flinksql.
Write a sql to read from kafka and write to MySQL.

INSERT INTO mysqlTable  SELECT status, COUNT(order_no) AS num FROM 
(SELECT order_no, LAST_VALUE(status) AS status FROM kafkaTable GROUP BY order_no)
GROUP BY status
I think this is a retract stream. 
But where can i find the java source code  about MySQL retract table sink?

Thanks,
Lei