Re: Organizing Flink Applications: Mono repo or polyrepo

2021-04-08 Thread Arvid Heise
Hi Bin, I would put Flink applications into separate repos. It reduces compile times and makes automatic deployment much easier (if you update master/release branch of application X, you simply deploy it - potentially with some manual trigger in your CI/CD pipeline) . You can also easily bump Flin

Organizing Flink Applications: Mono repo or polyrepo

2021-03-30 Thread Xinbin Huang
Hi community I am curious about people's experience in structuring Flink applications. Do you use a mono repo structure (multiple applications in one single repo) or broken down each application into its own repo? If possible, can you share some of your thoughts on the pros/cons of each approach?