Re: How to Join a dimension table in flink sql

2018-01-15 Thread Xingcan
Hi XiangWei, Unfortunately, it's not possible for the Flink SQL API to join a stream with a common dataset now. As a workaround, if the table is just a tiny one, you can achieve a inner/left outer join with the user defined table functions

How to Join a dimension table in flink sql

2018-01-15 Thread XiangWei Huang
Hi all, Is it possible to join records read from a kafka stream with one(or more) dimension tables which are saved as mysql table using flink streaming sql.