Flink support batch mode or streaming mode. Is there any support for "hybrid" mode? When working with debezium connectors, most jobs will first have a snapshot stage, and then a streaming stage. Currently, the only option is to run the entire job as a streaming job. This means even the snapshot stage runs in streaming mode. This leads to a very heavy performance penalty. For example, consider calculating rank. The sink tables will unnecessarily be written with all the intermediate values until rank=1 is found. This leads to a lot of dead tupes in the sink tables, which slows down the job a lot.. So my question is - is there anyway to start a job in batch mode, and then once the debezium snapshot is finished, run the same job in streaming mode