I am totally noob to Apache flink. Just trying to get my hands dirty. I have the following scenario.
- Datastream for Events
- Datastream for Events
- Datastream for rules
- Combined these two datastreams based on ruleID
Now I have a datastream of tuple3 which looks like <ruleId, Rule, Event>
. These rules are SQL queries which I want to run on the Event.
I was going through concept of Dynamic Tables and Flink SQL. I am not sure how to process further. Could someone please help me out with this?