Hi, Is there a way to stop temporarily to consume one kafka source in streaming mode ? Use case: I have to consume 2 topics but in fact one of them is more prioritized. One of this topic is dedicated to ingest data from db (change data capture) and one of them is dedicated to make a synchronization (a dump i.e. a SELECT ... from db). At the moment the last one is performed by one Flink job and we start this one after stop the previous one (CDC) manually I want to merge these 2 modes and automatically stop consumption of the topic dedicated to the CDC mode when a dump is done. How to handle that with Flink in a streaming way ? backpressure ? ... Thx in advance for your insights
David