Re: multiple streams with multiple actions - proper way?
Posted by
Fabian Hueske-2 on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/multiple-streams-with-multiple-actions-proper-way-tp14526p14589.html
Hi Peter,
this kind of use case is supported, but it is best practice to split independent pipelines into individual jobs.
One reason for that is to isolate failures and restarts.
For example, I would split the program you posted into two programs, one for the "foo" topic and one of the "bar" topic. Depending on the complexity of the operations, you might also want to split it further.
Best, Fabian