Flink - multiple instances of flink application deployment on kubernetes Flink - multiple instances of flink application deployment on kubernetes kubernetes kubernetes

Flink - multiple instances of flink application deployment on kubernetes


Leaving aside issues of exactly-once semantics, one way to handle this would be to have a parallel source function that emits the SQL queries (one per sub-task), and a downstream FlatMapFunction that executes the query (one per sub-task). Your source could then send out updates to the query without forcing you to restart the workflow.