Re: Best way to wait until everything is finished

2019-04-05 Thread Jean-Sebastien Vachon
I will give it a shot. Thanks for the hint From: Bryan Bende Sent: Friday, April 5, 2019 2:46 PM To: users@nifi.apache.org Subject: Re: Best way to wait until everything is finished Since you are using SplitJson, it should be adding the standard "fra

Re: Best way to wait until everything is finished

2019-04-05 Thread Bryan Bende
Since you are using SplitJson, it should be adding the standard "fragment" attributes to each flow file. You can then use MergeContent in Defragment mode, which uses those attributes to merge all the fragments back together. On Fri, Apr 5, 2019 at 2:39 PM Jean-Sebastien Vachon wrote: > > Hi agai

Best way to wait until everything is finished

2019-04-05 Thread Jean-Sebastien Vachon
Hi again, one of the last issue I am facing with my flow right now is to make one of my MergeContent processor wait until everything has been processed before merging everything into a CSV. What would be the best way to implement this? is this through Wait/Notify? a counter? My whole process