I have a Flink Job that use the python table api. Now my application is going to consume an additional source stream. I am curious what the recommended way to consume multiple source stream with table API.
Additional information:
The two input streams are just two source of events. I want to aggregate them together with window operation. It is like union operation in DataStream
Thanks!