Re: Dynamically send SQL statements to running flink app
Hi Ahmad, afaik that's not directly supported and would not work well with how Flink is designed now, since new joins would potentially require new network connections. You can, however, execute ad-hoc SQL queries against an already running Flink cluster. Additionally, if your SQL is rather simp
Dynamically send SQL statements to running flink app
Is it possible to dynamically, as the flink application is running, inject new SQL to be executed against a stream? Thank you! >