0

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!

Alfred
  • 1,709
  • 8
  • 23
  • 38
  • What is the relationship between the two streams? For example, do you intend to join them in some way? Or should they be processed independently? – David Anderson Nov 05 '21 at 21:02
  • @DavidAnderson updated the question. These two streams are just two source, I would like to aggregate them with window operations. Thanks! – Alfred Nov 05 '21 at 22:03

1 Answers1

2

The Table/SQL equivalent to DataStream union is the Table union operation or the SQL union operation.

David Anderson
  • 39,434
  • 4
  • 33
  • 60