RE: [EXT] Re: Delay a FlowFile for a specific amount of time

2018-10-15 Thread Peter Wicks (pwicks)
Bryan/Pierre, both good ideas. Thanks for the input! -Original Message- From: Bryan Bende [mailto:bbe...@gmail.com] Sent: Monday, October 15, 2018 2:14 PM To: users@nifi.apache.org Subject: [EXT] Re: Delay a FlowFile for a specific amount of time Maybe a Wait processor with an

Re: Delay a FlowFile for a specific amount of time

2018-10-15 Thread Bryan Bende
Maybe a Wait processor with an expiration of 60 mins? If you never use a Notify processor then its basically just going to wait til the expiration. On Mon, Oct 15, 2018 at 4:10 PM Peter Wicks (pwicks) wrote: > > A coworker and I were working on a problem where we needed to delay a group > of

Re: Delay a FlowFile for a specific amount of time

2018-10-15 Thread Pierre Villard
Hey Peter, What about ExecuteScript with few Groovy lines? flowFile = session.get() if(!flowFile) return session.penalize(flowFile) session.transfer(flowFile, REL_SUCCESS) Pierre Le lun. 15 oct. 2018 à 22:10, Peter Wicks (pwicks) a écrit : > A coworker and I were working on a problem where

Delay a FlowFile for a specific amount of time

2018-10-15 Thread Peter Wicks (pwicks)
A coworker and I were working on a problem where we needed to delay a group of FlowFile's for 60 minutes. Our first attempt of course used ControlRate, but with ControlRate the first file is let through immediately, and only after that are the rest of the files delayed. We got it working by